1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-09 17:03:00 +03:00

Didn't commit right last time...SRCH_LIBS fix...

This commit is contained in:
Marc G. Fournier
1999-09-12 22:58:37 +00:00
parent d87a36a5b5
commit 2bb6c94fd9
2 changed files with 2 additions and 2 deletions

2
src/configure vendored
View File

@@ -804,7 +804,7 @@ if test "${with_libraries+set}" = set; then
fi
if test "$LIBRARY_DIRS"; then
if test "$LIBRARY_DIRS" -o "$SRCH_LIB"; then
for dir in $LIBRARY_DIRS $SRCH_LIB; do
if test -d "$dir"; then
PGSQL_LDFLAGS="$PGSQL_LDFLAGS -L$dir"

View File

@@ -195,7 +195,7 @@ AC_ARG_WITH(libraries,
LIBRARY_DIRS="$withval"
])
if test "$LIBRARY_DIRS"; then
if test "$LIBRARY_DIRS" -o "$SRCH_LIB"; then
for dir in $LIBRARY_DIRS $SRCH_LIB; do
if test -d "$dir"; then
PGSQL_LDFLAGS="$PGSQL_LDFLAGS -L$dir"