diff options
author | wiz <wiz@pkgsrc.org> | 2006-07-03 23:31:04 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-07-03 23:31:04 +0000 |
commit | 6ee07c6e2131aa66007c9b14f87e5c507cc14d98 (patch) | |
tree | dba96f97ddb70946ebe610c5492be8d91108ac2d /audio/libvisual0.2-plugins/patches | |
parent | d9178917ab8dea6e6ff6f939281791575b881e53 (diff) | |
download | pkgsrc-6ee07c6e2131aa66007c9b14f87e5c507cc14d98.tar.gz |
Reimport of libvisual-plugins under versioned directory name.
Plugins for the packages that use the libvisual0.2 package.
Diffstat (limited to 'audio/libvisual0.2-plugins/patches')
-rw-r--r-- | audio/libvisual0.2-plugins/patches/patch-aa | 22 | ||||
-rw-r--r-- | audio/libvisual0.2-plugins/patches/patch-ab | 19 |
2 files changed, 41 insertions, 0 deletions
diff --git a/audio/libvisual0.2-plugins/patches/patch-aa b/audio/libvisual0.2-plugins/patches/patch-aa new file mode 100644 index 00000000000..198df20e9f3 --- /dev/null +++ b/audio/libvisual0.2-plugins/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1.1.1 2006/07/03 23:31:04 wiz Exp $ + +--- configure.orig 2005-01-24 15:43:45.000000000 +0100 ++++ configure 2005-06-19 19:08:03.000000000 +0200 +@@ -1882,7 +1882,7 @@ + AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +-MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} ++MAKEINFO= + + + AMTAR=${AMTAR-"${am_missing_run}tar"} +@@ -20355,7 +20355,7 @@ + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lGL $LIBS" ++LIBS="-lGL -lXext -lm $LIBS" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF diff --git a/audio/libvisual0.2-plugins/patches/patch-ab b/audio/libvisual0.2-plugins/patches/patch-ab new file mode 100644 index 00000000000..d1f47b65903 --- /dev/null +++ b/audio/libvisual0.2-plugins/patches/patch-ab @@ -0,0 +1,19 @@ +$NetBSD: patch-ab,v 1.1.1.1 2006/07/03 23:31:04 wiz Exp $ + +--- plugins/actor/pseudotoad_flower/notch.c.orig Thu Jun 16 22:50:58 2005 ++++ plugins/actor/pseudotoad_flower/notch.c Thu Jun 16 22:52:05 2005 +@@ -25,12 +25,13 @@ + #include <stdio.h> + #include <math.h> + #include <string.h> ++#include <stdlib.h> + + #include "notch.h" + + NOTCH_FILTER * init_notch(float cutoff) { + NOTCH_FILTER * l=malloc(sizeof(NOTCH_FILTER)); +- float steep = 0.99;; ++ float steep = 0.99; + float r = steep * 0.99609375; + float f = cos(M_PI * cutoff / SAMPLING_RATE); + l->cutoff = cutoff; |