From 09386df0716f6bcce5a3d6c843743a24343917c1 Mon Sep 17 00:00:00 2001 From: zodiac Date: Mon, 13 Jul 2009 16:51:09 +0000 Subject: [PATCH] On Debian systems, library dependencies and overall compatibility is improved if we do not load libssl and libpam dynamically with dlopen(). Instead, directly link against these libraries. git-svn-id: https://shellinabox.googlecode.com/svn/trunk@151 0da03de8-d603-11dd-86c2-0f8696b7b6f9 --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 9f9b5df..695f140 100755 --- a/debian/rules +++ b/debian/rules @@ -39,7 +39,7 @@ major=`ls src/.libs/lib*.so.* | \ config.status: configure dh_testdir @# Add here commands to configure the package. - CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --disable-runtime-loading build: build-stamp