diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-24 13:54:20 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-24 13:55:01 +0200 |
commit | 086da7a91ef0a4fbf5ae524923475ae15e7e6f37 (patch) | |
tree | cde58004a1949848e75f441178cc679d6eb9cddd /package/pam/Makefile | |
parent | f5f34fe0e16239f40270b1babb002e8aec3d3fed (diff) |
fix build with ssp enabled
Diffstat (limited to 'package/pam/Makefile')
-rw-r--r-- | package/pam/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/package/pam/Makefile b/package/pam/Makefile index 40484ccea..d22a05fd7 100644 --- a/package/pam/Makefile +++ b/package/pam/Makefile @@ -7,8 +7,8 @@ PKG_NAME:= pam PKG_VERSION:= 1.1.8 PKG_RELEASE:= 2 PKG_MD5SUM:= 5107bbf54042400b6200e8367cc7feef -PKG_DESCR:= Pluggable Authentication Modules -PKG_BUILDDEP:= flex-host flex +PKG_DESCR:= pluggable authentication modules +PKG_BUILDDEP:= autotool flex PKG_SECTION:= misc PKG_URL:= http://www.linux-pam.org/ PKG_SITES:= http://www.linux-pam.org/library/ @@ -21,6 +21,10 @@ include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,PAM,pam,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) +AUTOTOOL_STYLE:= autoreconf +ifeq ($(ADK_TARGET_USE_SSP),y) +TARGET_LDFLAGS+= -lssp +endif CONFIGURE_ARGS+= --disable-nis \ --disable-regenerate-docu \ --enable-db=no |