diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-08-16 21:02:34 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-08-16 21:02:34 (GMT) |
commit | bf2431bf78e57fad07b00ddfdf98e23a5ef5e369 (patch) | |
tree | 6a19f1445dd49304f2cecb030e3594a5ad52590e /configure | |
parent | c529e810e586f9da062fea1ce38fe43f4169d0f0 (diff) | |
download | hdf5-bf2431bf78e57fad07b00ddfdf98e23a5ef5e369.zip hdf5-bf2431bf78e57fad07b00ddfdf98e23a5ef5e369.tar.gz hdf5-bf2431bf78e57fad07b00ddfdf98e23a5ef5e369.tar.bz2 |
[svn-r11253] Purpose:
Configuration feature
Description:
Added 'alias' for host names in configure. Typing ./configure --host=tflops
will now configure with tflops as a host. Previously, this required typing
./configure --host=i386-intel-osfl.
Solution:
Added a section in configure.in which will replace 'tflops' with
'i386-intel-osfl'.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -1564,6 +1564,12 @@ ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. ac_config_commands="$ac_config_commands default-1" +case $host_alias in + tflops) + host_alias=i386-intel-osf1 + ;; +esac + # Make sure we can run config.sub. $ac_config_sub sun4 >/dev/null 2>&1 || { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 @@ -4564,7 +4570,7 @@ test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes case $host in *-*-irix6*) # Find out which ABI we are using. - echo '#line 4567 "configure"' > conftest.$ac_ext + echo '#line 4573 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -5131,7 +5137,7 @@ chmod -w . save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -o out/conftest2.$ac_objext" compiler_c_o=no -if { (eval echo configure:5134: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then +if { (eval echo configure:5140: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings if test -s out/conftest.err; then @@ -7042,7 +7048,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 7045 "configure" +#line 7051 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -7140,7 +7146,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<EOF -#line 7143 "configure" +#line 7149 "configure" #include "confdefs.h" #if HAVE_DLFCN_H |