From fcbeb1e90ca2539d6b339cc5d7a1beaf3f5b5425 Mon Sep 17 00:00:00 2001 From: tripolar Date: Thu, 24 Oct 2013 11:02:44 +0000 Subject: [PATCH] [packages] libpam: add "--enable-db=no" to the configure macro to avoid linking against libdb Signed-off-by: Peter Wagner git-svn-id: svn://svn.openwrt.org/openwrt/packages@38526 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- libs/libpam/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/libpam/Makefile b/libs/libpam/Makefile index 9b4f8c0e8..c3de9c456 100644 --- a/libs/libpam/Makefile +++ b/libs/libpam/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libpam PKG_VERSION:=1.1.8 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=Linux-PAM-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://www.linux-pam.org/library/ @@ -29,7 +29,7 @@ define Package/libpam endef define Package/libpam/description - Linux-PAM is a free implementation of the following DCE-RFC from Sunsoft. + Linux-PAM is a free implementation of the following DCE-RFC from Sunsoft. endef TARGET_CFLAGS += $(FPIC) @@ -44,6 +44,7 @@ define Build/Configure --disable-selinux \ --disable-nls \ --disable-rpath \ + --enable-db=no \ ) endef