mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-18 11:05:48 +08:00
Clean up
This commit is contained in:
parent
f3aee9f267
commit
6aadb5f512
@ -27,7 +27,7 @@ install: FORCE
|
||||
clean: FORCE
|
||||
@echo "making clean in `pwd`"
|
||||
@for i in *; do \
|
||||
if [ -d $$i -a $$i != "CVS" ]; then \
|
||||
if [ -d $$i -a $$i != "CVS" -a -f $$i/Makefile ]; then \
|
||||
echo; echo " cd $$i; $(MAKE) $(MFLAGS) clean"; \
|
||||
( cd $$i; $(MAKE) $(MFLAGS) clean ); \
|
||||
fi; \
|
||||
@ -36,7 +36,7 @@ clean: FORCE
|
||||
veryclean: FORCE
|
||||
@echo "making veryclean in `pwd`"
|
||||
@for i in *; do \
|
||||
if [ -d $$i -a -f $$i/Makefile ]; then \
|
||||
if [ -d $$i -a $$i != "CVS" -a -f $$i/Makefile ]; then \
|
||||
echo; echo " cd $$i; $(MAKE) $(MFLAGS) veryclean"; \
|
||||
( cd $$i; $(MAKE) $(MFLAGS) veryclean ); \
|
||||
fi; \
|
||||
|
@ -9,7 +9,7 @@
|
||||
PREFIX?=/usr/local
|
||||
INSTROOT=${PREFIX}
|
||||
ETCDIR= $(INSTROOT)/etc/ldap
|
||||
EXTRACFLAGS=-O -DLDAP_DEBUG
|
||||
EXTRACFLAGS=-O
|
||||
LDBMBACKEND=-DLDBM_USE_DBBTREE
|
||||
LDBMINCLUDE=-I/usr/include
|
||||
#
|
||||
@ -21,18 +21,18 @@ LDBMINCLUDE=-I/usr/include
|
||||
# This means that the implicit-yield threading is topologically
|
||||
# equivalent to preemptive threading.
|
||||
#
|
||||
THREADS= -D_THREAD_SAFE -DPOSIX_THREADS -DPTHREAD_PREEMPTIVE
|
||||
THREADS= -DPOSIX_THREADS -D_THREAD_SAFE -DPTHREAD_PREEMPTIVE
|
||||
|
||||
# use special gcc flag to include libc_r.a
|
||||
THREADSLIB= -pthread
|
||||
#THREADSLIB= -lc_r
|
||||
|
||||
# we need to link in the V3 library to get sigset()
|
||||
PLATFORMLIBS= -lcrypt
|
||||
# crypt(3) is in a separate library
|
||||
LDAP_CRYPT_LIB= -lcrypt
|
||||
|
||||
#
|
||||
# -------------------------------------------------------------------------
|
||||
# you will probably not need to edit anything below this point
|
||||
# -------------------------------------------------------------------------
|
||||
CC = gcc
|
||||
|
||||
PLATFORMCFLAGS= -Dfreebsd
|
||||
|
||||
|
@ -6,6 +6,9 @@
|
||||
# add any platform-specific overrides below here
|
||||
#
|
||||
|
||||
# crypt(3) is in -lcrypt
|
||||
LDAP_CRYPT_LIB= -lcrypt
|
||||
|
||||
|
||||
#
|
||||
# -------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user