# $Id$ # For pthreads support on Linux, you need # -D_POSIX_THREADS # -D_POSIX_THREAD_SAFE_FUNCTIONS # in the CXX command line. Also, add -lpthreads to the LIBS. # libpthreads.so comes with the sources of Linux libc-5.3.*, you need # to compile it yourself (no binaries included) -- # Jan Rychter CC = gcc CXX = g++ CFLAGS += $(DCFLAGS) -Wall -fno-strict-prototypes -D_POSIX_THREADS -D_POSIX_THREAD_SAFE_FUNCTIONS -D_REENTRANT CCFLAGS += $(CFLAGS) -fno-implicit-templates DCFLAGS += -g -O3 DLD = $(CXX) LD = $(CXX) LIBS += -ldl -lpthread PIC = -fPIC AR = ar ARFLAGS = ruv RANLIB = ranlib SOFLAGS = $(CPPFLAGS) -shared SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $< # Added line below to support "Executable Shared Object" files (as # needed by the service configurator). # Marius Kjeldahl ESOBUILD = $(COMPILEESO.cc) $(PIC) -shared -o $(VSHDIR)$*.so $< PRELIB = @true