mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 11:51:34 +00:00
4075335806
Original commit message from CVS: A bunch more changes to clean up build/`make dist` issues, as well as a spec file, -config file, .m4, etc. Next step is to build an RPM of this mess.
21 lines
602 B
Text
21 lines
602 B
Text
# a macro to get the libs/cflags for gscope
|
|
# serial 1
|
|
|
|
dnl AM_PATH_GSTREAMER([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
|
|
dnl Test to see if timestamp is installed, and define GSTREAMER_CFLAGS, LIBS
|
|
dnl
|
|
AC_DEFUN(AM_PATH_GSTREAMER,
|
|
[dnl
|
|
dnl Get the cflags and libraries for the GtkScope widget
|
|
dnl
|
|
AC_ARG_WITH(gscope-prefix,
|
|
[ --with-gscope-prefix=PFX Prefix where GtkScope is installed],
|
|
GSTREAMER_PREFIX="$withval")
|
|
|
|
AC_CHECK_LIB(gscope,gtk_scope_new,
|
|
AC_MSG_RESULT(yes),
|
|
AC_MSG_RESULT(no),"$GSTREAMER_PREFIX $LIBS")
|
|
AC_SUBST(GSTREAMER_CFLAGS)
|
|
AC_SUBST(GSTREAMER_LIBS)
|
|
AC_SUBST(HAVE_GSTREAMER)
|
|
])
|