[project @ 2004-09-09 07:07:43 by panne]
authorpanne <unknown>
Thu, 9 Sep 2004 07:07:43 +0000 (07:07 +0000)
committerpanne <unknown>
Thu, 9 Sep 2004 07:07:43 +0000 (07:07 +0000)
Fixed FP_LEADING_UNDERSCORE macro, removing the need for a special handling
of Mac OS X again.

aclocal.m4

index 81d1104..f16094d 100644 (file)
@@ -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 <nlist.h>
 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)