Mercurial > hg > octave-kai > gnulib-hg
changeset 6686:f6342bb3069d
Add, forgotten in last commit.
author | Simon Josefsson <simon@josefsson.org> |
---|---|
date | Tue, 07 Mar 2006 13:33:04 +0000 |
parents | 143f906c9a6a |
children | 60d65d0dbfca |
files | m4/unistd_h.m4 |
diffstat | 1 files changed, 18 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
new file mode 100644 --- /dev/null +++ b/m4/unistd_h.m4 @@ -0,0 +1,18 @@ +# unistd_h.m4 serial 1 +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_UNISTD], +[ + dnl Prerequisites of lib/unistd.h. + AC_CHECK_HEADERS([unistd.h], [ + UNISTD_H='' + ], [ + UNISTD_H='unistd.h' + ]) + AC_SUBST(UNISTD_H) +])