mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-31 19:40:33 +08:00
libgloss: fix AC_LANG_SOURCE warnings w/newer autoconf
When running autoconf-2.69 in here, we get: configure.ac:57: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... ../../lib/autoconf/general.m4:2503: _AC_PREPROC_IFELSE is expanded from... ../../lib/autoconf/general.m4:2518: AC_PREPROC_IFELSE is expanded from... configure.ac:57: the top level configure.ac:61: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:193: AC_LANG_CONFTEST is expanded from... ../../lib/autoconf/general.m4:2503: _AC_PREPROC_IFELSE is expanded from... ../../lib/autoconf/general.m4:2518: AC_PREPROC_IFELSE is expanded from... configure.ac:61: the top level Add AC_LANG_PROGRAM wrappings to fix these.
This commit is contained in:
parent
34b1447040
commit
63c1f29a1d
@ -54,13 +54,13 @@ dnl an executable or not.
|
|||||||
dnl
|
dnl
|
||||||
saved_LDFLAGS="$LDFLAGS"
|
saved_LDFLAGS="$LDFLAGS"
|
||||||
LDFLAGS="-nostdlib -e main"
|
LDFLAGS="-nostdlib -e main"
|
||||||
AC_PREPROC_IFELSE([#ifndef __mcoldfire__
|
AC_PREPROC_IFELSE([AC_LANG_PROGRAM([#ifndef __mcoldfire__
|
||||||
#error we are not coldfire
|
#error we are not coldfire
|
||||||
#endif],
|
#endif])],
|
||||||
DO="cf",)
|
DO="cf",)
|
||||||
AC_PREPROC_IFELSE([#ifndef __mfido__
|
AC_PREPROC_IFELSE([AC_LANG_PROGRAM([#ifndef __mfido__
|
||||||
#error we are not fido
|
#error we are not fido
|
||||||
#endif],
|
#endif])],
|
||||||
DO="fido",)
|
DO="fido",)
|
||||||
LDFLAGS=$saved_LDFLAGS
|
LDFLAGS=$saved_LDFLAGS
|
||||||
AC_MSG_RESULT($DO)
|
AC_MSG_RESULT($DO)
|
||||||
|
@ -54,13 +54,13 @@ dnl an executable or not.
|
|||||||
dnl
|
dnl
|
||||||
saved_LDFLAGS="$LDFLAGS"
|
saved_LDFLAGS="$LDFLAGS"
|
||||||
LDFLAGS="-nostdlib -e main"
|
LDFLAGS="-nostdlib -e main"
|
||||||
AC_PREPROC_IFELSE([#ifndef __mcoldfire__
|
AC_PREPROC_IFELSE([AC_LANG_PROGRAM([#ifndef __mcoldfire__
|
||||||
#error we are not coldfire
|
#error we are not coldfire
|
||||||
#endif],
|
#endif])],
|
||||||
DO="cf",)
|
DO="cf",)
|
||||||
AC_PREPROC_IFELSE([#ifndef __mfido__
|
AC_PREPROC_IFELSE([AC_LANG_PROGRAM([#ifndef __mfido__
|
||||||
#error we are not fido
|
#error we are not fido
|
||||||
#endif],
|
#endif])],
|
||||||
DO="fido",)
|
DO="fido",)
|
||||||
LDFLAGS=$saved_LDFLAGS
|
LDFLAGS=$saved_LDFLAGS
|
||||||
AC_MSG_RESULT($DO)
|
AC_MSG_RESULT($DO)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user