From: Jim Meyering Date: Sat, 11 Jan 2003 08:16:56 +0000 (+0000) Subject: (AC_FUNC_CANONICALIZE_FILE_NAME): New file and macro. X-Git-Tag: v4.5.5~264 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c600ace840c66bc89ef97c4bda52a3739d58df99;p=thirdparty%2Fcoreutils.git (AC_FUNC_CANONICALIZE_FILE_NAME): New file and macro. --- diff --git a/m4/canonicalize.m4 b/m4/canonicalize.m4 new file mode 100644 index 0000000000..d859de6d0a --- /dev/null +++ b/m4/canonicalize.m4 @@ -0,0 +1,9 @@ +#serial 1 +# This would simply be AC_REPLACE_FUNC([canonicalize_file_name]) +# if the function name weren't so long. Besides, I would rather +# not have underscores in file names. +AC_DEFUN([AC_FUNC_CANONICALIZE_FILE_NAME], + [ + dnl FIXME: add prerequisites here + AC_CHECK_FUNC(canonicalize_file_name, , [AC_LIBOBJ(canonicalize)]) + ])