mirror of
git://git.sv.gnu.org/autoconf
synced 2024-12-03 02:00:36 +08:00
* acspecific.m4 (_AC_EXEEXT): Skip *.pdb.
From Paul Berrevoets <paul@swi.com>.
This commit is contained in:
parent
5561d67cf9
commit
cce1813e74
@ -1,3 +1,8 @@
|
|||||||
|
2000-12-07 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
|
* acspecific.m4 (_AC_EXEEXT): Skip *.pdb.
|
||||||
|
From Paul Berrevoets <paul@swi.com>.
|
||||||
|
|
||||||
2000-12-07 Akim Demaille <akim@epita.fr>
|
2000-12-07 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
* tests/atgeneral.m4 (AT_CHECK): Bad typo: assign `exit 1' to
|
* tests/atgeneral.m4 (AT_CHECK): Bad typo: assign `exit 1' to
|
||||||
|
@ -1206,6 +1206,9 @@ AC_DEFUN([AC_OBJEXT], [])
|
|||||||
#
|
#
|
||||||
# Ignore .d files produced by CFLAGS=-MD.
|
# Ignore .d files produced by CFLAGS=-MD.
|
||||||
#
|
#
|
||||||
|
# On UWIN (which uses a cc wrapper for MSVC), the compiler also generates
|
||||||
|
# a .pdb file
|
||||||
|
#
|
||||||
# This macro is called by AC_LANG_COMPILER, the latter being required
|
# This macro is called by AC_LANG_COMPILER, the latter being required
|
||||||
# by the AC_COMPILE_IFELSE macros, so use AC_TRY_EVAL.
|
# by the AC_COMPILE_IFELSE macros, so use AC_TRY_EVAL.
|
||||||
m4_define([_AC_EXEEXT],
|
m4_define([_AC_EXEEXT],
|
||||||
@ -1221,7 +1224,7 @@ m4_define([_AC_EXEEXT],
|
|||||||
# `rm'.
|
# `rm'.
|
||||||
for ac_file in `ls conftest.exe conftest conftest.* 2>/dev/null`; do
|
for ac_file in `ls conftest.exe conftest conftest.* 2>/dev/null`; do
|
||||||
case $ac_file in
|
case $ac_file in
|
||||||
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d) ;;
|
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
|
||||||
*) ac_cv_exeext=`expr "$ac_file" : 'conftest\(.*\)'`
|
*) ac_cv_exeext=`expr "$ac_file" : 'conftest\(.*\)'`
|
||||||
break;;
|
break;;
|
||||||
esac
|
esac
|
||||||
|
@ -1206,6 +1206,9 @@ AC_DEFUN([AC_OBJEXT], [])
|
|||||||
#
|
#
|
||||||
# Ignore .d files produced by CFLAGS=-MD.
|
# Ignore .d files produced by CFLAGS=-MD.
|
||||||
#
|
#
|
||||||
|
# On UWIN (which uses a cc wrapper for MSVC), the compiler also generates
|
||||||
|
# a .pdb file
|
||||||
|
#
|
||||||
# This macro is called by AC_LANG_COMPILER, the latter being required
|
# This macro is called by AC_LANG_COMPILER, the latter being required
|
||||||
# by the AC_COMPILE_IFELSE macros, so use AC_TRY_EVAL.
|
# by the AC_COMPILE_IFELSE macros, so use AC_TRY_EVAL.
|
||||||
m4_define([_AC_EXEEXT],
|
m4_define([_AC_EXEEXT],
|
||||||
@ -1221,7 +1224,7 @@ m4_define([_AC_EXEEXT],
|
|||||||
# `rm'.
|
# `rm'.
|
||||||
for ac_file in `ls conftest.exe conftest conftest.* 2>/dev/null`; do
|
for ac_file in `ls conftest.exe conftest conftest.* 2>/dev/null`; do
|
||||||
case $ac_file in
|
case $ac_file in
|
||||||
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d) ;;
|
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
|
||||||
*) ac_cv_exeext=`expr "$ac_file" : 'conftest\(.*\)'`
|
*) ac_cv_exeext=`expr "$ac_file" : 'conftest\(.*\)'`
|
||||||
break;;
|
break;;
|
||||||
esac
|
esac
|
||||||
|
Loading…
Reference in New Issue
Block a user