Try the following as a replacement for the current Makefile:
CLEAN = clean-it
INSTALL = install-it
LIB = zippy2
LIBOBJS = tclThreadAlloc.o
CFLAGS += -I$(TCL)/generic
include $(AOLSERVER)/include/Makefile.module
$(LIB): $(OBJS)
$(LDLIB) $(LDFLAGS) -o $(LIB) $(LIBOBJS)
$(CLEAN):
$(RM) $(LIBOBJS) $(LIB)
$(INSTALL): $(BUILD)
$(INST) -d $(INSTLIB) -e $(LIB)
You'll need to set "TCL" to point to the Tcl source directory.
One other option, and something you'd have to do if on a Mac, is to simply
replace the tclThreadAlloc.c file in your Tcl source tree with the one
provided here, rebuild Tcl, then build the alloccmd stuff (make -f
Makefile.cmd).
Also curious as to what motivated you to look into this in the first place.
Are you experiencing memory issues?
Hope that helps!
- n
--
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.