CVS User Account cvsuser
Tue Nov 1 20:24:54 PST 2005
Log Message:
-----------
Fix bug #1454. $TEMP_FLAGS was used instead of $TEMP_LDFLAGS. Reported by arachnid <NOSPAM> notdot.net

Modified Files:
--------------
    slony1-engine/config:
        acx_libpq.m4 (r1.16 -> r1.17)

-------------- next part --------------
Index: acx_libpq.m4
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/config/acx_libpq.m4,v
retrieving revision 1.16
retrieving revision 1.17
diff -Lconfig/acx_libpq.m4 -Lconfig/acx_libpq.m4 -u -w -r1.16 -r1.17
--- config/acx_libpq.m4
+++ config/acx_libpq.m4
@@ -170,7 +170,7 @@
 
 
 TEMP_LDFLAGS=$LDFLAGS
-LDFLAGS="$TEMP_FLAGS -L$PG_LIBDIR"
+LDFLAGS="$TEMP_LDFLAGS -L$PG_LIBDIR"
 
 AC_CHECK_LIB(pq, PQunescapeBytea, HAVE_PQUNESCAPEBYTEA=1)
 if test -n "$HAVE_PQUNESCAPEBYTEA"; then
@@ -217,7 +217,7 @@
     )
 fi
 
-LDFLAGS="$TEMP_FLAGS -L$PG_PKGLIBDIR"
+LDFLAGS="$TEMP_LDFLAGS -L$PG_PKGLIBDIR"
 AC_MSG_CHECKING(for plpgsql.so)
 if test -s $PG_PKGLIBDIR"/plpgsql.so"; then
     AC_MSG_RESULT(yes)
@@ -255,7 +255,7 @@
 	)
 fi
 
-LDFLAGS="$TEMP_FLAGS -L$PG_LIBDIR"
+LDFLAGS="$TEMP_LDFLAGS -L$PG_LIBDIR"
 
 dnl On Windows (and other OSs?) we need to link against libintl if the server
 dnl was built with --enable-nls


More information about the Slony1-commit mailing list