mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
Fixed lowercase PLUGINS_USE_SRCDIR which made running test apps fail.
Original commit message from CVS: Fixed lowercase PLUGINS_USE_SRCDIR which made running test apps fail. Added GHTTP_LIBS to the libraries. commented out mm_support() call, wich is not working yet and causes errors.
This commit is contained in:
parent
ffd6d98e9d
commit
d946ac7b3c
3 changed files with 5 additions and 5 deletions
|
@ -179,11 +179,11 @@ esac],
|
||||||
AC_ARG_ENABLE(plugin-srcdir,
|
AC_ARG_ENABLE(plugin-srcdir,
|
||||||
[ --enable-plugin-srcdir allow tests/demos to use non-installed plugins ],
|
[ --enable-plugin-srcdir allow tests/demos to use non-installed plugins ],
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) plugins_use_srcdir=yes ;;
|
yes) PLUGINS_USE_SRCDIR=yes ;;
|
||||||
no) plugins_use_srcdir=no ;;
|
no) PLUGINS_USE_SRCDIR=no ;;
|
||||||
*) AC_MSG_ERROR(bad value ${enableval} for --enable-plugin-srcdir) ;;
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-plugin-srcdir) ;;
|
||||||
esac],
|
esac],
|
||||||
[plugins_use_srcdir=yes]) dnl Default value
|
[PLUGINS_USE_SRCDIR=yes]) dnl Default value
|
||||||
|
|
||||||
AC_ARG_ENABLE(debug,
|
AC_ARG_ENABLE(debug,
|
||||||
[ --enable-debug spews lots of useless info at runtime],
|
[ --enable-debug spews lots of useless info at runtime],
|
||||||
|
|
|
@ -38,5 +38,5 @@ noinst_HEADERS = \
|
||||||
gstqueue.h \
|
gstqueue.h \
|
||||||
gstsinesrc.h
|
gstsinesrc.h
|
||||||
|
|
||||||
libgstelements_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS)
|
libgstelements_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(GHTTP_LIBS)
|
||||||
libgstelements_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)
|
libgstelements_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)
|
||||||
|
|
|
@ -38,5 +38,5 @@ noinst_HEADERS = \
|
||||||
gstqueue.h \
|
gstqueue.h \
|
||||||
gstsinesrc.h
|
gstsinesrc.h
|
||||||
|
|
||||||
libgstelements_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS)
|
libgstelements_la_LIBADD = $(GLIB_LIBS) $(GTK_LIBS) $(GHTTP_LIBS)
|
||||||
libgstelements_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)
|
libgstelements_la_LDFLAGS = -version-info $(STREAMER_CURRENT):$(STREAMER_REVISION):$(STREAMER_AGE)
|
||||||
|
|
Loading…
Reference in a new issue