1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-01 08:09:41 +02:00

Correct spelling gstreamer to GStreamer.

This commit is contained in:
benjamin.drung@gmail.com 2014-05-29 14:08:43 +00:00
parent a361823829
commit 2e8222c573

View File

@ -8,20 +8,20 @@ AC_DEFUN([AUDACITY_CHECKLIB_GSTREAMER], [
AC_ARG_WITH(gstreamer,
[AS_HELP_STRING([--with-gstreamer],
[include gstreamer import/export support])],
[include GStreamer import/export support])],
GSTREAMER_ARGUMENT=$withval,
GSTREAMER_ARGUMENT="unspecified")
dnl see if gstreamer is installed on the system
dnl see if GStreamer is installed on the system
PKG_CHECK_MODULES(GSTREAMER, gstreamer-1.0 gstreamer-app-1.0,
GSTREAMER_SYSTEM_AVAILABLE="yes",
GSTREAMER_SYSTEM_AVAILABLE="no")
if test "$GSTREAMER_SYSTEM_AVAILABLE" = "yes"; then
AC_MSG_NOTICE([gstreamer libraries are available as system libraries])
AC_MSG_NOTICE([GStreamer libraries are available as system libraries])
else
AC_MSG_NOTICE([gstreamer libraries are NOT available as system libraries])
AC_MSG_NOTICE([GStreamer libraries are NOT available as system libraries])
fi
GSTREAMER_LOCAL_AVAILABLE="no"
@ -36,7 +36,6 @@ AC_DEFUN([AUDACITY_CONFIG_GSTREAMER], [
if test "$GSTREAMER_USE_SYSTEM" = yes; then
AC_DEFINE(USE_GSTREAMER, 1,
[Define if the gstreamer is present])
[Define if the GStreamer is present])
fi
])