From 94f68abb7c65cd21cf817964294c7cd89910aa81 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Thu, 17 May 2001 02:52:42 +0000 Subject: Ohh boy, I should be working on lots of other things, but I am pissed off, so I needed to get down and dirty and do some coding etc ... Change -fpic to -fPIC ... Many people suggest that this is better ... (This used to be commit 26eda1f2b065482d0b547f3068c78ae442ba18d9) --- source3/configure.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/configure.in') diff --git a/source3/configure.in b/source3/configure.in index 5c88496509..aab31d06a7 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -657,10 +657,10 @@ case "$host_os" in ;; esac -# try to work out how to produce pic code with this compiler -AC_PROG_CC_FLAG(fpic) -if test $ac_cv_prog_cc_fpic = yes; then - PICFLAG="-fpic"; +# try to work out how to produce PIC code with this compiler +AC_PROG_CC_FLAG(fPIC) +if test $ac_cv_prog_cc_fPIC = yes; then + PICFLAG="-fPIC"; fi if test x$PICFLAG = x; then AC_PROG_CC_FLAG(KPIC) -- cgit