From 7e21a41c7e998e2f1d97113a893fabcea7378f5e Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 17 Jul 2003 04:29:33 +0000 Subject: [PATCH] Detect SPEEX_LIBS and SPEEX_CFLAGS in configure, and use them here Original commit message from CVS: Detect SPEEX_LIBS and SPEEX_CFLAGS in configure, and use them here --- ext/speex/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/speex/Makefile.am b/ext/speex/Makefile.am index 7d0a65f0bd..86d4c08eae 100644 --- a/ext/speex/Makefile.am +++ b/ext/speex/Makefile.am @@ -3,8 +3,8 @@ plugindir = $(libdir)/gst plugin_LTLIBRARIES = libgstspeex.la libgstspeex_la_SOURCES = gstspeex.c gstspeexdec.c gstspeexenc.c -libgstspeex_la_CFLAGS = $(GST_CFLAGS) -libgstspeex_la_LIBADD = -lspeex +libgstspeex_la_CFLAGS = $(GST_CFLAGS) $(SPEEX_CFLAGS) +libgstspeex_la_LIBADD = $(SPEEX_LIBS) libgstspeex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) noinst_HEADERS = gstspeexenc.h gstspeexdec.h