diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-11-16 16:48:51 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-11-16 16:48:51 +0000 |
commit | f450f2fb5e50bb1258ab624c5b677b45edb6adb9 (patch) | |
tree | 967bea07fe71ed70b5b0a8ec86786f46b4aa501b | |
parent | Update to 0.4 (diff) |
- Update to version 20031116
* src/al_debug.c: Fix an implicit declaration: the man page on
linux says that vsnprintf() is a GNU extension, so #define
_GNU_SOURCE
* src/arch/sdl/sdl.c: #include <string.h> to avoid implicit
declaration of memcpy()/memset()
* audioconvert/ac_freq.c For the first sample in a chunk to be
resampled*2, use dampened extrapolation instead of
interpolation to somewhat reduce 'clicking'.
* Michel Danzer's big endian patch
* audioconvert/ac_freq.c Added Adam Moss's patch to improve
fidelity of low-sampled sounds in higher sampling-rate
environments.
PR: 59340
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=94105
-rw-r--r-- | audio/openal/Makefile | 3 | ||||
-rw-r--r-- | audio/openal/distinfo | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/audio/openal/Makefile b/audio/openal/Makefile index d05f9db9170a..ae62406ed926 100644 --- a/audio/openal/Makefile +++ b/audio/openal/Makefile @@ -6,7 +6,7 @@ # PORTNAME= openal -PORTVERSION= 20030724 +PORTVERSION= 20031116 CATEGORIES= audio MASTER_SITES= http://math.smsu.edu/~erik/files/fbsd/\ http://www.smluc.org/~erik/files/fbsd/ @@ -18,6 +18,7 @@ INFO= openal WRKSRC= ${WRKDIR}/${DISTNAME}/linux GNU_CONFIGURE= yes +CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_GMAKE= yes INSTALLS_SHLIB= yes USE_REINPLACE= yes diff --git a/audio/openal/distinfo b/audio/openal/distinfo index 9f4c813c8574..8d099dca1fea 100644 --- a/audio/openal/distinfo +++ b/audio/openal/distinfo @@ -1 +1 @@ -MD5 (openal-20030724.tar.gz) = 1b0aaabcbe2d35f4c8782257163b3dec +MD5 (openal-20031116.tar.gz) = 07eb1961ed48200f90fcf5048e6ac067 |