diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-26 18:09:12 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-26 18:09:12 +0000 |
commit | 084a724c9ac96e3b1fde301e1ba1820b8bc74674 (patch) | |
tree | 06029f41b4a40a4c1d4adcf108f7f00b19342a44 /libf2c/configure | |
parent | 0f0d5a69be58a6d116c07a886a15e08f5e774814 (diff) | |
download | gcc-084a724c9ac96e3b1fde301e1ba1820b8bc74674.tar.gz |
* configure.in: Adjust include paths in F2C_INTEGER and F2C_LONGINT
tests to work out of the build directory.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19419 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libf2c/configure')
-rwxr-xr-x | libf2c/configure | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/libf2c/configure b/libf2c/configure index e35980d11c1..b4bfd40bc7c 100755 --- a/libf2c/configure +++ b/libf2c/configure @@ -1719,12 +1719,16 @@ fi echo $ac_n "checking f2c integer type""... $ac_c" 1>&6 echo "configure:1721: checking f2c integer type" >&5 late_ac_cpp=$ac_cpp -ac_cpp="$late_ac_cpp -I$srcdir/../gcc/f -I../../gcc -I$srcdir/../gcc -I$srcdir/../gcc/config" +if test "$srcdir" = . ; then + ac_cpp="$late_ac_cpp -I../../gcc/f -I../../gcc -I../../gcc/config" +else + ac_cpp="$late_ac_cpp -I$srcdir/../gcc/f -I$srcdir/../gcc -I$srcdir/../gcc/config" +fi if eval "test \"`echo '$''{'g77_cv_sys_f2cinteger'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 1728 "configure" +#line 1732 "configure" #include "confdefs.h" #include "proj.h" #define FFECOM_DETERMINE_TYPES 1 @@ -1747,7 +1751,7 @@ rm -f conftest* if test "$g77_cv_sys_f2cinteger" = ""; then cat > conftest.$ac_ext <<EOF -#line 1751 "configure" +#line 1755 "configure" #include "confdefs.h" #include "proj.h" #define FFECOM_DETERMINE_TYPES 1 @@ -1782,14 +1786,18 @@ ac_cpp=$late_ac_cpp echo $ac_n "checking f2c long int type""... $ac_c" 1>&6 -echo "configure:1786: checking f2c long int type" >&5 +echo "configure:1790: checking f2c long int type" >&5 late_ac_cpp=$ac_cpp -ac_cpp="$late_ac_cpp -I$srcdir/../gcc/f -I../../gcc -I$srcdir/../gcc -I$srcdir/../gcc/config" +if test "$srcdir" = . ; then + ac_cpp="$late_ac_cpp -I../../gcc/f -I../../gcc -I../../gcc/config" +else + ac_cpp="$late_ac_cpp -I$srcdir/../gcc/f -I$srcdir/../gcc -I$srcdir/../gcc/config" +fi if eval "test \"`echo '$''{'g77_cv_sys_f2clongint'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 1793 "configure" +#line 1801 "configure" #include "confdefs.h" #include "proj.h" #define FFECOM_DETERMINE_TYPES 1 @@ -1812,7 +1820,7 @@ rm -f conftest* if test "$g77_cv_sys_f2clongint" = ""; then cat > conftest.$ac_ext <<EOF -#line 1816 "configure" +#line 1824 "configure" #include "confdefs.h" #include "proj.h" #define FFECOM_DETERMINE_TYPES 1 |