From: Ben Elliston Date: Wed, 31 Mar 1999 08:42:11 +0000 (+0000) Subject: 1999-04-01 Ben Elliston X-Git-Tag: experimental-branchpoint~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a46d446b9ce881a70ff2ef01a8adc776992ab926;p=thirdparty%2Fautoconf.git 1999-04-01 Ben Elliston * acspecific.m4 (AC_EXEEXT): Do not consider `.xcoff' as a possible executable filename extension. Contributed by Robert S. Maier . --- diff --git a/ChangeLog b/ChangeLog index bd241926..74e43565 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,9 @@ script belonging to HP `pwplus' when running the install program. Contributed by Steven G. Johnson and Dave Adams . + (AC_EXEEXT): Do not consider `.xcoff' as a possible executable + filename extension. Contributed by Robert S. Maier + . 1999-03-28 Tom Tromey diff --git a/acspecific.m4 b/acspecific.m4 index 6f33fa0f..41e19c99 100644 --- a/acspecific.m4 +++ b/acspecific.m4 @@ -2664,7 +2664,7 @@ else if AC_TRY_EVAL(ac_link); then for file in conftest.*; do case $file in - *.c | *.C | *.o | *.obj) ;; + *.c | *.C | *.o | *.obj | *.xcoff) ;; *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; esac done diff --git a/lib/autoconf/specific.m4 b/lib/autoconf/specific.m4 index 6f33fa0f..41e19c99 100644 --- a/lib/autoconf/specific.m4 +++ b/lib/autoconf/specific.m4 @@ -2664,7 +2664,7 @@ else if AC_TRY_EVAL(ac_link); then for file in conftest.*; do case $file in - *.c | *.C | *.o | *.obj) ;; + *.c | *.C | *.o | *.obj | *.xcoff) ;; *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; esac done