diff options
author | jlam <jlam@pkgsrc.org> | 2004-08-21 05:06:41 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-08-21 05:06:41 +0000 |
commit | 6985e27f2714861edd2878ae3e2ad6122631c1d5 (patch) | |
tree | a8c6cbafe360091b1e35b627a1080d641aed0611 /archivers/pax/files | |
parent | 3f57bcbb36d92a16dbeb9efe7a7b00934cee7ab7 (diff) | |
download | pkgsrc-6985e27f2714861edd2878ae3e2ad6122631c1d5.tar.gz |
Check for a few more system headers after the update to pax-20040804.
Diffstat (limited to 'archivers/pax/files')
-rw-r--r-- | archivers/pax/files/config.h.in | 6 | ||||
-rwxr-xr-x | archivers/pax/files/configure | 11 | ||||
-rw-r--r-- | archivers/pax/files/configure.ac | 10 |
3 files changed, 17 insertions, 10 deletions
diff --git a/archivers/pax/files/config.h.in b/archivers/pax/files/config.h.in index 2ef31ef8d02..973056817bc 100644 --- a/archivers/pax/files/config.h.in +++ b/archivers/pax/files/config.h.in @@ -101,6 +101,9 @@ /* Define to 1 if you have the <sys/ioctl.h> header file. */ #undef HAVE_SYS_IOCTL_H +/* Define to 1 if you have the <sys/mman.h> header file. */ +#undef HAVE_SYS_MMAN_H + /* Define to 1 if you have the <sys/mtio.h> header file. */ #undef HAVE_SYS_MTIO_H @@ -137,6 +140,9 @@ /* Define to 1 if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H +/* Define to 1 if you have the <util.h> header file. */ +#undef HAVE_UTIL_H + /* Define to 1 if you have the <vis.h> header file. */ #undef HAVE_VIS_H diff --git a/archivers/pax/files/configure b/archivers/pax/files/configure index 29ee50fd6b4..d95315fd77e 100755 --- a/archivers/pax/files/configure +++ b/archivers/pax/files/configure @@ -2942,10 +2942,10 @@ done -for ac_header in ctype.h errno.h err.h fnctl.h fts.h getopt.h grp.h \ - inttypes.h limits.h netdb.h paths.h pwd.h regexp.h regex.h rmt.h \ - signal.h stdarg.h stddef.h stdio.h stdlib.h strings.h string.h \ - time.h tzfile.h unistd.h vis.h +for ac_header in ctype.h err.h errno.h fnctl.h fts.h getopt.h grp.h \ + limits.h netdb.h paths.h pwd.h regex.h regexp.h rmt.h \ + signal.h stdarg.h stddef.h stdio.h stdlib.h string.h strings.h \ + time.h tzfile.h unistd.h util.h vis.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` if eval "test \"\${$as_ac_Header+set}\" = set"; then @@ -3105,7 +3105,8 @@ done -for ac_header in sys/cdefs.h sys/ioctl.h sys/mtio.h sys/param.h \ + +for ac_header in sys/cdefs.h sys/ioctl.h sys/mman.h sys/mtio.h sys/param.h \ sys/resource.h sys/stat.h sys/tape.h sys/time.h sys/types.h sys/uio.h \ sys/wait.h do diff --git a/archivers/pax/files/configure.ac b/archivers/pax/files/configure.ac index ca233967660..b1deb9b353f 100644 --- a/archivers/pax/files/configure.ac +++ b/archivers/pax/files/configure.ac @@ -14,11 +14,11 @@ AC_CHECK_LIB(util, fparseln) # Checks for header files. AC_HEADER_STDC -AC_CHECK_HEADERS([ctype.h errno.h err.h fnctl.h fts.h getopt.h grp.h \ - inttypes.h limits.h netdb.h paths.h pwd.h regexp.h regex.h rmt.h \ - signal.h stdarg.h stddef.h stdio.h stdlib.h strings.h string.h \ - time.h tzfile.h unistd.h vis.h]) -AC_CHECK_HEADERS([sys/cdefs.h sys/ioctl.h sys/mtio.h sys/param.h \ +AC_CHECK_HEADERS([ctype.h err.h errno.h fnctl.h fts.h getopt.h grp.h \ + limits.h netdb.h paths.h pwd.h regex.h regexp.h rmt.h \ + signal.h stdarg.h stddef.h stdio.h stdlib.h string.h strings.h \ + time.h tzfile.h unistd.h util.h vis.h]) +AC_CHECK_HEADERS([sys/cdefs.h sys/ioctl.h sys/mman.h sys/mtio.h sys/param.h \ sys/resource.h sys/stat.h sys/tape.h sys/time.h sys/types.h sys/uio.h \ sys/wait.h]) AC_CHECK_MEMBERS([struct stat.st_flags],,, [#include <sys/stat.h>]) |