rse 98/12/02 09:17:18
Modified: src CHANGES src/support apxs.pl Log: Fix APXS tool: query variables LIBS_SHLIB and TARGET were not recognized and the usage page was inconsistent with the functionality and manpage. Revision Changes Path 1.1158 +4 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1157 retrieving revision 1.1158 diff -u -r1.1157 -r1.1158 --- CHANGES 1998/12/02 09:52:16 1.1157 +++ CHANGES 1998/12/02 17:17:13 1.1158 @@ -1,4 +1,8 @@ Changes with Apache 1.3.4 + + *) Fix APXS tool: query variables LIBS_SHLIB and TARGET were not recognized + and the usage page was inconsistent with the functionality and manpage. + [Ralf S. Engelschall] *) Allow special options -Wc,xxx and -Wl,xxx on APXS compile/link command. They can occur multiple times and their arguments (`xxx') are passed AS 1.15 +2 -2 apache-1.3/src/support/apxs.pl Index: apxs.pl =================================================================== RCS file: /home/cvs/apache-1.3/src/support/apxs.pl,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- apxs.pl 1998/12/02 09:52:18 1.14 +++ apxs.pl 1998/12/02 17:17:17 1.15 @@ -189,7 +189,7 @@ print STDERR " apxs -c [-o <dsofile>] [-D <name>[=<value>]] [-I <incdir>]\n"; print STDERR " [-L <libdir>] [-l <libname>] [-Wc,<flags>] [-Wl,<flags>]\n"; print STDERR " <files> ...\n"; - print STDERR " apxs -i [-a] [-n <modname>] <dsofile> ...\n"; + print STDERR " apxs -i [-a] [-A] [-n <modname>] <dsofile> ...\n"; exit(1); } @@ -267,7 +267,7 @@ my $ok = 0; my $name; foreach $name (qw( - CC LD_SHLIB CFLAGS CFLAGS_SHLIB LDFLAGS_SHLIB + TARGET CC CFLAGS CFLAGS_SHLIB LD_SHLIB LDFLAGS_SHLIB LIBS_SHLIB PREFIX SBINDIR INCLUDEDIR LIBEXECDIR SYSCONFDIR )) { if ($arg eq $name or $arg eq lc($name)) {