[svn-commits] file: branch 1.4 r46506 - in /branches/1.4: configure configure.ac

svn-commits at lists.digium.com svn-commits at lists.digium.com
Mon Oct 30 14:09:13 MST 2006


Author: file
Date: Mon Oct 30 15:09:13 2006
New Revision: 46506

URL: http://svn.digium.com/view/asterisk?rev=46506&view=rev
Log:
Don't explicitly link in crypt as it is not used on some platforms.

Modified:
    branches/1.4/configure
    branches/1.4/configure.ac

Modified: branches/1.4/configure
URL: http://svn.digium.com/view/asterisk/branches/1.4/configure?rev=46506&r1=46505&r2=46506&view=diff
==============================================================================
--- branches/1.4/configure (original)
+++ branches/1.4/configure Mon Oct 30 15:09:13 2006
@@ -23140,7 +23140,7 @@
 
 
    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}";

Modified: branches/1.4/configure.ac
URL: http://svn.digium.com/view/asterisk/branches/1.4/configure.ac?rev=46506&r1=46505&r2=46506&view=diff
==============================================================================
--- branches/1.4/configure.ac (original)
+++ branches/1.4/configure.ac Mon Oct 30 15:09:13 2006
@@ -665,7 +665,7 @@
    [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}";



More information about the svn-commits mailing list