From c600ace840c66bc89ef97c4bda52a3739d58df99 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 11 Jan 2003 08:16:56 +0000 Subject: [PATCH] (AC_FUNC_CANONICALIZE_FILE_NAME): New file and macro. --- m4/canonicalize.m4 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 m4/canonicalize.m4 diff --git a/m4/canonicalize.m4 b/m4/canonicalize.m4 new file mode 100644 index 000000000..d859de6d0 --- /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)]) + ]) -- 2.34.1