summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2001-05-17 02:52:42 +0000
committerRichard Sharpe <sharpe@samba.org>2001-05-17 02:52:42 +0000
commit26eda1f2b065482d0b547f3068c78ae442ba18d9 (patch)
tree4ce868b2a5d1c7771821a73eb769dd747eac7ded
parentb0ba25e22d101acbe4079bc81759a4e0c8a7e6d8 (diff)
downloadsamba-26eda1f2b065482d0b547f3068c78ae442ba18d9.tar.gz
samba-26eda1f2b065482d0b547f3068c78ae442ba18d9.tar.xz
samba-26eda1f2b065482d0b547f3068c78ae442ba18d9.zip
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 ...
-rw-r--r--source/configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/configure.in b/source/configure.in
index 5c884965098..aab31d06a76 100644
--- a/source/configure.in
+++ b/source/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)