From 91e97f90919fdc3bd2d26a5809cc3d037dbe4b22 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 11 Apr 2001 02:02:45 +0000 Subject: Changed the order of -kPIC and -kpic. Added patch from Michael Davidson for Solaris/Unixware ACLS. Jeremy. (This used to be commit 144a2906810e8d4414d627835eb80f60bd1d88a4) --- source3/configure.in | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'source3/configure.in') diff --git a/source3/configure.in b/source3/configure.in index 6b84c69ef6..3d32346821 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -592,18 +592,18 @@ 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) - if test $ac_cv_prog_cc_Kpic = yes; then - PICFLAG="-Kpic"; - fi -fi if test x$PICFLAG = x; then AC_PROG_CC_FLAG(KPIC) if test $ac_cv_prog_cc_KPIC = yes; then PICFLAG="-KPIC"; fi fi +if test x$PICFLAG = x; then + AC_PROG_CC_FLAG(Kpic) + if test $ac_cv_prog_cc_Kpic = yes; then + PICFLAG="-Kpic"; + fi +fi ################ @@ -1984,8 +1984,8 @@ AC_ARG_WITH(acl-support, yes) case "$host_os" in - *unixware*) - AC_MSG_RESULT(Using SVR4 ACLs) + *sysv5*) + AC_MSG_RESULT(Using UnixWare ACLs) AC_DEFINE(HAVE_UNIXWARE_ACLS) ;; *solaris*) -- cgit