diff options
author | tron <tron@pkgsrc.org> | 2001-04-04 07:08:28 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-04-04 07:08:28 +0000 |
commit | 0ae3ce8662c0d0aeaf2516a1b6d36f580a4d8d27 (patch) | |
tree | b9ed6f288aa552ff2538db753a1c9320c5a4cf0e /audio/libvorbis/patches/patch-ac | |
parent | 9d7573a7ca42a4c00986ba3720d9b6698f397080 (diff) | |
download | pkgsrc-0ae3ce8662c0d0aeaf2516a1b6d36f580a4d8d27.tar.gz |
Make this package work under Solaris. The patches were contributed by
Christian Weisgerber in private e-mail.
Diffstat (limited to 'audio/libvorbis/patches/patch-ac')
-rw-r--r-- | audio/libvorbis/patches/patch-ac | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/audio/libvorbis/patches/patch-ac b/audio/libvorbis/patches/patch-ac new file mode 100644 index 00000000000..2fcd4663932 --- /dev/null +++ b/audio/libvorbis/patches/patch-ac @@ -0,0 +1,66 @@ +$NetBSD: patch-ac,v 1.1 2001/04/04 07:08:29 tron Exp $ + +--- configure.orig Mon Feb 26 14:34:27 2001 ++++ configure Wed Apr 4 09:01:22 2001 +@@ -2235,6 +2235,61 @@ + echo "$ac_t""$ac_cv_func_memcmp_clean" 1>&6 + test $ac_cv_func_memcmp_clean = no && LIBOBJS="$LIBOBJS memcmp.${ac_objext}" + ++for ac_func in sqrtf ++do ++echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 ++echo "configure:2242: checking for $ac_func" >&5 ++if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then ++ echo $ac_n "(cached) $ac_c" 1>&6 ++else ++ cat > conftest.$ac_ext <<EOF ++#line 2247 "configure" ++#include "confdefs.h" ++/* System header to define __stub macros and hopefully few prototypes, ++ which can conflict with char $ac_func(); below. */ ++#include <assert.h> ++/* Override any gcc2 internal prototype to avoid an error. */ ++/* We use char because int might match the return type of a gcc2 ++ builtin and then its argument prototype would still apply. */ ++char $ac_func(); ++ ++int main() { ++ ++/* The GNU C library defines this for functions which it implements ++ to always fail with ENOSYS. Some functions are actually named ++ something starting with __ and the normal name is an alias. */ ++#if defined (__stub_$ac_func) || defined (__stub___$ac_func) ++choke me ++#else ++$ac_func(); ++#endif ++ ++; return 0; } ++EOF ++if { (eval echo configure:2270: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ++ rm -rf conftest* ++ eval "ac_cv_func_$ac_func=yes" ++else ++ echo "configure: failed program was:" >&5 ++ cat conftest.$ac_ext >&5 ++ rm -rf conftest* ++ eval "ac_cv_func_$ac_func=no" ++fi ++rm -f conftest* ++fi ++ ++if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then ++ echo "$ac_t""yes" 1>&6 ++ ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` ++ cat >> confdefs.h <<EOF ++#define $ac_tr_func 1 ++EOF ++ ++else ++ echo "$ac_t""no" 1>&6 ++fi ++done ++ + + + |