Sun Feb 14 08:06:54 2016 UTC ()
Fix a small typo to ensure the name of the header file is correct.


(agc)
diff -r1.41 -r1.42 pkgsrc/pkgtools/pkg_install/files/configure
diff -r1.40 -r1.41 pkgsrc/pkgtools/pkg_install/files/configure.ac

cvs diff -r1.41 -r1.42 pkgsrc/pkgtools/pkg_install/files/configure (expand / switch to unified diff)

--- pkgsrc/pkgtools/pkg_install/files/configure 2015/10/15 13:31:27 1.41
+++ pkgsrc/pkgtools/pkg_install/files/configure 2016/02/14 08:06:54 1.42
@@ -4788,27 +4788,27 @@ do : @@ -4788,27 +4788,27 @@ do :
4788 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 4788 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
4789ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default 4789ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
4790" 4790"
4791if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : 4791if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
4792 cat >>confdefs.h <<_ACEOF 4792 cat >>confdefs.h <<_ACEOF
4793#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 4793#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
4794_ACEOF 4794_ACEOF
4795 4795
4796fi 4796fi
4797 4797
4798done 4798done
4799 4799
4800 4800
4801for ac_header in assert.h ctype.h dirent.h err.h errno.h fnctl.h \ 4801for ac_header in assert.h ctype.h dirent.h err.h errno.h fcntl.h \
4802 fnmatch.h glob.h grp.h inttypes.h limits.h pwd.h signal.h \ 4802 fnmatch.h glob.h grp.h inttypes.h limits.h pwd.h signal.h \
4803 stdarg.h stdio.h stdlib.h string.h time.h unistd.h vis.h 4803 stdarg.h stdio.h stdlib.h string.h time.h unistd.h vis.h
4804do : 4804do :
4805 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 4805 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
4806ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 4806ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
4807if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : 4807if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
4808 cat >>confdefs.h <<_ACEOF 4808 cat >>confdefs.h <<_ACEOF
4809#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 4809#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
4810_ACEOF 4810_ACEOF
4811 4811
4812fi 4812fi
4813 4813
4814done 4814done

cvs diff -r1.40 -r1.41 pkgsrc/pkgtools/pkg_install/files/configure.ac (expand / switch to unified diff)

--- pkgsrc/pkgtools/pkg_install/files/configure.ac 2015/10/15 13:31:27 1.40
+++ pkgsrc/pkgtools/pkg_install/files/configure.ac 2016/02/14 08:06:54 1.41
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1dnl $NetBSD: configure.ac,v 1.40 2015/10/15 13:31:27 sevan Exp $ 1dnl $NetBSD: configure.ac,v 1.41 2016/02/14 08:06:54 agc Exp $
2dnl Process this file with autoconf to produce a configure script. 2dnl Process this file with autoconf to produce a configure script.
3AC_PREREQ(2.52) 3AC_PREREQ(2.52)
4AC_INIT([pkg_install], [20090911], [joerg@NetBSD.org]) 4AC_INIT([pkg_install], [20090911], [joerg@NetBSD.org])
5AC_CONFIG_SRCDIR([lib/plist.c]) 5AC_CONFIG_SRCDIR([lib/plist.c])
6AC_CONFIG_HEADER(lib/config.h) 6AC_CONFIG_HEADER(lib/config.h)
7 7
8AC_CANONICAL_HOST 8AC_CANONICAL_HOST
9CANONICAL_HOST=$host 9CANONICAL_HOST=$host
10AC_SUBST(CANONICAL_HOST) 10AC_SUBST(CANONICAL_HOST)
11AC_SUBST(INCLUDES) 11AC_SUBST(INCLUDES)
12 12
13# Checks for programs. 13# Checks for programs.
14AC_PROG_MAKE_SET 14AC_PROG_MAKE_SET
@@ -54,27 +54,27 @@ AC_ARG_ENABLE([bootstrap], @@ -54,27 +54,27 @@ AC_ARG_ENABLE([bootstrap],
54 [AS_HELP_STRING([--enable-bootstrap], [build minimal version of pkg_install])], 54 [AS_HELP_STRING([--enable-bootstrap], [build minimal version of pkg_install])],
55 [bootstrap=yes], [bootstrap=]) 55 [bootstrap=yes], [bootstrap=])
56 56
57AC_SUBST(bootstrap) 57AC_SUBST(bootstrap)
58 58
59dnl Checks for large file support. 59dnl Checks for large file support.
60AC_SYS_LARGEFILE 60AC_SYS_LARGEFILE
61 61
62dnl Checks for libraries. 62dnl Checks for libraries.
63AC_CHECK_LIB(db, __db185_open, , AC_SEARCH_LIBS(dbopen, [db db1])) 63AC_CHECK_LIB(db, __db185_open, , AC_SEARCH_LIBS(dbopen, [db db1]))
64 64
65dnl Checks for header files. 65dnl Checks for header files.
66AC_HEADER_STDC 66AC_HEADER_STDC
67AC_CHECK_HEADERS([assert.h ctype.h dirent.h err.h errno.h fnctl.h \ 67AC_CHECK_HEADERS([assert.h ctype.h dirent.h err.h errno.h fcntl.h \
68 fnmatch.h glob.h grp.h inttypes.h limits.h pwd.h signal.h \ 68 fnmatch.h glob.h grp.h inttypes.h limits.h pwd.h signal.h \
69 stdarg.h stdio.h stdlib.h string.h time.h unistd.h vis.h]) 69 stdarg.h stdio.h stdlib.h string.h time.h unistd.h vis.h])
70AC_CHECK_HEADERS([sys/cdefs.h sys/file.h sys/ioctl.h sys/queue.h \ 70AC_CHECK_HEADERS([sys/cdefs.h sys/file.h sys/ioctl.h sys/queue.h \
71 sys/stat.h sys/time.h sys/types.h sys/utsname.h sys/wait.h]) 71 sys/stat.h sys/time.h sys/types.h sys/utsname.h sys/wait.h])
72 72
73# Checks for library functions. 73# Checks for library functions.
74AC_CHECK_FUNCS([vfork]) 74AC_CHECK_FUNCS([vfork])
75 75
76AC_SEARCH_LIBS([gethostbyname], [nsl network]) 76AC_SEARCH_LIBS([gethostbyname], [nsl network])
77AC_SEARCH_LIBS([socket], 77AC_SEARCH_LIBS([socket],
78 [socket], 78 [socket],
79 [], 79 [],
80 [AC_CHECK_LIB([socket], 80 [AC_CHECK_LIB([socket],