summaryrefslogtreecommitdiffstats
path: root/m4/gst-mpeg2dec.m4
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-03-31 03:32:58 +0000
committerAndy Wingo <wingo@pobox.com>2002-03-31 03:32:58 +0000
commit75d83745c73931327209749c32f200fa00cc44ec (patch)
tree9926f495aaa35b9d4c7fc7e82c41180eb2a1b5e4 /m4/gst-mpeg2dec.m4
parent2432f706243dac1c1c6005d1ed9116c6536a7e04 (diff)
downloadgst-plugins-bad-75d83745c73931327209749c32f200fa00cc44ec.tar.gz
gst-plugins-bad-75d83745c73931327209749c32f200fa00cc44ec.tar.bz2
gst-plugins-bad-75d83745c73931327209749c32f200fa00cc44ec.zip
correct a condition in check-libheader.m4 remove gst a52 and mpeg2dec m4's in favor of ones i have sent to walken for...
Original commit message from CVS: * correct a condition in check-libheader.m4 * remove gst a52 and mpeg2dec m4's in favor of ones i have sent to walken for inclusion in the upstream packages
Diffstat (limited to 'm4/gst-mpeg2dec.m4')
-rw-r--r--m4/gst-mpeg2dec.m419
1 files changed, 0 insertions, 19 deletions
diff --git a/m4/gst-mpeg2dec.m4 b/m4/gst-mpeg2dec.m4
deleted file mode 100644
index 0a5785fe..00000000
--- a/m4/gst-mpeg2dec.m4
+++ /dev/null
@@ -1,19 +0,0 @@
-AC_DEFUN(GST_CHECK_MPEG2DEC,
-[dnl
-AC_ARG_WITH(mpeg2dec-prefix,
- [ --with-mpeg2dec-prefix=PFX Prefix where mpeg2dec is installed (optional)],
- mpeg2dec_config_prefix="$withval", mpeg2dec_config_prefix="")
-
-if test x$mpeg2dec_config_prefix = x ; then
- CHECK_LIBHEADER(MPEG2DEC, mpeg2, mpeg2_init, mpeg2dec/mpeg2.h,
- MPEG2DEC_LIBS="-lmpeg2 -lmpeg2dec")
-else
- CHECK_LIBHEADER(MPEG2DEC, mpeg2, mpeg2_init, mpeg2dec/mpeg2.h, [
- MPEG2DEC_LIBS="-lmpeg2 -lmpeg2dec -L$mpeg2dec_config_prefix/lib"
- MPEG2DEC_CFLAGS="-I$mpeg2dec_config_prefix/include"
- ], , -L$mpeg2dec_config_prefix/lib, -I$mpeg2dec_config_prefix/include)
-fi
-
-AC_SUBST(MPEG2DEC_CFLAGS)
-AC_SUBST(MPEG2DEC_LIBS)
-])