diff options
author | agc <agc> | 2016-02-14 08:06:54 +0000 |
---|---|---|
committer | agc <agc> | 2016-02-14 08:06:54 +0000 |
commit | 0cf9c5f986e5287865f81612c962d1d81952d656 (patch) | |
tree | 5e77d036799a8c549d96c6e98e28044a8403e10b | |
parent | d4ae77b17761e7a075c1feaaaa4a7c1d612fdf43 (diff) | |
download | pkgsrc-0cf9c5f986e5287865f81612c962d1d81952d656.tar.gz |
Fix a small typo to ensure the name of the header file is correct.
-rwxr-xr-x | pkgtools/pkg_install/files/configure | 2 | ||||
-rw-r--r-- | pkgtools/pkg_install/files/configure.ac | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkg_install/files/configure b/pkgtools/pkg_install/files/configure index 9265af2e526..21579c95964 100755 --- a/pkgtools/pkg_install/files/configure +++ b/pkgtools/pkg_install/files/configure @@ -4798,7 +4798,7 @@ fi done -for ac_header in assert.h ctype.h dirent.h err.h errno.h fnctl.h \ +for ac_header in assert.h ctype.h dirent.h err.h errno.h fcntl.h \ fnmatch.h glob.h grp.h inttypes.h limits.h pwd.h signal.h \ stdarg.h stdio.h stdlib.h string.h time.h unistd.h vis.h do : diff --git a/pkgtools/pkg_install/files/configure.ac b/pkgtools/pkg_install/files/configure.ac index 462facee833..2ec1ab6c2be 100644 --- a/pkgtools/pkg_install/files/configure.ac +++ b/pkgtools/pkg_install/files/configure.ac @@ -1,4 +1,4 @@ -dnl $NetBSD: configure.ac,v 1.40 2015/10/15 13:31:27 sevan Exp $ +dnl $NetBSD: configure.ac,v 1.41 2016/02/14 08:06:54 agc Exp $ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.52) AC_INIT([pkg_install], [20090911], [joerg@NetBSD.org]) @@ -64,7 +64,7 @@ AC_CHECK_LIB(db, __db185_open, , AC_SEARCH_LIBS(dbopen, [db db1])) dnl Checks for header files. AC_HEADER_STDC -AC_CHECK_HEADERS([assert.h ctype.h dirent.h err.h errno.h fnctl.h \ +AC_CHECK_HEADERS([assert.h ctype.h dirent.h err.h errno.h fcntl.h \ fnmatch.h glob.h grp.h inttypes.h limits.h pwd.h signal.h \ stdarg.h stdio.h stdlib.h string.h time.h unistd.h vis.h]) AC_CHECK_HEADERS([sys/cdefs.h sys/file.h sys/ioctl.h sys/queue.h \ |