diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-02-28 20:06:59 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-02-28 20:06:59 (GMT) |
commit | e8c2483b4e8af3f53065cf39459f60b252039161 (patch) | |
tree | eb3af0d06099237657c6fa4781fac619be488d3f /Templates | |
parent | dcf821ad4d384bf70aaca9eb560a1d1fc28704ed (diff) | |
download | CMake-e8c2483b4e8af3f53065cf39459f60b252039161.zip CMake-e8c2483b4e8af3f53065cf39459f60b252039161.tar.gz CMake-e8c2483b4e8af3f53065cf39459f60b252039161.tar.bz2 |
change hp checks to all hps and not just version 10
Diffstat (limited to 'Templates')
-rwxr-xr-x | Templates/configure | 6 | ||||
-rw-r--r-- | Templates/configure.in | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Templates/configure b/Templates/configure index abc3447..fda2ba7 100755 --- a/Templates/configure +++ b/Templates/configure @@ -2605,7 +2605,7 @@ fi CMAKE_SHLIB_RUNTIME_FLAG="" CMAKE_SHLIB_RUNTIME_SEP=":" ;; - HP-UX-*.08.*|HP-UX-*.09.*|HP-UX-*.10.*) + HP-UX-*) CMAKE_SHLIB_CFLAGS="+Z" CMAKE_SHLIB_LD_LIBS="" CMAKE_SHLIB_SUFFIX=".sl" @@ -3255,7 +3255,7 @@ fi # on dec alphas we have had problems as well if test "$use_pthreads" = "yes"; then case $system in - HP-UX-*.10.*) + HP-UX-*) CMAKE_THREAD_LIBS="-lcma" CMAKE_USE_PTHREADS=1 CMAKE_HP_PTHREADS=1 @@ -3288,7 +3288,7 @@ CMAKE_ANSI_CXXFLAGS="" # on hp use -Aa for ansi if test $ac_cv_prog_gxx = no; then case $system in - HP-UX-*.08.*|HP-UX-*.09.*|HP-UX-*.10.*) + HP-UX-*) echo $ac_n "checking whether ${CC} accepts -Aa""... $ac_c" 1>&6 echo 'void f(){}' > conftest.c if test -z "`${CC} -Aa -c conftest.c 2>&1`"; then diff --git a/Templates/configure.in b/Templates/configure.in index b451e2b..ef77696 100644 --- a/Templates/configure.in +++ b/Templates/configure.in @@ -185,7 +185,7 @@ case $system in CMAKE_SHLIB_RUNTIME_FLAG="" CMAKE_SHLIB_RUNTIME_SEP=":" ;; - HP-UX-*.08.*|HP-UX-*.09.*|HP-UX-*.10.*) + HP-UX-*) CMAKE_SHLIB_CFLAGS="+Z" CMAKE_SHLIB_LD_LIBS="" CMAKE_SHLIB_SUFFIX=".sl" @@ -566,7 +566,7 @@ fi # on dec alphas we have had problems as well if test "$use_pthreads" = "yes"; then case $system in - HP-UX-*.10.*) + HP-UX-*) CMAKE_THREAD_LIBS="-lcma" CMAKE_USE_PTHREADS=1 CMAKE_HP_PTHREADS=1 @@ -599,7 +599,7 @@ CMAKE_ANSI_CXXFLAGS="" # on hp use -Aa for ansi if test $ac_cv_prog_gxx = no; then case $system in - HP-UX-*.08.*|HP-UX-*.09.*|HP-UX-*.10.*) + HP-UX-*) echo $ac_n "checking whether ${CC} accepts -Aa""... $ac_c" 1>&6 echo 'void f(){}' > conftest.c if test -z "`${CC} -Aa -c conftest.c 2>&1`"; then |