diff options
author | edwin <edwin@FreeBSD.org> | 2003-10-04 04:53:13 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-10-04 04:53:13 +0000 |
commit | e315f50d5c71cafe91ee2db1a2c876f073c80996 (patch) | |
tree | c3bea6c537da060ffba2c8101c4c280166487131 /audio | |
parent | 9ae9ecf1b8bbbffde9e1fd854dbbeebce64f2f3f (diff) | |
download | FreeBSD-ports-e315f50d5c71cafe91ee2db1a2c876f073c80996.zip FreeBSD-ports-e315f50d5c71cafe91ee2db1a2c876f073c80996.tar.gz |
pthread fix for audio/openal on -current
-pthread doesn't work anymore, this fixes up configure so
audio/openal builds.
PR: ports/57282
Submitted by: Erik Greenwald <erik@smluc.org>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/openal/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/audio/openal/Makefile b/audio/openal/Makefile index 15b7aff..ccf5cc9 100644 --- a/audio/openal/Makefile +++ b/audio/openal/Makefile @@ -20,6 +20,10 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/linux GNU_CONFIGURE= yes USE_GMAKE= yes INSTALLS_SHLIB= yes +USE_REINPLACE= yes + +post-patch: + @${REINPLACE_CMD} -e "s/-pthread/${PTHREAD_LIBS}/" ${WRKSRC}/configure pre-install: @${INSTALL_DATA} ${WRKSRC}/doc/openal.info ${PREFIX}/info |