summaryrefslogtreecommitdiffstats
path: root/gettext-tools
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2006-04-24 11:18:26 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:13:12 +0200
commitcc245c591dfe745315ef0ffcb033fdcb8a51ea08 (patch)
tree08aa6dd7bd96f2133cdc2af0331df106a071e5d7 /gettext-tools
parentebdacfb2d0f5e376ca1e03005d924b5f99e139bd (diff)
downloadexternal_gettext-cc245c591dfe745315ef0ffcb033fdcb8a51ea08.zip
external_gettext-cc245c591dfe745315ef0ffcb033fdcb8a51ea08.tar.gz
external_gettext-cc245c591dfe745315ef0ffcb033fdcb8a51ea08.tar.bz2
From gnulib module 'unistd'.
Diffstat (limited to 'gettext-tools')
-rw-r--r--gettext-tools/m4/unistd_h.m418
1 files changed, 18 insertions, 0 deletions
diff --git a/gettext-tools/m4/unistd_h.m4 b/gettext-tools/m4/unistd_h.m4
new file mode 100644
index 0000000..9c77f9b
--- /dev/null
+++ b/gettext-tools/m4/unistd_h.m4
@@ -0,0 +1,18 @@
+# unistd_h.m4 serial 2
+dnl Copyright (C) 2006 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.
+
+dnl Written by Simon Josefsson
+
+AC_DEFUN([gl_HEADER_UNISTD],
+[
+ dnl Prerequisites of lib/unistd.h.
+ AC_CHECK_HEADERS([unistd.h], [
+ UNISTD_H=''
+ ], [
+ UNISTD_H='unistd.h'
+ ])
+ AC_SUBST(UNISTD_H)
+])