diff options
author | agc <agc@pkgsrc.org> | 2001-12-30 21:12:11 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-12-30 21:12:11 +0000 |
commit | 8b7324bf6197221dcb5e2b27195c58a6300b1822 (patch) | |
tree | dd1745321c213edc3ce1478312796bd42b11d2e8 /databases | |
parent | 5d8bc58d60c7cb963fa04d6a10ecea82739c98f0 (diff) | |
download | pkgsrc-8b7324bf6197221dcb5e2b27195c58a6300b1822.tar.gz |
Don't use c99 uint*_t types, since they're not defined on 1.5.2 and
previous releases. Instead, fall back on the trusty u_int*_t types
from <sys/types.h>
Fixes a problem uncovered on a recent 1.5.2 bulk build.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/sqlite/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/sqlite/Makefile b/databases/sqlite/Makefile index 2462eaca923..3bba022bbd0 100644 --- a/databases/sqlite/Makefile +++ b/databases/sqlite/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/12/15 22:21:22 reinoud Exp $ +# $NetBSD: Makefile,v 1.7 2001/12/30 21:12:11 agc Exp $ DISTNAME= sqlite-2.1.7 CATEGORIES= databases @@ -19,8 +19,8 @@ CONFIGURE_SCRIPT= ../sqlite/configure CONFIGURE_ARGS+= --without-tcl CONFIGURE_ENV+= config_TARGET_READLINE_INC="-I${BUILDLINK_DIR}/include" -CFLAGS+= -DUINT32_TYPE=uint32_t -DUINT16_TYPE=uint16_t \ - -DUINT8_TYPE=uint8_t -DINTPTR_TYPE=long +CFLAGS+= -DUINT32_TYPE=u_int32_t -DUINT16_TYPE=u_int16_t \ + -DUINT8_TYPE=u_int8_t -DINTPTR_TYPE=long post-extract: ${MKDIR} ${WRKSRC} |