From 9aac213dd0deaf0c2dacb7e010735cf37e673f81 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 27 Oct 2010 10:44:46 +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 1850bae..fc07d69 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -71,7 +71,8 @@ esac if $enable_configure; then if [ -n "$sh_cflags" ]; 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 ./configure $* fi -- 1.7.10.4