From 2e8222c573c37212e1a4d5dafcf32b09d39b2e9d Mon Sep 17 00:00:00 2001 From: "benjamin.drung@gmail.com" Date: Thu, 29 May 2014 14:08:43 +0000 Subject: [PATCH] Correct spelling gstreamer to GStreamer. --- m4/audacity_checklib_gstreamer.m4 | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/m4/audacity_checklib_gstreamer.m4 b/m4/audacity_checklib_gstreamer.m4 index 631d5500a..1e44caffd 100644 --- a/m4/audacity_checklib_gstreamer.m4 +++ b/m4/audacity_checklib_gstreamer.m4 @@ -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 - ])