summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-12-21 10:21:20 +0000
committerJim Meyering <jim@meyering.net>2005-12-21 10:21:20 +0000
commit3114855498ede191d2dd2486affd147d17ca9099 (patch)
treee41ca8120134c20c951661c2eddede101407930c
parent9eb2e69d629a87e3b7a0f836c88859c234f40a9d (diff)
downloadcoreutils-3114855498ede191d2dd2486affd147d17ca9099.tar.xz
*** empty log message ***
-rw-r--r--m4/ChangeLog5
-rw-r--r--m4/chdir-safer.m411
2 files changed, 16 insertions, 0 deletions
diff --git a/m4/ChangeLog b/m4/ChangeLog
index e96f8d7df..0e4c4de1e 100644
--- a/m4/ChangeLog
+++ b/m4/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-21 Jim Meyering <jim@meyering.net>
+
+ * chdir-safer.m4: New file.
+ * jm-macros.m4: Require gl_CHDIR_SAFER.
+
2005-12-05 Andreas Gruenbacher <agruen@suse.de>
* 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 000000000..f3d7351b5
--- /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])
+])