[Nagiosplug-checkins] nagiosplug/m4 c-strtod.m4, NONE, 1.1 np_coreutils.m4, 1.4, 1.5

Ton Voon tonvoon at users.sourceforge.net
Mon Jul 3 09:55:54 CEST 2006


Update of /cvsroot/nagiosplug/nagiosplug/m4
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18690/m4

Modified Files:
	np_coreutils.m4 
Added Files:
	c-strtod.m4 
Log Message:
Fixed compile on Tru64 5.1b (Ciro Iriarte - 1515435)


--- NEW FILE: c-strtod.m4 ---
# c-strtod.m4 serial 6

# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# Written by Paul Eggert.

AC_DEFUN([gl_C99_STRTOLD],
[
  AC_CACHE_CHECK([whether strtold conforms to C99],
    [gl_cv_func_c99_strtold],
    [AC_COMPILE_IFELSE(
       [AC_LANG_PROGRAM(
          [[/* On HP-UX before 11.23, strtold returns a struct instead of
		long double.  Reject implementations like that, by requiring
		compatibility with the C99 prototype.  */
	     #include <stdlib.h>
	     static long double (*p) (char const *, char **) = strtold;
	     static long double
	     test (char const *nptr, char **endptr)
	     {
	       long double r;
	       r = strtold (nptr, endptr);
	       return r;
	     }]],
           [[return test ("1.0", NULL) != 1 || p ("1.0", NULL) != 1;]])],
       [gl_cv_func_c99_strtold=yes],
       [gl_cv_func_c99_strtold=no])])
  if test $gl_cv_func_c99_strtold = yes; then
    AC_DEFINE([HAVE_C99_STRTOLD], 1, [Define to 1 if strtold conforms to C99.])
  fi
])

AC_DEFUN([gl_C_STRTOD],
[
  AC_LIBSOURCES([c-strtod.c, c-strtod.h])
  AC_LIBOBJ([c-strtod])

  dnl Prerequisites of lib/c-strtod.c.
  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
  :
])

AC_DEFUN([gl_C_STRTOLD],
[
  AC_LIBSOURCES([c-strtold.c, c-strtod.h])
  AC_LIBOBJ([c-strtold])

  dnl Prerequisites of lib/c-strtold.c.
  AC_REQUIRE([gl_C_STRTOD])
  AC_REQUIRE([gl_C99_STRTOLD])
  :
])

Index: np_coreutils.m4
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/m4/np_coreutils.m4,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- np_coreutils.m4	25 May 2006 12:33:24 -0000	1.4
+++ np_coreutils.m4	3 Jul 2006 07:55:52 -0000	1.5
@@ -11,6 +11,7 @@
 AC_DEFUN([np_COREUTILS],
 [
   AC_REQUIRE([AM_STDBOOL_H])
+  AC_REQUIRE([gl_C_STRTOLD])
   AC_REQUIRE([gl_GETOPT])
   AC_REQUIRE([gl_AFS])
   AC_REQUIRE([gl_EXITFAIL])





More information about the Commits mailing list