From a4422e04ea6b3ad9ac0aff8111fc04b9505178dd Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Mon, 29 Dec 2014 17:10:32 +0100 Subject: [PATCH] Fix semistatic building 5e71d414cfc6 added BOOST_LDFLAGS to the front of LDFLAGS. A side effect of this change is that this adds -L/usr/lib at the front of the linker search path, where normally it is last. We then try to link to /usr/lib/libpq.a but that's a different version than the one we need. As a workaround place the BOOST_LDFLAGS after LDFLAGS. The correct fix needs more thought. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4c85563b4..f8a3c0793 100644 --- a/configure.ac +++ b/configure.ac @@ -319,7 +319,7 @@ done CFLAGS="$PIE_CFLAGS $CFLAGS" CXXFLAGS="$PIE_CFLAGS $CXXFLAGS" -LDFLAGS="$RELRO_LDFLAGS $BOOST_LDFLAGS $LDFLAGS" +LDFLAGS="$RELRO_LDFLAGS $LDFLAGS $BOOST_LDFLAGS" AC_SUBST(LIBS) -- 2.50.1