Skip to content
Snippets Groups Projects
Commit a9a318b1 authored by Kipp Cannon's avatar Kipp Cannon
Browse files

framecpp plugin: fix build against new framecpp headers

this is a temporary hack until a better (more portable, robust)
autoconf-based solution can be found
parent cf0c894e
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,9 @@ if COND_GSTBASEPARSE
libframecpp_plugin_la_SOURCES += framecpp_igwdparse.cc framecpp_igwdparse.h
endif
libframecpp_plugin_la_CFLAGS = $(AM_CFLAGS) $(GSTLAL_CFLAGS) $(gstreamer_CFLAGS) $(gstreamer_audio_CFLAGS) $(framecpp_CFLAGS)
libframecpp_plugin_la_CXXFLAGS = $(AM_CFLAGS) $(GSTLAL_CFLAGS) $(gstreamer_CFLAGS) $(gstreamer_audio_CFLAGS) $(framecpp_CFLAGS) -D__STDC_CONSTANT_MACROS
# FIXME: the "-std=c++0x" option is here as a temporary hack until we can
# find a way to get the autoconf macros to configure the cflags for us
# correctly on its own
libframecpp_plugin_la_CXXFLAGS = $(AM_CFLAGS) $(GSTLAL_CFLAGS) $(gstreamer_CFLAGS) $(gstreamer_audio_CFLAGS) $(framecpp_CFLAGS) -std=c++0x -D__STDC_CONSTANT_MACROS
libframecpp_plugin_la_LDFLAGS = $(AM_LDFLAGS) $(GSTLAL_LIBS) $(gstreamer_LIBS) $(gstreamer_audio_LIBS) $(framecpp_LIBS) $(GSTLAL_PLUGIN_LDFLAGS)
libframecpp_plugin_la_LIBADD = libgstframecpp.la
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment