From: Jim Meyering Date: Wed, 21 Dec 2005 10:21:20 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: v6.0~1054 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3114855498ede191d2dd2486affd147d17ca9099;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/m4/ChangeLog b/m4/ChangeLog index e96f8d7df3..0e4c4de1e5 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,8 @@ +2005-12-21 Jim Meyering + + * chdir-safer.m4: New file. + * jm-macros.m4: Require gl_CHDIR_SAFER. + 2005-12-05 Andreas Gruenbacher * acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests. diff --git a/m4/chdir-safer.m4 b/m4/chdir-safer.m4 new file mode 100644 index 0000000000..f3d7351b5c --- /dev/null +++ b/m4/chdir-safer.m4 @@ -0,0 +1,11 @@ +#serial 1 +dnl Copyright (C) 2005 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +AC_DEFUN([gl_CHDIR_SAFER], +[ + AC_LIBSOURCES([chdir-safer.c, chdir-safer.h]) + AC_LIBOBJ([chdir-safer]) +])