Fix the build with older GCC.

Reported by:	krismail
This commit is contained in:
Alexey Dokuchaev 2006-06-16 12:37:11 +00:00
parent 422b6e5c91
commit 8e886397bc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=165568

View File

@ -22,10 +22,23 @@ GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
post-extract:
@${REINPLACE_CMD} -e \
.include <bsd.port.pre.mk>
post-extract: .SILENT
${REINPLACE_CMD} -e \
's,libdir)/pkgconfig,prefix)/libdata/pkgconfig,' \
${WRKSRC}/Makefile.in
@${REINPLACE_CMD} '19323,19345d' ${WRKSRC}/configure
${REINPLACE_CMD} '19323,19345d' ${WRKSRC}/configure
${REINPLACE_CMD} -e '25s,^,#include <sys/types.h>,' \
${WRKSRC}/src/db-parse-context.c
.if defined(GCCVERSION)
. if ${GCCVERSION} < 030000
${REINPLACE_CMD} -e 's,\[\],[0],' ${WRKSRC}/src/db-itunes-parser.h
. endif
.else
. if ${OSVERSION} < 500035
${REINPLACE_CMD} -e 's,\[\],[0],' ${WRKSRC}/src/db-itunes-parser.h
. endif
.endif
.include <bsd.port.mk>
.include <bsd.port.post.mk>