diff options
author | Jim Meyering <jim@meyering.net> | 2002-01-18 23:43:38 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-01-18 23:43:38 +0000 |
commit | 10b3363e2e8104c8bdd790a9808471907d27a9f9 (patch) | |
tree | e71c83f7fd4a0e1e32d6c6af8a3470b4a49b95c3 /m4 | |
parent | c8aa23a9cc2a8de24fcd37c5513eb70a6dfd61a3 (diff) | |
download | coreutils-10b3363e2e8104c8bdd790a9808471907d27a9f9.tar.xz |
(jm_MACROS): Use AC_FUNC_STRNLEN.
Remove useless quotes: DF_PROG="df".
Diffstat (limited to 'm4')
-rw-r--r-- | m4/jm-macros.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4 index 00e04adc1..4c180bfbb 100644 --- a/m4/jm-macros.m4 +++ b/m4/jm-macros.m4 @@ -1,4 +1,4 @@ -#serial 42 -*- autoconf -*- +#serial 43 -*- autoconf -*- dnl Misc type-related macros for fileutils, sh-utils, textutils. @@ -159,6 +159,7 @@ AC_DEFUN([jm_MACROS], AC_FUNC_OBSTACK AC_FUNC_STRTOD + AC_FUNC_STRNLEN # See if linking `seq' requires -lm. # It does on nearly every system. The single exception (so far) is @@ -188,7 +189,7 @@ AC_DEFUN([jm_MACROS], jm_FSTYPENAME jm_FILE_SYSTEM_USAGE([space=yes], [space=no]) if test $list_mounted_fs = yes && test $space = yes; then - DF_PROG="df" + DF_PROG=df AC_LIBOBJ(fsusage) AC_LIBOBJ(mountlist) fi |