summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Schaller <uraeus@gnome.org>2005-05-05 16:35:52 +0000
committerChristian Schaller <uraeus@gnome.org>2005-05-05 16:35:52 +0000
commit886110240acc01afdc047906f27418e05de7388e (patch)
treeeae13eebbf871bfac01f49fbe40e1cb5e467d310
parent9e07c0ac3c54b0c217a16627dfd7cd5f9c057d96 (diff)
updates to make this closer to compile
Original commit message from CVS: updates to make this closer to compile
-rwxr-xr-xautogen.sh2
-rw-r--r--configure.ac21
-rw-r--r--gst-plugins.spec.in3
-rw-r--r--sys/oss/Makefile.am3
-rw-r--r--sys/oss/gst-i18n-plugin.h37
-rw-r--r--sys/oss/gstossaudio.c2
-rw-r--r--sys/oss/gstosselement.c2
-rw-r--r--sys/oss/gstossmixer.c5
8 files changed, 65 insertions, 10 deletions
diff --git a/autogen.sh b/autogen.sh
index 098846fd..afe794d2 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -14,7 +14,7 @@ then
fi
# ensure that we have the dirs we put ext libs in to appease automake
-mkdir -p gst-libs/ext/ffmpeg/ffmpeg
+#mkdir -p gst-libs/ext/ffmpeg/ffmpeg
# source helper functions
if test ! -f common/gst-autogen.sh;
diff --git a/configure.ac b/configure.ac
index e4ba8daa..dd9e4f0c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -223,6 +223,27 @@ fi
AC_SUBST(GST_CONTROL_LIBS)
+dnl check for gstreamer-base; uninstalled is selected preferentially
+PKG_CHECK_MODULES(GST_BASE, gstreamer-base-$GST_MAJORMINOR >= $GST_REQ,
+ HAVE_GST_BASE="yes", HAVE_GST_BASE="no")
+
+if test "x$HAVE_GST_BASE" = "xno"; then
+ AC_MSG_ERROR(no GStreamer Base Libs found)
+fi
+
+AC_SUBST(GST_BASE_LIBS)
+
+dnl check for gstreamer-interfaces; uinstalled is selected preferentially
+PKG_CHECK_MODULES(GST_INTERFACES, gstreamer-interfaces-$GST_MAJORMINOR >= $GST_REQ,
+ HAVE_GST_INTERFACES="yes", HAVE_GST_INTERFACES="no")
+
+if test "x$HAVE_GST_INTERFACES" = "xno"; then
+ AC_MSG_ERROR(no GStreamer Interfaces Libs found)
+fi
+
+AC_SUBST(GST_INTERFACES_LIBS)
+
+
dnl Determine endianness
AC_C_BIGENDIAN
diff --git a/gst-plugins.spec.in b/gst-plugins.spec.in
index 673faf47..bf18d721 100644
--- a/gst-plugins.spec.in
+++ b/gst-plugins.spec.in
@@ -37,9 +37,6 @@ BuildRequires: gstreamer-tools >= %{gst_minver}
BuildRequires: gcc-c++
BuildRequires: XFree86-devel
-@USE_ARTS_TRUE@Requires: arts >= 1.1.4
-@USE_ARTS_TRUE@BuildRequires: arts-devel >= 1.1.4
-@USE_ARTS_TRUE@BuildRequires: gcc-c++
@USE_AUDIOFILE_TRUE@Requires: audiofile >= 0.2.1
@USE_AUDIOFILE_TRUE@BuildRequires: audiofile-devel >= 0.2.1
@USE_CDPARANOIA_TRUE@Requires: cdparanoia-libs >= alpha9.7
diff --git a/sys/oss/Makefile.am b/sys/oss/Makefile.am
index 0f1d17ed..033035b7 100644
--- a/sys/oss/Makefile.am
+++ b/sys/oss/Makefile.am
@@ -13,7 +13,8 @@ libgstossaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstosssink.h \
gstosssrc.h \
gstosselement.h\
- gstossmixer.h
+ gstossmixer.h \
+ gst-i18n-plugin.h
noinst_PROGRAMS = oss_probe
diff --git a/sys/oss/gst-i18n-plugin.h b/sys/oss/gst-i18n-plugin.h
new file mode 100644
index 00000000..2c37a615
--- /dev/null
+++ b/sys/oss/gst-i18n-plugin.h
@@ -0,0 +1,37 @@
+/* GStreamer
+ * Copyright (C) 2004 Thomas Vander Stichele <thomas@apestaart.org>
+ *
+ * gst-i18n-plugins.h: internationalization macros for the GStreamer plugins
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GST_I18N_PLUGIN_H__
+#define __GST_I18N_PLUGIN_H__
+
+#include <locale.h> /* some people need it and some people don't */
+#include "gettext.h" /* included with gettext distribution and copied */
+
+#ifndef GETTEXT_PACKAGE
+#error You must define GETTEXT_PACKAGE before including this header.
+#endif
+
+/* we want to use shorthand _() for translating and N_() for marking */
+#define _(String) dgettext (GETTEXT_PACKAGE, String)
+#define N_(String) gettext_noop (String)
+/* FIXME: if we need it, we can add Q_ as well, like in glib */
+
+#endif /* __GST_I18N_PLUGIN_H__ */
diff --git a/sys/oss/gstossaudio.c b/sys/oss/gstossaudio.c
index f34e78bc..e5f8ee49 100644
--- a/sys/oss/gstossaudio.c
+++ b/sys/oss/gstossaudio.c
@@ -21,7 +21,7 @@
#include "config.h"
#endif
-#include "gst/gst-i18n-plugin.h"
+#include "gst-i18n-plugin.h"
#include "gstosselement.h"
#include "gstosssink.h"
diff --git a/sys/oss/gstosselement.c b/sys/oss/gstosselement.c
index e8fc3453..ae1cf3a8 100644
--- a/sys/oss/gstosselement.c
+++ b/sys/oss/gstosselement.c
@@ -25,7 +25,7 @@
#include "config.h"
#endif
-#include "gst/gst-i18n-plugin.h"
+#include "gst-i18n-plugin.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
diff --git a/sys/oss/gstossmixer.c b/sys/oss/gstossmixer.c
index b54268fb..dc75294b 100644
--- a/sys/oss/gstossmixer.c
+++ b/sys/oss/gstossmixer.c
@@ -45,7 +45,7 @@
#endif /* HAVE_OSS_INCLUDE_IN_SYS */
-#include <gst/gst-i18n-plugin.h>
+#include <gst-i18n-plugin.h>
#include "gstossmixer.h"
@@ -88,8 +88,7 @@ fill_labels (void)
{
gchar *given, *wanted;
}
- cases[] =
- {
+ cases[] = {
/* Note: this list is simply ripped from soundcard.h. For
* some people, some values might be missing (3D surround,
* etc.) - feel free to add them. That's the reason why