diff options
author | Sascha Schumann <sas@php.net> | 2000-06-11 18:51:17 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-06-11 18:51:17 +0000 |
commit | fd7153b0f3047e6a96344dc3b4ca2632d5acc898 (patch) | |
tree | 754cc6728f72a6ed7376db828e6133e62c943263 /configure.in | |
parent | 6df3a21309b2ae83590bb72a86cfff03c79e2293 (diff) | |
download | php-git-fd7153b0f3047e6a96344dc3b4ca2632d5acc898.tar.gz |
Change directory name from core to main.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/configure.in b/configure.in index 71a40f12bf..05b4331088 100644 --- a/configure.in +++ b/configure.in @@ -5,7 +5,7 @@ divert(1) AC_INIT(README.CVS-RULES) -PHP_FAST_OUTPUT(sapi/Makefile ext/Makefile Makefile pear/Makefile core/Makefile) +PHP_FAST_OUTPUT(sapi/Makefile ext/Makefile Makefile pear/Makefile main/Makefile) if test "$with_shared_apache" != "no" && test -n "$with_shared_apache" ; then AC_MSG_ERROR(--with-shared-apache is not supported. Please refer to the documentation for using APXS) @@ -629,7 +629,7 @@ else fi if test "$abs_srcdir" != "$abs_builddir"; then - INCLUDES="$INCLUDES -I\$(top_srcdir)/core -I\$(top_srcdir)/Zend" + INCLUDES="$INCLUDES -I\$(top_srcdir)/main -I\$(top_srcdir)/Zend" if test "$PHP_THREAD_SAFETY" = "yes"; then INCLUDES="$INCLUDES -I\$(top_srcdir)/TSRM" fi @@ -827,15 +827,15 @@ FEO if true; then # Hacking while airborne considered harmful. # - echo "creating core/internal_functions.c" + echo "creating main/internal_functions.c" extensions=\`grep '^s.@EXT_STATIC@' \$0|sed -e 's/^.*@% *//' -e 's/%.*$//'\` - mv -f core/internal_functions.c core/internal_functions.c.old 2>/dev/null - sh $srcdir/genif.sh $srcdir/core/internal_functions.c.in $srcdir "$EXTRA_MODULE_PTRS" \$extensions > core/internal_functions.c - if cmp core/internal_functions.c.old core/internal_functions.c > /dev/null 2>&1; then - echo "core/internal_functions.c is unchanged" - mv core/internal_functions.c.old core/internal_functions.c + mv -f main/internal_functions.c main/internal_functions.c.old 2>/dev/null + sh $srcdir/genif.sh $srcdir/main/internal_functions.c.in $srcdir "$EXTRA_MODULE_PTRS" \$extensions > main/internal_functions.c + if cmp main/internal_functions.c.old main/internal_functions.c > /dev/null 2>&1; then + echo "main/internal_functions.c is unchanged" + mv main/internal_functions.c.old main/internal_functions.c else - rm -f core/internal_functions.c.old + rm -f main/internal_functions.c.old fi if test -n "$PHP_APXS_BROKEN"; then |