1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

- Fix build on -CURRENT

- Pet portlint

Reported by:	pointyhat via kris
This commit is contained in:
Roman Bogorodskiy 2006-04-16 14:10:33 +00:00
parent 1c64e698a2
commit 638d2d94c3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=159702

View File

@ -15,7 +15,6 @@ MAINTAINER= novel@FreeBSD.org
COMMENT= PowerPC emulator
USE_XLIB= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
PKGMESSAGE= ${WRKDIR}/pkg-message
@ -58,7 +57,7 @@ CONFIGURE_ARGS+= --disable-debug
.include <bsd.port.pre.mk>
.if ${ARCH} == "ia64"
BROKEN= "Internal compiler error on ia64"
BROKEN= Internal compiler error on ia64
.endif
# jitc_x86 is avaible only on x86
@ -76,7 +75,7 @@ CONFIGURE_ARGS+= --enable-cpu=generic
.if ${OSVERSION} < 503001
#USE_GCC= 3.4
#CFLAGS+= -DFREEBSD_MB_SUPPORT
BROKEN= "Missing truncf()"
BROKEN= Missing truncf()
.endif
pre-everything::
@ -89,6 +88,11 @@ pre-everything::
post-extract:
@${REINPLACE_CMD} -e 's|-g -O2||;s|-O2||' ${WRKSRC}/configure
pre-configure:
.if ${OSVERSION} > 700000
@${REINPLACE_CMD} -e 's|clock_settime\ ()|foobar()|' ${WRKSRC}/configure
.endif
post-configure:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/Makefile
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/src/Makefile