Blame SOURCES/check-password-makefile.patch

d198f9
--- a/Makefile	2009-10-31 18:59:06.000000000 +0100
d198f9
+++ b/Makefile	2014-12-17 09:42:37.586079225 +0100
d198f9
@@ -13,22 +13,11 @@
d198f9
 #
d198f9
 CONFIG=/etc/openldap/check_password.conf
d198f9
 
d198f9
-OPT=-g -O2 -Wall -fpic 						\
d198f9
-	-DHAVE_CRACKLIB -DCRACKLIB_DICTPATH="\"$(CRACKLIB)\""	\
d198f9
-	-DCONFIG_FILE="\"$(CONFIG)\""					\
d198f9
+CFLAGS+=-fpic                                                  \
d198f9
+	-DHAVE_CRACKLIB -DCRACKLIB_DICTPATH="\"$(CRACKLIB)\""  \
d198f9
+	-DCONFIG_FILE="\"$(CONFIG)\""                          \
d198f9
 	-DDEBUG
d198f9
 
d198f9
-# Where to find the OpenLDAP headers.
d198f9
-#
d198f9
-LDAP_INC=-I/home/pyb/tmp/openldap-2.3.39/include \
d198f9
-	 -I/home/pyb/tmp/openldap-2.3.39/servers/slapd
d198f9
-
d198f9
-# Where to find the CrackLib headers.
d198f9
-#
d198f9
-CRACK_INC=
d198f9
-
d198f9
-INCS=$(LDAP_INC) $(CRACK_INC)
d198f9
-
d198f9
 LDAP_LIB=-lldap_r -llber
d198f9
 
d198f9
 # Comment out this line if you do NOT want to use the cracklib.
d198f9
@@ -45,10 +34,10 @@
d198f9
 all: 	check_password
d198f9
 
d198f9
 check_password.o:
d198f9
-	$(CC) $(OPT) -c $(INCS) check_password.c
d198f9
+	$(CC) $(CFLAGS) -c $(LDAP_INC) check_password.c
d198f9
 
d198f9
 check_password: clean check_password.o
d198f9
-	$(CC) -shared -o check_password.so check_password.o $(CRACKLIB_LIB)
d198f9
+	$(CC) $(LDFLAGS) -shared -o check_password.so check_password.o $(CRACKLIB_LIB)
d198f9
 
d198f9
 install: check_password
d198f9
 	cp -f check_password.so ../../../usr/lib/openldap/modules/