1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Allow win32/cygwin link against the first matching library symbol rather

than erroring out.  This is the Unix behavior.
This commit is contained in:
Bruce Momjian
2004-11-08 05:23:26 +00:00
parent 3a372d61d0
commit 0d3b8e9a50
3 changed files with 10 additions and 7 deletions

View File

@ -1 +1,6 @@
SRCH_LIB="/usr/local/lib"
# This is required to link pg_dump because it finds pg_toupper() in
# libpq and pgport
LDFLAGS="-Wl,--allow-multiple-definition"

View File

@ -0,0 +1,4 @@
# This is required to link pg_dump because it finds pg_toupper() in
# libpq and pgport
LDFLAGS="-Wl,--allow-multiple-definition"