1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00

Fix build on 4.x (stdint.h -> inttypes.h)

Reported by:	kris
This commit is contained in:
Sam Lawrance 2005-11-13 05:42:06 +00:00
parent a6b71fa9f9
commit dd9a2d2142
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=148079

View File

@ -22,6 +22,7 @@ USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_PERL5_BUILD= yes
USE_QT_VER= 3
USE_REINPLACE= yes
CONFIGURE_ENV+= QTDIR=${X11BASE} \
QMAKESPEC=${LOCALBASE}/share/qt/mkspecs/freebsd-g++ \
@ -29,4 +30,11 @@ CONFIGURE_ENV+= QTDIR=${X11BASE} \
MAKE_ARGS+= QTDIR=${X11BASE} \
QMAKESPEC=${LOCALBASE}/share/qt/mkspecs/freebsd-g++
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
post-patch:
.if ${OSVERSION} < 500000
${REINPLACE_CMD} 's/stdint\.h/inttypes.h/' ${WRKSRC}/lib/spandsp/plc.h
.endif
.include <bsd.port.post.mk>