From 52df13da57a6aac1b5c6b37d26d39a4d2cd4ec42 Mon Sep 17 00:00:00 2001 From: Emmanuel Dreyfus Date: Fri, 28 Nov 2014 17:19:14 +0100 Subject: glupy: build fix if python and glusterfs prefix differ If python is installed in ${pythonprefix} and glusterfs in ${glusterfsprefix}, we have the following values: ${PYTHON}-config --prefix => ${pythonprefix} $libdir => ${glusterfsprefix}/lib Using LDFLAGS="-L`${PYTHON}-config --prefix`/$libdir" we lookf for python libraries in ${pythonprefix}/${glusterfsprefix}/lib while we should be looking for ${pythonprefix}/lib Replacing $libdir by lib breaks bug 1159248, so let us look in both ${pythonprefix}/lib and ${pythonprefix}/$libdir Backport of: I2fef1b795235d1543a0e5ac619c6c2d59127fb66 BUG: 1138897 Change-Id: I29b9f121e1cdc546ca8551ff48cc99f1c71a0ea6 Signed-off-by: Emmanuel Dreyfus Reviewed-on: http://review.gluster.org/9214 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur Reviewed-by: Raghavendra Bhat Tested-by: Raghavendra Bhat --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8ad8eb6af8d..f18238355bd 100644 --- a/configure.ac +++ b/configure.ac @@ -977,7 +977,8 @@ saved_LDFLAGS=$LDFLAGS CFLAGS="`${PYTHON}-config --cflags`" CPPFLAGS=$CFLAGS -LDFLAGS="-L`${PYTHON}-config --prefix`/lib `${PYTHON}-config --ldflags`" +LDFLAGS="-L`${PYTHON}-config --prefix`/lib -L`${PYTHON}-config --prefix`/$libdir `${PYTHON}-config --ldflags`" + AC_CHECK_HEADERS([python$PYTHON_VERSION/Python.h],[have_Python_h=yes],[]) AC_ARG_ENABLE([glupy], -- cgit