diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-23 18:42:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-23 18:42:29 +0000 |
commit | 54efcebd947657475dbe5ef5ec907b78884254ce (patch) | |
tree | b7b38275f66f1678b1e9fec0ba9b398189ffd891 /m4 | |
parent | a0e12540f51adb7050ff0937efa86a2f937c5a5e (diff) | |
download | coreutils-54efcebd947657475dbe5ef5ec907b78884254ce.tar.xz |
Use AC_LIBSOURCES and AC_LIBOBJ.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/xstrtod.m4 | 5 |
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]) ]) |