Attached is a trivial patch for src/native/apache1.3/Makefile.linux.  It
applies on 3.2b8.  All it does is add an ifdef around the definition of
APXS so that you can override it in some other kind of build script.

Paul
--- Makefile.linux-old  Tue Nov 28 13:16:05 2000
+++ Makefile.linux      Tue Nov 28 13:16:16 2000
@@ -6,7 +6,10 @@
 
 JAVA_INCL=-I ${JAVA_HOME}/include -I ${JAVA_HOME}/include/${OS}
 JAVA_LIB=-L ${JAVA_HOME}/jre/lib/${ARCH} -L ${JAVA_HOME}/lib/${ARCH}/native_threads
-APXS=/usr/sbin/apxs
+
+ifndef APXS
+       APXS=/usr/sbin/apxs
+endif
 
 JK=../jk/
 SRCS=../jk/jk_ajp12_worker.c ../jk/jk_connect.c ../jk/jk_msg_buff.c ../jk/jk_util.c 
../jk/jk_ajp13.c \

Reply via email to