From 6bb56cea1f0da95aab92c52878f8501a7f4e6a75 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 26 Oct 2010 20:11:42 +0200 Subject: [PATCH] buildconf.sh -d: use --with-pic --- buildconf.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildconf.sh b/buildconf.sh index 9671592..f844bce 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -78,7 +78,8 @@ esac if $enable_configure; then if [ -n "$sh_cflags" ]; then if $has_libtool; then - CFLAGS="$sh_cflags" CXXFLAGS="$sh_cxxflags" ./configure --disable-shared --enable-static $* + CFLAGS="$sh_cflags" CXXFLAGS="$sh_cxxflags" ./configure \ + --disable-shared --enable-static --with-pic $* else CFLAGS="$sh_cflags" CXXFLAGS="$sh_cxxflags" ./configure $* fi -- 1.7.10.4