+2006-09-15 Jim Meyering <jim@meyering.net>
+
+ * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
+
2009-09-13 Simon Josefsson <jas@extundo.com>
* gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
-#serial 9
+#serial 10
# Copyright (C) 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
dnl to compile the wrapper function.
dnl
-AC_DEFUN([vb_FUNC_RENAME],
+AC_DEFUN([gl_FUNC_RENAME],
[
AC_CACHE_CHECK([whether rename is broken],
- vb_cv_func_rename_trailing_slash_bug,
+ gl_cv_func_rename_trailing_slash_bug,
[
rm -rf conftest.d1 conftest.d2
mkdir conftest.d1 ||
exit (rename ("conftest.d1/", "conftest.d2") ? 1 : 0);
}
],
- vb_cv_func_rename_trailing_slash_bug=no,
- vb_cv_func_rename_trailing_slash_bug=yes,
+ gl_cv_func_rename_trailing_slash_bug=no,
+ gl_cv_func_rename_trailing_slash_bug=yes,
dnl When crosscompiling, assume rename is broken.
- vb_cv_func_rename_trailing_slash_bug=yes)
+ gl_cv_func_rename_trailing_slash_bug=yes)
rm -rf conftest.d1 conftest.d2
])
- if test $vb_cv_func_rename_trailing_slash_bug = yes; then
+ if test $gl_cv_func_rename_trailing_slash_bug = yes; then
AC_LIBOBJ(rename)
AC_DEFINE(rename, rpl_rename,
[Define to rpl_rename if the replacement function should be used.])