+2009-09-19 Eric Blake <ebb9@byu.net>
+
+ canonicalize-lgpl: adjust clients to use correct header
+ * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
+ (gl_CANONICALIZE_LGPL): Use correct shell quoting.
+ * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
+ * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
+ * lib/progreloc.c (includes): Likewise.
+
2009-09-19 Jim Meyering <meyering@redhat.com>
test-posixtm.c: correct a comment
AC_REQUIRE([gl_FUNC_REALPATH_WORKS])
if test $ac_cv_func_canonicalize_file_name = no; then
HAVE_CANONICALIZE_FILE_NAME=0
- elif test $gl_cv_func_realpath_works != yes; then
+ elif test "$gl_cv_func_realpath_works" != yes; then
REPLACE_CANONICALIZE_FILE_NAME=1
fi
])
AC_LIBOBJ([canonicalize-lgpl])
if test $ac_cv_func_realpath = no; then
HAVE_REALPATH=0
- elif test $gl_cv_func_realpath_works != yes; then
+ elif test "$gl_cv_func_realpath_works" != yes; then
REPLACE_REALPATH=1
fi
- elif test $gl_cv_func_realpath_works != yes; then
+ elif test "$gl_cv_func_realpath_works" != yes; then
AC_LIBOBJ([canonicalize-lgpl])
REPLACE_REALPATH=1
REPLACE_CANONICALIZE_FILE_NAME=1
], [gl_cv_func_realpath_works=yes], [gl_cv_func_realpath_works=no],
[gl_cv_func_realpath_works="guessing no"])
])
- if test $gl_cv_func_realpath_works = yes; then
+ if test "$gl_cv_func_realpath_works" = yes; then
AC_DEFINE([FUNC_REALPATH_WORKS], [1], [Define to 1 if realpath()
can malloc memory, always gives an absolute path, and handles
trailing slash correctly.])