summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-06-23 18:42:29 +0000
committerJim Meyering <jim@meyering.net>2005-06-23 18:42:29 +0000
commit54efcebd947657475dbe5ef5ec907b78884254ce (patch)
treeb7b38275f66f1678b1e9fec0ba9b398189ffd891
parenta0e12540f51adb7050ff0937efa86a2f937c5a5e (diff)
downloadcoreutils-54efcebd947657475dbe5ef5ec907b78884254ce.tar.xz
Use AC_LIBSOURCES and AC_LIBOBJ.
-rw-r--r--m4/xstrtod.m45
1 files changed, 3 insertions, 2 deletions
diff --git a/m4/xstrtod.m4 b/m4/xstrtod.m4
index fd761dfd6..7b2c7b0d6 100644
--- a/m4/xstrtod.m4
+++ b/m4/xstrtod.m4
@@ -1,4 +1,4 @@
-# xstrtod.m4 serial 3
+#serial 4
dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -7,5 +7,6 @@ dnl with or without modifications, as long as this notice is preserved.
# Prerequisites of lib/xstrtod.c.
AC_DEFUN([gl_XSTRTOD],
[
- :
+ AC_LIBSOURCES([xstrtod.c, xstrtod.h])
+ AC_LIBOBJ([xstrtod])
])