diff options
author | dholland <dholland> | 2012-04-20 07:24:39 +0000 |
---|---|---|
committer | dholland <dholland> | 2012-04-20 07:24:39 +0000 |
commit | 4713fc27026eed99dbbcbdecef670317cd8c72b0 (patch) | |
tree | 4deec320cce342b98939f5aa84a99fda2ff162d8 /devel/opal | |
parent | 3cd81dcc3e5665a6382cf82968e7cec2913855eb (diff) | |
download | pkgsrc-4713fc27026eed99dbbcbdecef670317cd8c72b0.tar.gz |
Ignore the result of the configure test that checks if certain
arguments to speex are floats or ints. They are, as far as I can tell,
always ints in pkgsrc. This test has been getting the wrong answer in
my test-build environment, leading to build failure later on.
Admittedly the test gets the wrong answer because I've been having the
wrappers insert -Wall -Wno-error, but that has value (as does being
able to test-build this and ekiga) and as best I can tell the test is
pointless.
Diffstat (limited to 'devel/opal')
-rw-r--r-- | devel/opal/distinfo | 4 | ||||
-rw-r--r-- | devel/opal/patches/patch-configure | 18 |
2 files changed, 19 insertions, 3 deletions
diff --git a/devel/opal/distinfo b/devel/opal/distinfo index a24f7b17cf5..79e49276a69 100644 --- a/devel/opal/distinfo +++ b/devel/opal/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.10 2012/04/19 12:44:06 hans Exp $ +$NetBSD: distinfo,v 1.11 2012/04/20 07:24:39 dholland Exp $ SHA1 (opal-3.6.6.tar.bz2) = bd5e3907faf96db884a64dacdedb2259aca30cd3 RMD160 (opal-3.6.6.tar.bz2) = b639709f7e28ce607478bddc41d171e0e54bee9f Size (opal-3.6.6.tar.bz2) = 7062422 bytes -SHA1 (patch-configure) = 96aa5856f356a9e3a2b133593c63dd2effecc5b7 +SHA1 (patch-configure) = e478024b9f80d08e5d3cfb85f9a825a12a7a4ec2 SHA1 (patch-configure.ac) = 0ca73eeab0cb4cd8b1da85cf285e1e6edb596820 SHA1 (patch-plugins_configure) = dcddc6200e457e0a2d1434036f5ad029dca5fbcf SHA1 (patch-plugins_configure.ac) = 559fd67e0813a56b1ed13a020acb600ac706d81d diff --git a/devel/opal/patches/patch-configure b/devel/opal/patches/patch-configure index 1b901056a42..bddbdd64a1c 100644 --- a/devel/opal/patches/patch-configure +++ b/devel/opal/patches/patch-configure @@ -1,4 +1,11 @@ -$NetBSD: patch-configure,v 1.1 2011/12/04 22:06:04 marino Exp $ +$NetBSD: patch-configure,v 1.2 2012/04/20 07:24:39 dholland Exp $ + +- dragonfly support + +- ignore result of opal_speexdsp_float test as it is not robust. +AFAICT in pkgsrc it should always produce "no", but it doesn't always, +and this leads to build failure later. + --- configure.orig 2009-09-22 00:58:43.000000000 +0000 +++ configure @@ -28,3 +35,12 @@ $NetBSD: patch-configure,v 1.1 2011/12/04 22:06:04 marino Exp $ { echo "$as_me:$LINENO: checking for dlopen in -lc" >&5 echo $ECHO_N "checking for dlopen in -lc... $ECHO_C" >&6; } if test "${ac_cv_lib_c_dlopen+set}" = set; then +@@ -9391,7 +9392,7 @@ echo $ECHO_N "checking Speex has float.. + echo "${ECHO_T}$opal_speexdsp_float" >&6; } + + +- if test $opal_speexdsp_float = yes; then ++ if false && test $opal_speexdsp_float = yes; then + + cat >>confdefs.h <<\_ACEOF + #define OPAL_SPEEX_FLOAT_NOISE 1 |