Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ AC_PROG_CC
AM_MAINTAINER_MODE

dnl
dnl We need gstreamer-0.10 or gstreamer-1.0
dnl We need gstreamer-1.0
dnl
AC_DEFUN([AC_GSTREAMER_REQUIREMENTS],
[
Expand All @@ -62,15 +62,7 @@ AC_DEFUN([AC_GSTREAMER_REQUIREMENTS],

PKG_CHECK_MODULES(GSTREAMER, gstreamer-1.0 gstreamer-base-1.0 gstreamer-video-1.0)
else
dnl gstreamer-0.10 development package installed?
PKG_CHECK_MODULES(GSTREAMER_0_10, gstreamer-0.10, GST_0_10=1, GST_0_10=0)

if test x$GST_0_10 = x1; then
AC_MSG_NOTICE([Building gst123 using gstreamer version 0.10])
PKG_CHECK_MODULES(GSTREAMER, gstreamer-0.10 gstreamer-base-0.10 gstreamer-interfaces-0.10 gstreamer-video-0.10)
else
AC_MSG_ERROR([Neither gstreamer-0.10 nor gstreamer-1.0 was found using pkg-config.])
fi
AC_MSG_ERROR([gstreamer-1.0 not found using pkg-config.])
fi
AC_SUBST(GSTREAMER_CFLAGS)
AC_SUBST(GSTREAMER_LIBS)
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ gst123_SOURCES = gst123.cc glib-extra.c glib-extra.h terminal.cc terminal.h gtki
uri.cc playlist.cc m3uparser.cc plsparser.cc uri.h playlist.h m3uparser.h plsparser.h \
iostream.cc iostream.h networkstream.cc filestream.cc consolestream.cc \
httpstream.cc visualization.h visualization.cc msg.h msg.cc typefinder.h typefinder.cc \
compat.h compat.cc utils.h utils.cc
utils.h utils.cc
gst123_LDADD = $(GSTREAMER_LIBS) $(GSTREAMER_GTK_LIBS) $(NCURSES_LIBS)
223 changes: 0 additions & 223 deletions src/compat.cc

This file was deleted.

51 changes: 0 additions & 51 deletions src/compat.h

This file was deleted.

Loading