[Linux-decnet-commit] CVS: dnprogs Makefile.common,1.61,1.62
Brought to you by:
chrissie_c,
ph3-der-loewe
From: ph3-der-loewe <ph3...@us...> - 2010-11-09 11:34:26
|
Update of /cvsroot/linux-decnet/dnprogs In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv1213 Modified Files: Makefile.common Log Message: Search for libgcrypt in 64bit library paths, too. (thanks to Kamil) Index: Makefile.common =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/Makefile.common,v retrieving revision 1.61 retrieving revision 1.62 diff -C2 -r1.61 -r1.62 *** Makefile.common 5 Oct 2010 08:24:43 -0000 1.61 --- Makefile.common 9 Nov 2010 11:34:17 -0000 1.62 *************** *** 98,101 **** --- 98,105 ---- LIBCRYPT=-lcrypt endif + + ifneq ($(wildcard /lib64/libcrypt.*),) + LIBCRYPT=-lcrypt + endif ifneq ($(wildcard /usr/lib/libcrypt.*),) *************** *** 103,106 **** --- 107,114 ---- endif + ifneq ($(wildcard /usr/lib64/libcrypt.*),) + LIBCRYPT=-lcrypt + endif + ifeq (/usr/include/shadow.h,$(wildcard /usr/include/shadow.h)) SHADOWDEFS=-DSHADOW_PWD |