Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gstlal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Duncan Macleod
gstlal
Commits
cd58ec7c
Commit
cd58ec7c
authored
7 years ago
by
Kipp Cannon
Browse files
Options
Downloads
Patches
Plain Diff
gstlal-ugly: GstBaseParse now guaranteed to be available
- because we require a 1.x version of gstreamer
parent
83ff3090
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gstlal-ugly/configure.ac
+0
-12
0 additions, 12 deletions
gstlal-ugly/configure.ac
gstlal-ugly/gst/framecpp/Makefile.am
+2
-4
2 additions, 4 deletions
gstlal-ugly/gst/framecpp/Makefile.am
with
2 additions
and
16 deletions
gstlal-ugly/configure.ac
+
0
−
12
View file @
cd58ec7c
...
...
@@ -228,18 +228,6 @@ AC_MSG_NOTICE([If you have chosen to install the software in a location not incl
to your GST_PLUGIN_PATH environment variable.])
AC_SUBST([GSTLAL_PLUGIN_LDFLAGS], ["-module -avoid-version -export-symbols-regex [_]*\(gst_\|Gst\|GST_\|gstlal_\|GstLAL_\|GSTLAL_\).*"])
# Check for availability of GstBaseParse class (starting in 0.10.33)
CFLAGS_saved="$CFLAGS"
CFLAGS="$gstreamer_CFLAGS"
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([#include <gst/base/gstbaseparse.h>])],
[HAVE_GSTBASEPARSE=yes
AC_DEFINE([HAVE_GST_BASEPARSE], [1], [Define if GstBaseParse class is available.])],
[HAVE_GSTBASEPARSE=no]
)
CFLAGS="$CFLAGS_saved"
AM_CONDITIONAL([COND_GSTBASEPARSE], [test "x${HAVE_GSTBASEPARSE}" == "xyes"])
#
# Check for GStreamer Video Library
...
...
This diff is collapsed.
Click to expand it.
gstlal-ugly/gst/framecpp/Makefile.am
+
2
−
4
View file @
cd58ec7c
...
...
@@ -10,10 +10,8 @@ libframecpp_plugin_la_SOURCES = \
muxcollectpads.c muxcollectpads.h
\
framecpp_channelmux.cc framecpp_channelmux.h
\
framecpp_channeldemux.cc framecpp_channeldemux.h
\
framecpp_filesink.c framecpp_filesink.h
if
COND_GSTBASEPARSE
libframecpp_plugin_la_SOURCES
+=
framecpp_igwdparse.cc framecpp_igwdparse.h
endif
framecpp_filesink.c framecpp_filesink.h
\
framecpp_igwdparse.cc framecpp_igwdparse.h
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_CXXFLAGS
)
libframecpp_plugin_la_LDFLAGS
=
$(
AM_LDFLAGS
)
$(
GSTLAL_LIBS
)
$(
gstreamer_LIBS
)
$(
gstreamer_audio_LIBS
)
$(
framecpp_LIBS
)
$(
GSTLAL_PLUGIN_LDFLAGS
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment