- fix a compatibility function (unbreaks games/flightgear,

games/trigger and probably several others as well)
  - do not overwrite CFLAGS (in case the user wants to pass a custom
    CFLAGS as a make argument)
  - bump PORTREVISION

Submitted by:	jylefort
This commit is contained in:
Oliver Lehmann 2006-08-07 15:07:19 +00:00
parent 92d1c2a924
commit 426a66c39b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=169999
2 changed files with 13 additions and 1 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= freealut
PORTVERSION= 1.1.0
PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://www.openal.org/openal_webstf/downloads/ \
http://aedion.de/openal/
@ -17,7 +18,7 @@ COMMENT= The OpenAL Utility Toolkit
LIB_DEPENDS= openal.0:${PORTSDIR}/audio/openal
GNU_CONFIGURE= yes
CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
USE_GMAKE= yes
USE_GNOME= pkgconfig gnomehack
INSTALLS_SHLIB= yes

View File

@ -0,0 +1,11 @@
--- src/alutLoader.c.orig Sun Aug 6 19:00:08 2006
+++ src/alutLoader.c Sun Aug 6 19:01:10 2006
@@ -474,7 +474,7 @@
/* ToDo: Can we do something less insane than passing 0x7FFFFFFF? */
stream = _alutInputStreamConstructFromMemory (buffer, 0x7FFFFFFF);
- _alutLoadMemoryFromInputStream (stream, format, size, &freq);
+ *data = _alutLoadMemoryFromInputStream (stream, format, size, &freq);
if (*data == NULL)
{
return;