raw1394: Don't compile hdv1394src if libiec61883 isn't available
authorEdward Hervey <bilboed@bilboed.com>
Mon, 4 Oct 2010 20:31:32 +0000 (22:31 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Mon, 4 Oct 2010 20:31:32 +0000 (22:31 +0200)
Fixes #629896

configure.ac
ext/raw1394/Makefile.am
ext/raw1394/gst1394.c

index b6c4ebe..9cf2e53 100644 (file)
@@ -864,6 +864,7 @@ AG_GST_CHECK_FEATURE(DV1394, [raw1394 and avc1394 library], 1394, [
         fi
   fi
 ])
+AM_CONDITIONAL(USE_LIBIEC61883, [ test "x${HAVE_LIBIEC61883}" = xyes ] )
 
 dnl *** shout2 ***
 translit(dnm, m, l) AM_CONDITIONAL(USE_SHOUT2, true)
index 45ec58f..ae55f86 100644 (file)
@@ -1,7 +1,15 @@
 plugin_LTLIBRARIES = libgst1394.la
 
+if USE_LIBIEC61883
+hdvsource = gsthdv1394src.c
+hdvheaders = gsthdv1394src.h
+else
+hdvsource = 
+hdvheaders = 
+endif
+
 libgst1394_la_SOURCES = \
-       gst1394.c gst1394probe.c gstdv1394src.c gsthdv1394src.c \
+       gst1394.c gst1394probe.c gstdv1394src.c $(hdvsource) \
        gst1394clock.c
 libgst1394_la_CFLAGS = \
        $(GST_PLUGINS_BASE_CFLAGS) \
@@ -16,6 +24,6 @@ libgst1394_la_LIBADD = \
 libgst1394_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
 libgst1394_la_LIBTOOLFLAGS = --tag=disable-static
 
-noinst_HEADERS = gstdv1394src.h gst1394probe.h gsthdv1394src.h \
+noinst_HEADERS = gstdv1394src.h gst1394probe.h $(hdvheaders) \
        gst1394clock.h
 
index 87163df..dafeb73 100644 (file)
@@ -25,7 +25,9 @@
 
 
 #include "gstdv1394src.h"
+#ifdef HAVE_LIBIEC61883
 #include "gsthdv1394src.h"
+#endif
 
 static gboolean
 plugin_init (GstPlugin * plugin)
@@ -33,9 +35,11 @@ plugin_init (GstPlugin * plugin)
   if (!gst_element_register (plugin, "dv1394src", GST_RANK_NONE,
           GST_TYPE_DV1394SRC))
     return FALSE;
+#ifdef HAVE_LIBIEC61883
   if (!gst_element_register (plugin, "hdv1394src", GST_RANK_NONE,
           GST_TYPE_HDV1394SRC))
     return FALSE;
+#endif
 
   return TRUE;
 }