Remove redundant stuff.
authormdw <mdw>
Sat, 20 Jan 2001 12:03:08 +0000 (12:03 +0000)
committermdw <mdw>
Sat, 20 Jan 2001 12:03:08 +0000 (12:03 +0000)
aclocal.glob
configure.in

index 8cacec8..dfbf692 100644 (file)
@@ -1,6 +1,6 @@
 dnl -*-fundamental-*-                                    *@--GLOB-HEADER--@*
 dnl
-dnl $Id: aclocal.glob,v 1.10 2000/10/14 16:32:15 mdw Exp $
+dnl $Id: aclocal.glob,v 1.11 2001/01/20 12:03:08 mdw Exp $
 dnl
 dnl Common library of autoconf macros
 dnl
@@ -28,6 +28,9 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 dnl----- Revision history ---------------------------------------------------
 dnl
 dnl $Log: aclocal.glob,v $
+dnl Revision 1.11  2001/01/20 12:03:08  mdw
+dnl Remove redundant stuff.
+dnl
 dnl Revision 1.10  2000/10/14 16:32:15  mdw
 dnl Fixes from upstream.
 dnl
@@ -62,13 +65,13 @@ dnl
 
 dnl----- Common files distribution --------------------------- *@--NOTICE--@*
 dnl
-dnl $Id: aclocal.glob,v 1.10 2000/10/14 16:32:15 mdw Exp $
+dnl $Id: aclocal.glob,v 1.11 2001/01/20 12:03:08 mdw Exp $
 
-dnl --- *@-AC_PROG_CC_STDC-@* ---
+dnl --- *@-AM_PROG_CC_STDC-@* ---
 dnl
 dnl Author:    Franc,ois Pinard
 dnl
-dnl Synopsis:  AC_PROG_CC_STDC
+dnl Synopsis:  AM_PROG_CC_STDC
 dnl
 dnl Arguments: ---
 dnl
@@ -336,25 +339,6 @@ AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
 AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
 AC_REQUIRE([AC_PROG_MAKE_SET])])
 
-dnl --- *@-AM_PROG_INSTALL-@* ---
-dnl
-dnl Author:    Franc,ois Pinard
-dnl
-dnl Synopsis:  AM_PROG_INSTALL
-dnl
-dnl Arguments: ---
-dnl
-dnl Use:       Calls `AC_PROG_INSTALL' to find an installer.  Then it sets
-dnl            `INSTALL_SCRIPT' to a suitable value if necessary.
-
-# serial 1
-
-AC_DEFUN(AM_PROG_INSTALL,
-[AC_PROG_INSTALL
-test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL} -m 755'
-AC_SUBST(INSTALL_SCRIPT)dnl
-])
-
 dnl --- *@-AM_PROG_LEX-@* ---
 dnl
 dnl Author:    Alexandre Oliva
@@ -638,7 +622,7 @@ dnl         set `U' to be `_' and `ANSI2KNR' to be `./ansi2knr'.
 # serial 1
 
 AC_DEFUN(fp_C_PROTOTYPES,
-[AC_REQUIRE([fp_PROG_CC_STDC])
+[AC_REQUIRE([AM_PROG_CC_STDC])
 AC_MSG_CHECKING([for function prototypes])
 if test "$ac_cv_prog_cc_stdc" != no; then
   AC_MSG_RESULT(yes)
@@ -997,35 +981,6 @@ main()
   {
     /* Under Solaris 2.4, strtod returns the wrong value for the
        terminating character under some conditions.  */
-
-## @defmac AC_FUNC_STRTOD
-## @maindex FUNC_STRTOD
-## @ovindex LIBOBJS
-## If the @code{strtod} function is not available, or does not work
-## correctly (like the one on SunOS 5.4), add @samp{strtod.o} to output
-## variable @code{LIBOBJS}.
-## @end defmac
-
-AC_DEFUN(AM_FUNC_STRTOD,
-[AC_CACHE_CHECK(for working strtod, am_cv_func_strtod,
-[AC_TRY_RUN([
-double strtod ();
-int
-main()
-{
-  {
-    /* Some versions of Linux strtod mis-parse strings with leading '+'.  */
-    char *string = " +69";
-    char *term;
-    double value;
-    value = strtod (string, &term);
-    if (value != 69 || term != (string + 4))
-      exit (1);
-  }
-
-  {
-    /* Under Solaris 2.4, strtod returns the wrong value for the
-       terminating character under some conditions.  */
     char *string = "NaN";
     char *term;
     strtod (string, &term);
index 1e33665..3768286 100644 (file)
@@ -1,6 +1,6 @@
 dnl -*-fundamental-*-
 dnl
-dnl $Id: configure.in,v 1.8 1999/11/11 18:51:04 mdw Exp $
+dnl $Id: configure.in,v 1.9 2001/01/20 12:02:38 mdw Exp $
 dnl
 dnl Configuring the Common Files Distribution
 dnl
@@ -28,11 +28,8 @@ dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 dnl----- Revision history ---------------------------------------------------
 dnl
 dnl $Log: configure.in,v $
-dnl Revision 1.8  1999/11/11 18:51:04  mdw
-dnl Version bump.
-dnl
-dnl Revision 1.7  1999/10/23 12:35:22  mdw
-dnl Version bump.
+dnl Revision 1.9  2001/01/20 12:02:38  mdw
+dnl Remove redundant stuff.
 dnl
 dnl Revision 1.1.1.1  1999/05/05 19:23:47  mdw
 dnl New import.  The old CVS repository was lost in a disk disaster.
@@ -40,6 +37,4 @@ dnl
 
 AC_INIT(mklinks.in)
 AM_INIT_AUTOMAKE(common, 1.2.7)
-AM_PROG_INSTALL
-AC_ARG_PROGRAM
 AC_OUTPUT(Makefile mklinks findlinks txtlib mkaclocal)