From 66c8c8ad87618f33941ec3b2f73a4297765f91b4 Mon Sep 17 00:00:00 2001 From: Julien Isorce Date: Wed, 3 Jun 2015 22:21:30 +0100 Subject: [PATCH] gl/example: fix build error when compiling cocoa-videooverlay libtool: error: ignoring unknown tag OBJC and clang: error: argument unused during compilation: '-pthread' --- tests/examples/gl/cocoa/Makefile.am | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/examples/gl/cocoa/Makefile.am b/tests/examples/gl/cocoa/Makefile.am index 91349c0..3690546 100755 --- a/tests/examples/gl/cocoa/Makefile.am +++ b/tests/examples/gl/cocoa/Makefile.am @@ -4,12 +4,12 @@ noinst_PROGRAMS = cocoa-videooverlay cocoa_videooverlay_SOURCES = cocoa-videooverlay.m -cocoa_videooverlay_OBJCFLAGS=-I$(top_srcdir)/gst-libs -I$(top_builddir)/gst-libs \ +cocoa_videooverlay_OBJCFLAGS=-Wno-error=unused-command-line-argument \ + -I$(top_srcdir)/gst-libs -I$(top_builddir)/gst-libs \ $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \ - $(GL_CFLAGS) ${GL_OBJCFLAGS} -cocoa_videooverlay_LDADD=$(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) \ - $(GL_LIBS) -lgstvideo-$(GST_API_VERSION) + $(GL_CFLAGS) $(GL_OBJCFLAGS) -cocoa_videooverlay_LIBTOOLFLAGS = --tag=OBJC +cocoa_videooverlay_LDADD=$(GST_PLUGINS_BASE_LIBS) $(GST_LIBS) \ + $(GL_LIBS) -lgstvideo-$(GST_API_VERSION) endif -- 2.7.4