4df511c247
PR: 55884 Submitted by: Roman Neuhauser <roman@bellavista.cz>
44 lines
1.8 KiB
Plaintext
44 lines
1.8 KiB
Plaintext
--- Makefile.orig Thu Aug 7 17:40:39 2003
|
|
+++ Makefile Sat Aug 23 00:18:35 2003
|
|
@@ -44,10 +44,12 @@
|
|
# If you want to use cracklib for password quality check then you
|
|
# must uncomment the folowing 4 lines (you must not do this for WIN32)
|
|
#
|
|
-#CRACKLIB_DICTPATH = "/usr/local/lib/pw_dict"
|
|
-#STANDALONE_OPTIONS += -DAPG_USE_CRACKLIB '-DCRACKLIB_DICTPATH=${CRACKLIB_DICTPATH}' -I/usr/local/include -L/usr/local/lib
|
|
-#CLISERV_OPTIONS += -DAPG_USE_CRACKLIB '-DCRACKLIB_DICTPATH=${CRACKLIB_DICTPATH}' -I/usr/local/include -L/usr/local/lib
|
|
-#APG_CLIBS += -lcrack
|
|
+.if defined(WITH_CRACKLIB)
|
|
+CRACKLIB_DICTPATH = "${LOCALBASE}/libdata/cracklib/pw_dict"
|
|
+STANDALONE_OPTIONS += -DAPG_USE_CRACKLIB '-DCRACKLIB_DICTPATH=${CRACKLIB_DICTPATH}' -I${LOCALBASE}/include -L${LOCALBASE}/lib
|
|
+CLISERV_OPTIONS += -DAPG_USE_CRACKLIB '-DCRACKLIB_DICTPATH=${CRACKLIB_DICTPATH}' -I${LOCALBASE}/include -L${LOCALBASE}/lib
|
|
+APG_CLIBS += -lcrack
|
|
+.endif
|
|
|
|
##################################################################
|
|
# Support for ANSI X9.17/SHA1 PRNG
|
|
@@ -60,12 +62,12 @@
|
|
##################################################################
|
|
# You can modify CC variable if you have compiler other than GCC
|
|
# But the code was designed and tested with GCC
|
|
-CC = gcc
|
|
+CC ?= gcc
|
|
|
|
##################################################################
|
|
# Compilation flags
|
|
# You should comment the line below for AIX+native cc
|
|
-CFLAGS = -Wall
|
|
+CFLAGS ?= -Wall
|
|
|
|
####################################################################
|
|
# If you plan to install APG daemon you should look at lines below #
|
|
@@ -135,7 +137,7 @@
|
|
${CC} ${CFLAGS} -DCLISERV ${CLISERV_OPTIONS} -o ${CS_PROGNAME} ${SOURCES} ${APG_CS_CLIBS}
|
|
|
|
apgbfm:
|
|
- ${CC} ${FLAGS} -DAPGBFM -o ${BFM_PROGNAME} ${BFM_SOURCES} ${APGBFM_CLIBS}
|
|
+ ${CC} ${CFLAGS} -DAPGBFM -o ${BFM_PROGNAME} ${BFM_SOURCES} ${APGBFM_CLIBS}
|
|
|
|
strip:
|
|
strip ${PROGNAME}
|