From: Joshua Colp Date: Mon, 30 Oct 2006 21:09:13 +0000 (+0000) Subject: Don't explicitly link in crypt as it is not used on some platforms. X-Git-Tag: 1.4.0-beta4~242 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa8099e50f24543dfc7f97fd3af60a6a5650e4d8;p=thirdparty%2Fasterisk.git Don't explicitly link in crypt as it is not used on some platforms. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@46506 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/configure b/configure index e5ab641629..e2ea44edbf 100755 --- a/configure +++ b/configure @@ -23140,7 +23140,7 @@ fi if test "${ac_cv_lib_pq_PQexec}" = "yes"; then - PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz -lcrypt" + PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz" PGSQL_INCLUDE="-I${PGSQL_includedir}" PBX_PGSQL=1 elif test ! -z "${PGSQL_MANDATORY}"; diff --git a/configure.ac b/configure.ac index 868f9e7f66..aa06832334 100644 --- a/configure.ac +++ b/configure.ac @@ -665,7 +665,7 @@ if test "${PG_CONFIG}" != No; then [Define to indicate the PostgreSQL library]), [], -L${PGSQL_libdir} -lz) if test "${ac_cv_lib_pq_PQexec}" = "yes"; then - PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz -lcrypt" + PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz" PGSQL_INCLUDE="-I${PGSQL_includedir}" PBX_PGSQL=1 elif test ! -z "${PGSQL_MANDATORY}";