You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Randy Terbush <ra...@covalent.net> on 1998/02/20 04:39:50 UTC

[Timothy J Luoma ] Re: Apache 1.3b5 Now Available

Not acked.

------- Start of forwarded message -------
Message-Id: <19...@luomat.peak.org>
From: Timothy J Luoma <lu...@peak.org>
Date: Thu, 19 Feb 98 22:34:41 -0500
To: Randy Terbush <ra...@covalent.net>
Subject: Re: Apache 1.3b5 Now Available
References: <x7...@sierra.covalent.net>


Very happy to announce that it compiles 'out of the box' for NeXTStep 3.3

Previous 1.3 versions did not

Scott Anguish (longtime NeXT programmer) wrote a 'how to' for NeXT/OpenStep at:

http://www.stepwise.com/Articles/Workbench/BuildingApache.html

where he suggests this change:

in src/mod_status.c replace

    #ifdef NEXT
    #include
    #endif

with

#ifdef NEXT
# if NX_CURRENT_COMPILER_RELEASE == 410
# if __ARCHITECTURE__ == m68k
# define HZ 64
# else
# define HZ 100
# endif
# else
# include <machine/param.h>
# endif
#endif


NeXT hardware runs on more than m68k and the above code will help it work on  
different architectures.


He also has a suggestion for building 'logresolv.c' by changing the Makefile

    CFLAGS1= -DNEXT

with

    CFLAGS1= -DNEXT -Dstrdup=NXCopyStringBuffer


TjL



-- 
"It takes real courage to be a Macintosh user; it takes real
conviction; not unlike being a Christian in the days of the Romans." 
 - Guy Kawasaki, Chief Evangelist for Apple Computer - from "Hotseat"
   interview with John McChesney (3/28/97) [ my birthday! ]

------- End of forwarded message -------