[EMAIL PROTECTED] wrote:
Hi,
I have problem compiling zippy2 allocator.
I hoped to make some tests to compare Zippy2 with Hoard allocator,
but when I tried to build zippy2 I get errors:
Makefile:41: […]/aolserver/include/ns.mak: No such file or directory
I think it is due to missing ns.mak file in version 4.0.10 I have.
So, my question is what I should change in Makefile for to build
zippy2 without errors.
I use AOLserver in 4.0.10 in my production environment and so far I
don’t want to upgrade it
to 4.5 version.
Agnieszka Kukalowicz
-- AOLserver - http://www.aolserver.com/
To Remove yourself from this list, simply send an email to
<[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in
the email message. You can leave the Subject: field of your email blank.
If memory serves, the zippy2 work was done against AOLserver 4.5, which
uses slightly different semantics for building. I think you should be
able to simply change that line to be:
Makefile:41: […]/aolserver/include/Makefile.module
Below are a few other items which are different between 4.5 and previous
versions. Hope that helps. Let me know if that doesn't work. Also let me
know if you need any help getting things set up to test with hoard.
- n
Makefile Incompatibilities
Previous server versions:
MOD = <module>.so
LIB = <library>
LIBINIT = <init>
LIBLIBS = <libraries>
LIBOBJS = <objects>
INSTALL = install-hdr
include $(AOLSERVER)/include/Makefile.module
AOLserver 4.5:
MOD = <module>
DLL = <library>
DLLINIT = <init>
DLLLIBS = <libraries>
OBJS = <objects>
INSTALL = install-dll
include $(AOLSERVER)/include/ns.mak
--
AOLserver - http://www.aolserver.com/
To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]>
with the
body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject:
field of your email blank.