From cb90040a7e66ca608fec5cee59c3bd137c8b266c Mon Sep 17 00:00:00 2001 From: panne Date: Thu, 9 Sep 2004 07:07:43 +0000 Subject: [PATCH] [project @ 2004-09-09 07:07:43 by panne] Fixed FP_LEADING_UNDERSCORE macro, removing the need for a special handling of Mac OS X again. --- aclocal.m4 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aclocal.m4 b/aclocal.m4 index 81d1104..f16094d 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -199,14 +199,15 @@ case $HostPlatform in alpha-dec-osf*) fptools_cv_leading_underscore=no;; *cygwin32) fptools_cv_leading_underscore=yes;; *mingw32) fptools_cv_leading_underscore=yes;; -*darwin) fptools_cv_leading_underscore=yes;; *) AC_TRY_RUN([#ifdef HAVE_NLIST_H #include struct nlist xYzzY1[] = {{"xYzzY1", 0},{0}}; struct nlist xYzzY2[] = {{"_xYzzY2", 0},{0}}; #endif -int main() +int main(argc, argv) +int argc; +char **argv; { #ifdef HAVE_NLIST_H if(nlist(argv[0], xYzzY1) == 0 && xYzzY1[0].n_value != 0) -- 1.7.10.4