pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/audio/lame Use a compile test at configure to check fo...
details: https://anonhg.NetBSD.org/pkgsrc/rev/7655b1e1bc40
branches: trunk
changeset: 351969:7655b1e1bc40
user: maya <maya%pkgsrc.org@localhost>
date: Fri Sep 02 14:07:43 2016 +0000
description:
Use a compile test at configure to check for SSE, not just the existence
of a header.
Default compiler setup in netbsd disables SSE, we cannot compile stuff
that uses it - but we do have the headers for it.
Allows us to get rid of SSE disabling for sunpro compiler, it should
fail the compile test as well.
Patch from FreeBSD (pointed out by John D. Baker)
Fixes PR pkg/51209: audio/lame build fails on i386-7.99.30
diffstat:
audio/lame/Makefile | 6 +---
audio/lame/distinfo | 4 +-
audio/lame/patches/patch-configure | 51 +++++++++++++++++++++++++++++++++----
3 files changed, 48 insertions(+), 13 deletions(-)
diffs (120 lines):
diff -r c796ec5ca615 -r 7655b1e1bc40 audio/lame/Makefile
--- a/audio/lame/Makefile Fri Sep 02 14:05:13 2016 +0000
+++ b/audio/lame/Makefile Fri Sep 02 14:07:43 2016 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.78 2015/08/18 07:31:02 wiz Exp $
+# $NetBSD: Makefile,v 1.79 2016/09/02 14:07:43 maya Exp $
DISTNAME= lame-3.99.5
PKGREVISION= 3
@@ -34,9 +34,5 @@
CONFIGURE_ARGS+= --enable-nasm
.endif
-.if !empty(PKGSRC_COMPILER:Msunpro)
-CONFIGURE_ENV+= ac_cv_header_xmmintrin_h=no
-.endif
-
.include "../../mk/curses.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff -r c796ec5ca615 -r 7655b1e1bc40 audio/lame/distinfo
--- a/audio/lame/distinfo Fri Sep 02 14:05:13 2016 +0000
+++ b/audio/lame/distinfo Fri Sep 02 14:07:43 2016 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.26 2015/11/03 01:12:36 agc Exp $
+$NetBSD: distinfo,v 1.27 2016/09/02 14:07:43 maya Exp $
SHA1 (lame-3.99.5.tar.gz) = 03a0bfa85713adcc6b3383c12e2cc68a9cfbf4c4
RMD160 (lame-3.99.5.tar.gz) = 8a0990af918b635cc79eb27a3beafc6c0ee13a9f
@@ -6,7 +6,7 @@
Size (lame-3.99.5.tar.gz) = 1445348 bytes
SHA1 (patch-ab) = e356b7614cfd4a2012f66926fe58a717dcc130f3
SHA1 (patch-ad) = fa14817f765a61f046a96a1b556e2c8203fc27ad
-SHA1 (patch-configure) = bc2243e364a2a6397cc0d09129969274b88f6b98
+SHA1 (patch-configure) = 36615887c54ff229c65f0023f4f392cc4c4b282b
SHA1 (patch-configure.in) = 6ca01d610b94a402f2c2b351aa901a5072f3a0cb
SHA1 (patch-frontend_get__audio.c) = c6df7a003d07e916c5129d45322c708f09b524e8
SHA1 (patch-libmp3lame_lame.c) = bdc403ff8a1a7d5a6082b4d214fd43df99b1344e
diff -r c796ec5ca615 -r 7655b1e1bc40 audio/lame/patches/patch-configure
--- a/audio/lame/patches/patch-configure Fri Sep 02 14:05:13 2016 +0000
+++ b/audio/lame/patches/patch-configure Fri Sep 02 14:07:43 2016 +0000
@@ -1,10 +1,49 @@
-$NetBSD: patch-configure,v 1.1 2013/10/10 10:49:30 roy Exp $
+$NetBSD: patch-configure,v 1.2 2016/09/02 14:07:43 maya Exp $
initscr is a curses function, not termcap.
---- configure.orig 2013-10-10 10:45:38.000000000 +0000
+--- configure.orig 2012-02-28 18:54:37.000000000 +0000
+++ configure
-@@ -13602,9 +13602,9 @@ fi
+@@ -11922,7 +11922,6 @@ for ac_header in \
+ sys/soundcard.h \
+ sys/time.h \
+ unistd.h \
+- xmmintrin.h \
+ linux/soundcard.h
+ do :
+ as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
+@@ -11936,6 +11935,30 @@ fi
+
+ done
+
++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking working SSE intrinsics" >&5
++$as_echo_n "checking working SSE intrinsics... " >&6; }
++cat confdefs.h - <<_ACEOF >conftest.$ac_ext
++/* end confdefs.h. */
++#include <xmmintrin.h>
++int
++main ()
++{
++_mm_sfence();
++ ;
++ return 0;
++}
++_ACEOF
++if ac_fn_c_try_compile "$LINENO"; then :
++
++$as_echo "#define HAVE_XMMINTRIN_H 1" >>confdefs.h
++
++ ac_cv_header_xmmintrin_h=yes
++else
++ ac_cv_header_xmmintrin_h=no
++fi
++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${ac_cv_header_xmmintrin_h}" >&5
++$as_echo "${ac_cv_header_xmmintrin_h}" >&6; }
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5
+ $as_echo_n "checking for an ANSI C-conforming const... " >&6; }
+@@ -13602,9 +13625,9 @@ fi
done
@@ -17,7 +56,7 @@
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
-@@ -13618,33 +13618,33 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
+@@ -13618,33 +13641,33 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
#ifdef __cplusplus
extern "C"
#endif
@@ -61,7 +100,7 @@
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
-@@ -13658,33 +13658,33 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
+@@ -13658,33 +13681,33 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
#ifdef __cplusplus
extern "C"
#endif
@@ -105,7 +144,7 @@
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
-@@ -13698,27 +13698,27 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
+@@ -13698,27 +13721,27 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_
#ifdef __cplusplus
extern "C"
#endif
Home |
Main Index |
Thread Index |
Old Index