Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 74931 invoked by uid 500); 11 Jul 2002 07:10:31 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 74915 invoked from network); 11 Jul 2002 07:10:30 -0000 Message-ID: <3D2D2F70.9A8E8FD9@elettra.trieste.it> Date: Thu, 11 Jul 2002 09:10:41 +0200 From: Fulvio Bille` Organization: Sincrotrone Trieste X-Mailer: Mozilla 4.74 [en] (WinNT; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: Jim Jagielski CC: dev@httpd.apache.org Subject: Re: [PATCH] Patch to compile apache-1.3.20+ on LynxOS-3.0.1 References: <3D2C1FD1.A44CCFE6@elettra.trieste.it> Content-Type: multipart/mixed; boundary="------------B456963FAC0DCF298FB6E508" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. --------------B456963FAC0DCF298FB6E508 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi. I have LynxOS 3.0.1 on 68k, and I confirm that find doesn't have the option "-depth". I'm sorry but I think that the mailer have wrapped some line of the patch, corrupting its. So I re-send the patch as attachment. Bye. Jim Jagielski wrote: > The patches look acceptable, except for the below... Why the change? > '-depth' not supported in LynxOS's find? > --------------B456963FAC0DCF298FB6E508 Content-Type: text/plain; charset=us-ascii; name="apache_1.3.2x-src-lynx3.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="apache_1.3.2x-src-lynx3.patch" diff -ruN ./src/Configure ../apache_1.3.26-patched/src/Configure --- ./src/Configure Tue Jun 18 07:20:33 2002 +++ ../apache_1.3.26-patched/src/Configure Fri Jul 5 14:11:18 2002 @@ -472,6 +472,13 @@ LIBS="$LIBS -lbsd -lcrypt" DEF_WANTHSREGEX=yes ;; + *-lynx-lynxos3) + OS='LynxOS 3.x' + CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__ -DLYNXOS3" + LIBS="$LIBS -lbsd -lcrypt" + DEF_WANTHSREGEX=yes + INCLUDES=-I/usr/include + ;; *486-*-bsdi*) OS='BSDI w/486' CFLAGS="$CFLAGS -m486" diff -ruN ./src/helpers/GuessOS ../apache_1.3.26-patched/src/helpers/GuessOS --- ./src/helpers/GuessOS Mon Oct 8 17:49:33 2001 +++ ../apache_1.3.26-patched/src/helpers/GuessOS Fri Jul 5 14:11:18 2002 @@ -134,6 +134,10 @@ echo "${MACHINE}-GNU-GNU/Hurd"; exit 0 ;; + LynxOS:3*:*) + echo "${MACHINE}-lynx-lynxos3"; exit 0 + ;; + LynxOS:*) echo "${MACHINE}-lynx-lynxos"; exit 0 ;; diff -ruN ./src/helpers/mkshadow.sh ../apache_1.3.26-patched/src/helpers/mkshadow.sh --- ./src/helpers/mkshadow.sh Tue Jun 29 15:43:15 1999 +++ ../apache_1.3.26-patched/src/helpers/mkshadow.sh Fri Jul 5 14:11:19 2002 @@ -65,7 +65,7 @@ # fill directory tree with symlinks to files FILES="`cd $src; \ - find . -depth -print |\ + find . -print |\ sed -e '/\.o$/d' \ -e '/\.a$/d' \ -e '/\.so$/d' \ diff -ruN ./src/include/ap_config.h ../apache_1.3.26-patched/src/include/ap_config.h --- ./src/include/ap_config.h Mon Jun 3 14:28:27 2002 +++ ../apache_1.3.26-patched/src/include/ap_config.h Wed Jul 10 11:03:59 2002 @@ -787,6 +787,22 @@ typedef int rlim_t; #define HAVE_SYSLOG 1 +#elif defined(LYNXOS3) +#undef HAVE_GMTOFF +#undef USE_MMAP_SCOREBOARD +#undef USE_SHMGET_SCOREBOARD +#undef USE_POSIX_SCOREBOARD +#define HAVE_FCNTL_SERIALIZED_ACCEPT +#define USE_FCNTL_SERIALIZED_ACCEPT +#define USE_LONGJMP +#undef NO_KILLPG +#undef NO_SETSID +#undef NO_USE_SIGACTION +#undef NO_LINGCLOSE +extern char *crypt(char *pw, char *salt); +typedef long rlim_t; +#define HAVE_SYSLOG 1 + #elif defined(UXPDS) #undef NEED_STRCASECMP #undef NEED_STRNCASECMP --------------B456963FAC0DCF298FB6E508--