From: Andy Wingo Date: Sun, 23 Dec 2001 03:24:17 +0000 (+0000) Subject: pkg-config related fixes note that a relative path in your PKG_CONFIG_PATH will show... X-Git-Tag: RELEASE-0_3_1-BELGIANBEER~123 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7aa5885df577d8effb0a3e2fb4997faab51bfe19;p=platform%2Fupstream%2Fgstreamer.git pkg-config related fixes note that a relative path in your PKG_CONFIG_PATH will show up as ${pcfiledir}, unfortunately Original commit message from CVS: pkg-config related fixes note that a relative path in your PKG_CONFIG_PATH will show up as ${pcfiledir}, unfortunately --- diff --git a/configure.ac b/configure.ac index 9d0a757..211d857 100644 --- a/configure.ac +++ b/configure.ac @@ -285,7 +285,7 @@ if test x$USE_GLIB2 = xno; then GLIB_LIBS="$GLIB_LIBS $GTK_LIBS" GLIB_CFLAGS="$GLIB_CFLAGS $GTK_CFLAGS" else - GST_PKG_DEPS="glib-2.0 gobject-2.0 gmodule-2.0 gthread-2.0" + GST_PKG_DEPS="glib-2.0, gobject-2.0, gmodule-2.0, gthread-2.0" PKG_CHECK_MODULES(GTK2, gtk+-2.0, HAVE_GTK=yes, HAVE_GTK=no) @@ -311,7 +311,7 @@ AC_SUBST(GTK_CFLAGS) dnl Check for libxml if test x$USE_GLIB2 = xno; then - LIBXML_PKG='libxml >= 1.8.1' + LIBXML_PKG=', libxml >= 1.8.1' AC_PATH_PROG(XML_CONFIG, xml-config, no) if test x$XML_CONFIG = xno; then AC_MSG_ERROR(Couldn't find $LIBXML_PKG) @@ -322,7 +322,7 @@ if test x$USE_GLIB2 = xno; then [ AC_MSG_ERROR(Need version 1.8.1 or better of libxml) ], $XML_LIBS) else - LIBXML_PKG='libxml-2.0' + LIBXML_PKG=', libxml-2.0' PKG_CHECK_MODULES(XML, $LIBXML_PKG, XML_CONFIG=yes, XML_CONFIG=no) AC_PATH_PROG(XML_CONFIG, xml-config, no) AC_DEFINE(HAVE_LIBXML2) @@ -875,6 +875,9 @@ GST_SUBSYSTEM_DISABLE(REGISTRY,[plugin registry]) GST_CFLAGS="$GST_CFLAGS $GST_SUBSYSTEM_DISABLE_DEFINES" +dnl for pkg-config +GST_PKG_CFLAGS=$GST_CFLAGS +AC_SUBST(GST_PKG_CFLAGS) dnl ################################################ dnl # Set defines according to variables set above # @@ -1124,7 +1127,7 @@ gst/autoplug/Makefile gst/schedulers/Makefile libs/Makefile libs/gst/Makefile -libs/gst/bytestream/makefile +libs/gst/bytestream/Makefile libs/riff/Makefile libs/getbits/Makefile libs/putbits/Makefile diff --git a/gstreamer-uninstalled.pc.in b/gstreamer-uninstalled.pc.in index b651c45..4696612 100644 --- a/gstreamer-uninstalled.pc.in +++ b/gstreamer-uninstalled.pc.in @@ -1,12 +1,7 @@ -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@ - Name: GStreamer Uninstalled Description: Streaming-media framework, Not Installed Version: @VERSION@ -Requires: @GST_PKG_DEPS@, libxml >= 1.8.1 +Requires: @GST_PKG_DEPS@@LIBXML_PKG@ Libs: -L${pcfiledir}/gst -lgst -Cflags: -I${pcfiledir} @GST_CFLAGS@ +Cflags: -I${pcfiledir} @GST_PKG_CFLAGS@