diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-23 16:24:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-23 16:24:06 +0000 |
commit | 47237c979fde602a4d92615439ca5fc7433e088e (patch) | |
tree | cbde89d98aa2fd76144d369c95127177c419c633 /m4 | |
parent | d8ff99062df1605cedd05a0dc8ac370243ae11d0 (diff) | |
download | coreutils-47237c979fde602a4d92615439ca5fc7433e088e.tar.xz |
Use AC_LIBSOURCES and AC_LIBOBJ.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/xreadlink.m4 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/m4/xreadlink.m4 b/m4/xreadlink.m4 index f4b25bcf0..9e32786e1 100644 --- a/m4/xreadlink.m4 +++ b/m4/xreadlink.m4 @@ -1,11 +1,14 @@ -# xreadlink.m4 serial 5 -dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc. +#serial 6 +dnl Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_XREADLINK], [ + AC_LIBSOURCES([xreadlink.c, xreadlink.h]) + AC_LIBOBJ([xreadlink]) + dnl Prerequisites of lib/xreadlink.c. AC_REQUIRE([gt_TYPE_SSIZE_T]) AC_CHECK_HEADERS_ONCE(unistd.h) |