diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:47:28 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:47:28 +0300 |
commit | 6719bb6e1c5576e857ab6fc121ec31a75161a3e7 (patch) | |
tree | 97cba951750ceb73899e48490dbb33674e5b29e1 /aclocal.m4 | |
parent | 558ba97bdeac5a68bb9248a5c4cdf2feeb24e771 (diff) | |
download | gawk-6719bb6e1c5576e857ab6fc121ec31a75161a3e7.tar.gz |
Move to gawk-3.0.2.gawk-3.0.2
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 47 |
1 files changed, 0 insertions, 47 deletions
@@ -132,50 +132,3 @@ eate executables.]) ;; esac AC_MSG_RESULT(yes) ])dnl - - -dnl To: Keith Bostic <bostic@bsdi.com> -dnl Cc: bug-gnu-utils@prep.ai.mit.edu -dnl Subject: Re: autoconf-2.7 -dnl From: Jim Meyering <meyering@asic.sc.ti.com> -dnl Date: 15 Oct 1996 11:57:12 -0500 -dnl -dnl | The assumption that, if a simple program can't be compiled and -dnl | run, that the user is doing cross-compilation, is causing me -dnl | serious grief. The problem is that Solaris ships a cc command -dnl | that just fails, if you haven't bought their compiler. -dnl | -dnl | What the user is eventually told is that it's not possible to -dnl | run test programs when cross-compiling, which doesn't point them -dnl | at the right problem. -dnl | -dnl | Maybe it's just me, but I don't know too many normal users that -dnl | do cross-compilation. I'd like to see a more stringent test to -dnl | decide if we're doing cross-compilation. (Maybe with a message -dnl | to use gcc!?!? ;-}) -dnl -dnl Now I put this line in configure.in files: -dnl -dnl AM_SANITY_CHECK_CC -dnl -dnl Here's the macro that goes in aclocal.m4 -- it should be in the -dnl next official release of automake. - -AC_DEFUN(AM_SANITY_CHECK_CC, -[dnl Derived from macros from Bruno Haible and from Cygnus. -AC_MSG_CHECKING([whether the compiler ($CC $CFLAGS $LDFLAGS) actually works]) -AC_LANG_SAVE - AC_LANG_C - AC_TRY_RUN([main() { exit(0); }], - am_cv_prog_cc_works=yes, am_cv_prog_cc_works=no, - dnl When crosscompiling, just try linking. - AC_TRY_LINK([], [], am_cv_prog_cc_works=yes, - am_cv_prog_cc_works=no)) -AC_LANG_RESTORE -case "$am_cv_prog_cc_works" in - *no) AC_MSG_ERROR([Installation or configuration problem: C compiler cannot cr -eate executables.]) ;; - *yes) ;; -esac -AC_MSG_RESULT(yes) -])dnl |