Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
| Navigation: |
|
Lists:
gentoo-commits:
< Prev
By Thread
Next >
< Prev
By Date
Next >
|
| Headers: |
|
To:
|
gentoo-commits@g.o
|
|
From:
|
"Alexis Ballier (aballier)" <aballier@g.o>
|
|
Subject:
|
gentoo-x86 commit in media-plugins/swh-plugins/files: swh-plugins-0.4.15-system_gsm.patch
|
|
Date:
|
Tue, 13 Jan 2009 07:38:37 +0000
|
|
aballier 09/01/13 07:38:37
Added: swh-plugins-0.4.15-system_gsm.patch
Log:
Use system libgsm, bug #252890
(Portage version: 2.2_rc21/cvs/Linux 2.6.28 x86_64)
Revision Changes Path
1.1 media-plugins/swh-plugins/files/swh-plugins-0.4.15-system_gsm.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/swh-plugins/files/swh-plugins-0.4.15-system_gsm.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/swh-plugins/files/swh-plugins-0.4.15-system_gsm.patch?rev=1.1&content-type=text/plain
Index: swh-plugins-0.4.15-system_gsm.patch
===================================================================
Index: swh-plugins-0.4.15/Makefile.am
===================================================================
--- swh-plugins-0.4.15.orig/Makefile.am
+++ swh-plugins-0.4.15/Makefile.am
@@ -33,7 +33,7 @@ plugin_LTLIBRARIES = \
latency_1914.la xfade_1915.la sc4m_1916.la \
mbeq_1197.la pitch_scale_1193.la pitch_scale_1194.la imp_1199.la
-SUBDIRS = m4 po util gsm gverb metadata
+SUBDIRS = m4 po util gverb metadata
# Wacky stuff to stop automake getting confused
EXTRA_DIST = @top_srcdir@/*.xml @top_srcdir@/*.c @top_srcdir@/*.h \
@@ -72,7 +72,7 @@ sc3_1427_la_LIBADD = util/libdb.la util/
sc4_1882_la_LIBADD = util/libdb.la util/librms.la
sc4m_1916_la_LIBADD = util/libdb.la util/librms.la
se4_1883_la_LIBADD = util/libdb.la util/librms.la
-gsm_1215_la_LIBADD = gsm/libgsm.la
+gsm_1215_la_LIBADD = @GSM_LIBS@
gverb_1216_la_LIBADD = gverb/libgverb.la
lcr_delay_1436_la_DEPENDENCIES = util/biquad.h
Index: swh-plugins-0.4.15/configure.in
===================================================================
--- swh-plugins-0.4.15.orig/configure.in
+++ swh-plugins-0.4.15/configure.in
@@ -136,17 +136,19 @@ else
AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datadir}/${PACKAGE}")
fi
-subdirs="util gsm gverb metadata"
+GSM_LIBS=-lgsm
+
+subdirs="util gverb metadata"
AC_SUBST(subdirs)
AC_SUBST(FFTW_LIBS)
AC_SUBST(STATIC_FFTW_LIBS)
AC_SUBST(FFTW_CFLAGS)
+AC_SUBST(GSM_LIBS)
AC_SUBST(LIBTOOL)
AC_OUTPUT([ m4/Makefile
Makefile
util/Makefile
-gsm/Makefile
gverb/Makefile
metadata/Makefile
po/Makefile.in
|
|