pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/pkgtools/autoswc 1.4: Add a bunch of types, symbols, a...
details: https://anonhg.NetBSD.org/pkgsrc/rev/dd996e6469e7
branches: trunk
changeset: 482199:dd996e6469e7
user: tv <tv%pkgsrc.org@localhost>
date: Thu Oct 21 21:30:45 2004 +0000
description:
1.4: Add a bunch of types, symbols, and headers to the checks based on
some builds I did recently. (Only including those things which should be
in the C library; avoiding things such as the resolver -- which may be in
libbind -- or TCP/IP headers and symbols.)
diffstat:
pkgtools/autoswc/Makefile | 6 +-
pkgtools/autoswc/files/configure.ac | 58 +++++++++++++++++++++++++++++++++++-
2 files changed, 59 insertions(+), 5 deletions(-)
diffs (198 lines):
diff -r f7e5e73d9dcd -r dd996e6469e7 pkgtools/autoswc/Makefile
--- a/pkgtools/autoswc/Makefile Thu Oct 21 21:27:29 2004 +0000
+++ b/pkgtools/autoswc/Makefile Thu Oct 21 21:30:45 2004 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2004/10/15 20:00:57 tv Exp $
+# $NetBSD: Makefile,v 1.7 2004/10/21 21:30:45 tv Exp $
-DISTNAME= autoswc-1.3
+DISTNAME= autoswc-1.4
CATEGORIES= pkgtools sysutils
MASTER_SITES= # empty
DISTFILES= # empty
@@ -8,7 +8,7 @@
MAINTAINER= jmmv%NetBSD.org@localhost
COMMENT= Generates system wide cache files for GNU autoconf
-DEPENDS= autoconf>=2.59:../../devel/autoconf
+DEPENDS+= autoconf>=2.59:../../devel/autoconf
DEPENDS+= automake>=1.8.2:../../devel/automake
DEPENDS+= libtool-base>=1.5.2:../../devel/libtool-base
diff -r f7e5e73d9dcd -r dd996e6469e7 pkgtools/autoswc/files/configure.ac
--- a/pkgtools/autoswc/files/configure.ac Thu Oct 21 21:27:29 2004 +0000
+++ b/pkgtools/autoswc/files/configure.ac Thu Oct 21 21:30:45 2004 +0000
@@ -1,4 +1,4 @@
-dnl $NetBSD: configure.ac,v 1.3 2004/02/29 17:49:09 jmmv Exp $
+dnl $NetBSD: configure.ac,v 1.4 2004/10/21 21:30:45 tv Exp $
dnl -----------------------------------------------------------------------
@@ -50,21 +50,26 @@
AC_CHECK_HEADERS([sys/cdefs.h \
sys/param.h \
sys/types.h \
+ sys/file.h \
sys/ioctl.h \
sys/mount.h \
sys/resource.h \
+ sys/socket.h \
sys/stat.h \
sys/statvfs.h \
sys/sysctl.h \
+ sys/times.h \
sys/utsname.h \
sys/varargs.h \
sys/vfs.h \
+ netinet/in.h \
argz.h \
assert.h \
ctype.h \
err.h \
fcntl.h \
fstab.h \
+ grp.h \
inttypes.h \
libgen.h \
limits.h \
@@ -136,8 +141,10 @@
__argz_next \
__argz_stringify \
__fsetlocking \
+ asprintf \
basename \
bzero \
+ confstr \
connect \
dirname \
dup2 \
@@ -145,6 +152,7 @@
errx \
feof_unlocked \
fgets_unlocked \
+ fnmatch \
getc_unlocked \
getcwd \
getdelim \
@@ -153,13 +161,26 @@
geteuid \
getgid \
gethostbyname \
+ gethostname \
getmode \
getprogname \
+ getrlimit \
+ getrusage \
gettimeofday \
getuid \
inet_pton \
+ isascii \
+ isblank \
+ isdigit \
+ isgraph \
+ isinf \
+ isprint \
+ isspace \
+ isxdigit \
+ killpg \
lockf \
lseek64 \
+ lstat \
memchr \
memcpy \
memmove \
@@ -173,19 +194,27 @@
mktemp \
munmap \
open64 \
+ pathconf \
poll \
putenv \
readdir_r \
+ readlink \
remove \
+ rename \
+ sbrk \
+ select \
setegid \
setenv \
seteuid \
+ setlinebuf \
setmode \
setprogname \
setresgid \
setresuid \
+ setvbuf \
shmat \
sigaction \
+ siginterrupt \
sigset \
snprintf \
socket \
@@ -203,11 +232,25 @@
strncat \
strncpy \
strndup \
+ strpbrk \
strspn \
strstr \
+ strtol \
+ strtoll \
strtoul \
+ strtoull \
+ strtoimax \
+ strtoumax \
+ sysconf \
+ times \
tsearch \
+ ttyname \
+ tzset \
+ ulimit \
uname \
+ unsetenv \
+ utime \
+ utimes \
vasprintf \
vsnprintf \
waitpid \
@@ -223,22 +266,31 @@
int32_t,
int64_t,
int8_t,
+ intmax_t,
+ long long,
mode_t,
off_t,
ptrdiff_t,
+ quad_t,
rlim_t,
sig_t,
size_t,
ssize_t,
+ time_t,
+ u_int,
u_int16_t,
u_int32_t,
u_int64_t,
u_int8_t,
+ u_long,
+ u_quad_t,
uid_t,
uint16_t,
uint32_t,
uint64_t,
- uint8_t])
+ uint8_t,
+ uintmax_t,
+ unsigned long long])
dnl -----------------------------------------------------------------------
@@ -248,5 +300,7 @@
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(long long)
+AC_CHECK_SIZEOF(float)
+AC_CHECK_SIZEOF(double)
dnl vim: syntax=config:expandtab:shiftwidth=4:softtabstop=4
Home |
Main Index |
Thread Index |
Old Index