Kaydet (Commit) c16027de authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix order in which postgresql searches for libs

...so that it does not miss any required libs due to picking up others first
that indirectly provide the required symbols; that would break our
libpq-flags.mk which should contain all the required libs when linking in the
static libpq.a.
üst 064990eb
...@@ -41,7 +41,13 @@ TARFILE_MD5=061a9f17323117c9358ed60f33ecff78 ...@@ -41,7 +41,13 @@ TARFILE_MD5=061a9f17323117c9358ed60f33ecff78
PATCH_FILES=\ PATCH_FILES=\
postgresql-moz-ldap.patch \ postgresql-moz-ldap.patch \
$(TARFILE_NAME)-libreoffice.patch \ $(TARFILE_NAME)-libreoffice.patch \
$(TARFILE_NAME)-autoreconf.patch $(TARFILE_NAME)-autoreconf.patch \
postgresql-9.1.1-configure.patch
# postgresql-9.1.1-configure.patch: move check for with_krb5 before with_gssapi,
# so that LIBS does not already contain -lgssapi_krb5 (which links against
# -lkrb5) when looking for symbols from -lkrb5, and within with_krb5, move
# com_err before krb5, so that looking with symbol com_err does not erroneously
# pick -lkrb5 (which links against -lcom_err) instead of -lcom_err
.IF "$(SYSTEM_POSTGRESQL)" == "YES" .IF "$(SYSTEM_POSTGRESQL)" == "YES"
@all: @all:
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment