summaryrefslogtreecommitdiff
path: root/m4/openat.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-11-28 20:55:38 +0000
committerJim Meyering <jim@meyering.net>2004-11-28 20:55:38 +0000
commit1fe609720882cd1616b6a5366eab6bd6567cda45 (patch)
tree2afc668c0a34c422827936c7d2d859e82d367103 /m4/openat.m4
parent45eac4b4089216bb9499bbad2f4e4badf098b571 (diff)
downloadcoreutils-1fe609720882cd1616b6a5366eab6bd6567cda45.tar.xz
*** empty log message ***
Diffstat (limited to 'm4/openat.m4')
-rw-r--r--m4/openat.m421
1 files changed, 21 insertions, 0 deletions
diff --git a/m4/openat.m4 b/m4/openat.m4
new file mode 100644
index 000000000..0124fbd99
--- /dev/null
+++ b/m4/openat.m4
@@ -0,0 +1,21 @@
+#serial 1
+
+# Written by Jim Meyering.
+# See if we need to use our replacement for Solaris' openat function.
+
+AC_DEFUN([gl_FUNC_OPENAT],
+[
+ AC_REPLACE_FUNCS(openat)
+ case $ac_cv_func_openat in
+ yes) ;;
+ *)
+ AC_DEFINE([__OPENAT_PREFIX], [[rpl_]],
+ [Define to rpl_ if the openat replacement function should be used.])
+ gl_PREREQ_OPENAT;;
+ esac
+])
+
+AC_DEFUN([gl_PREREQ_OPENAT],
+[
+ gl_SAVE_CWD
+])