diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-28 21:45:54 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-28 21:45:54 (GMT) |
commit | a7f7366abdff30b8891a2d4c94e33f4e4760c42b (patch) | |
tree | 2728b2942d3a7a8bbd62aa13c0a490a8aa9ec5b3 /Templates | |
parent | 850d74f67f44514ab9eaa078bc44a43987e3a3fa (diff) | |
download | CMake-a7f7366abdff30b8891a2d4c94e33f4e4760c42b.zip CMake-a7f7366abdff30b8891a2d4c94e33f4e4760c42b.tar.gz CMake-a7f7366abdff30b8891a2d4c94e33f4e4760c42b.tar.bz2 |
ENH: various fixes to allow bootstrap on sunos with CC
Diffstat (limited to 'Templates')
-rwxr-xr-x | Templates/configure | 46 | ||||
-rw-r--r-- | Templates/configure.in | 21 |
2 files changed, 37 insertions, 30 deletions
diff --git a/Templates/configure b/Templates/configure index 681a30d..ff3784d 100755 --- a/Templates/configure +++ b/Templates/configure @@ -2920,14 +2920,6 @@ if test $ac_cv_prog_gxx = no; then echo "$ac_t""no" 1>&6 fi rm -f conftest* - echo $ac_n "checking whether ${CXX} accepts -instances=semiexplicit""... $ac_c" 1>&6 - echo 'void f(){}' > conftest.cc - if test -z "`${CXX} -instances=static -c conftest.cc 2>&1`"; then - echo "$ac_t""yes" 1>&6 - CMAKE_TEMPLATE_FLAGS="-instances=static" - else - echo "$ac_t""no" 1>&6 - fi fi @@ -2935,7 +2927,7 @@ fi # ansi stream files (without the .h) if test $ac_cv_prog_gxx = no; then echo $ac_n "checking ansi standard C++ stream headers ""... $ac_c" 1>&6 -echo "configure:2939: checking ansi standard C++ stream headers " >&5 +echo "configure:2931: checking ansi standard C++ stream headers " >&5 rm -rf conftest.* cat > conftest.cc <<! #include <iostream> @@ -2952,7 +2944,7 @@ fi # check to see if stl is in the std namespace if test $ac_cv_prog_gxx = no; then echo $ac_n "checking ansi standard namespace support ""... $ac_c" 1>&6 -echo "configure:2956: checking ansi standard namespace support " >&5 +echo "configure:2948: checking ansi standard namespace support " >&5 rm -rf conftest.* cat > conftest.cc <<! #include <list> @@ -2978,7 +2970,7 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2982: checking for $ac_word" >&5 +echo "configure:2974: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_RUNMAKE'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3018,16 +3010,16 @@ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3022: checking for $ac_word" >&5 -if eval "test \"`echo '$''{'ac_cv_path_CMAKE_AR'+set}'`\" = set"; then +echo "configure:3014: checking for $ac_word" >&5 +if eval "test \"`echo '$''{'ac_cv_path_CMAKE_AR_TMP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - case "$CMAKE_AR" in + case "$CMAKE_AR_TMP" in /*) - ac_cv_path_CMAKE_AR="$CMAKE_AR" # Let the user override the test with a path. + ac_cv_path_CMAKE_AR_TMP="$CMAKE_AR_TMP" # Let the user override the test with a path. ;; ?:/*) - ac_cv_path_CMAKE_AR="$CMAKE_AR" # Let the user override the test with a dos path. + ac_cv_path_CMAKE_AR_TMP="$CMAKE_AR_TMP" # Let the user override the test with a dos path. ;; *) IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":" @@ -3035,7 +3027,7 @@ else for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then - ac_cv_path_CMAKE_AR="$ac_dir/$ac_word" + ac_cv_path_CMAKE_AR_TMP="$ac_dir/$ac_word" break fi done @@ -3043,16 +3035,27 @@ else ;; esac fi -CMAKE_AR="$ac_cv_path_CMAKE_AR" -if test -n "$CMAKE_AR"; then - echo "$ac_t""$CMAKE_AR" 1>&6 +CMAKE_AR_TMP="$ac_cv_path_CMAKE_AR_TMP" +if test -n "$CMAKE_AR_TMP"; then + echo "$ac_t""$CMAKE_AR_TMP" 1>&6 else echo "$ac_t""no" 1>&6 fi -test -n "$CMAKE_AR" && break +test -n "$CMAKE_AR_TMP" && break done +CMAKE_AR="$CMAKE_AR_TMP cr" +# if on SunOS and not using gXX then use the compiler to make .a libs +case $system in + SunOS-5*) + if test $ac_cv_prog_gxx = yes; then + : + else + echo "Using $CXX -xar -o for creating .a libraries" + CMAKE_AR="$CXX -xar -o" + fi +esac # generate output files. @@ -3238,6 +3241,7 @@ s%@CMAKE_TEMPLATE_FLAGS@%$CMAKE_TEMPLATE_FLAGS%g s%@CMAKE_NO_STD_NAMESPACE@%$CMAKE_NO_STD_NAMESPACE%g s%@CMAKE_NO_ANSI_STREAM_HEADERS@%$CMAKE_NO_ANSI_STREAM_HEADERS%g s%@RUNMAKE@%$RUNMAKE%g +s%@CMAKE_AR_TMP@%$CMAKE_AR_TMP%g s%@CMAKE_AR@%$CMAKE_AR%g CEOF diff --git a/Templates/configure.in b/Templates/configure.in index 9237325..f75b573 100644 --- a/Templates/configure.in +++ b/Templates/configure.in @@ -497,14 +497,6 @@ if test $ac_cv_prog_gxx = no; then echo "$ac_t""no" 1>&6 fi rm -f conftest* - echo $ac_n "checking whether ${CXX} accepts -instances=semiexplicit""... $ac_c" 1>&6 - echo 'void f(){}' > conftest.cc - if test -z "`${CXX} -instances=static -c conftest.cc 2>&1`"; then - echo "$ac_t""yes" 1>&6 - CMAKE_TEMPLATE_FLAGS="-instances=static" - else - echo "$ac_t""no" 1>&6 - fi fi AC_SUBST(CMAKE_TEMPLATE_FLAGS) @@ -549,7 +541,18 @@ fi # find make to use to build cmake, prefer gmake AC_PATH_PROGS(RUNMAKE, gmake make) -AC_PATH_PROGS(CMAKE_AR, ar) +AC_PATH_PROGS(CMAKE_AR_TMP, ar) +CMAKE_AR="$CMAKE_AR_TMP cr" +# if on SunOS and not using gXX then use the compiler to make .a libs +case $system in + SunOS-5*) + if test $ac_cv_prog_gxx = yes; then + : + else + echo "Using $CXX -xar -o for creating .a libraries" + CMAKE_AR="$CXX -xar -o" + fi +esac AC_SUBST(CMAKE_AR) # generate output files. |