diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-06-25 04:27:14 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-06-25 04:27:14 +0800 |
commit | 1c03aa4a217ba31d0d0fd8c2fe1e95719e628752 (patch) | |
tree | 5dab5be75c0f06b547b09532ffbccc0576be3e1b /multimedia/gstreamer-plugins | |
parent | aa6312464cdc9466f55dacaf6194233f8ecdb77d (diff) | |
download | marcuscom-ports-1c03aa4a217ba31d0d0fd8c2fe1e95719e628752.tar marcuscom-ports-1c03aa4a217ba31d0d0fd8c2fe1e95719e628752.tar.gz marcuscom-ports-1c03aa4a217ba31d0d0fd8c2fe1e95719e628752.tar.bz2 marcuscom-ports-1c03aa4a217ba31d0d0fd8c2fe1e95719e628752.tar.lz marcuscom-ports-1c03aa4a217ba31d0d0fd8c2fe1e95719e628752.tar.xz marcuscom-ports-1c03aa4a217ba31d0d0fd8c2fe1e95719e628752.tar.zst marcuscom-ports-1c03aa4a217ba31d0d0fd8c2fe1e95719e628752.zip |
Do not define USE_SDL and GCONF_SCHEMAS unless there are values to stick
in those macros.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6485 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/gstreamer-plugins')
-rw-r--r-- | multimedia/gstreamer-plugins/Makefile.common | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/multimedia/gstreamer-plugins/Makefile.common b/multimedia/gstreamer-plugins/Makefile.common index da2a51931..07be2d123 100644 --- a/multimedia/gstreamer-plugins/Makefile.common +++ b/multimedia/gstreamer-plugins/Makefile.common @@ -1,5 +1,5 @@ # $FreeBSD: ports/multimedia/gstreamer-plugins/Makefile.common,v 1.34 2006/06/09 20:24:02 ahze Exp $ -# $MCom: ports/multimedia/gstreamer-plugins/Makefile.common,v 1.52 2006/06/24 16:35:42 marcus Exp $ +# $MCom: ports/multimedia/gstreamer-plugins/Makefile.common,v 1.53 2006/06/24 17:42:51 marcus Exp $ # base BASE_GST_ALL_PLUGINS= \ alsa \ @@ -327,9 +327,13 @@ PLIST_FILES= ${gst_${GST_PLUGIN}_PLIST_FILES} EXTRA_LIBS+= ${gst_${GST_PLUGIN}_EXTRA_LIBS} USE_GNOME+= ${gst_${GST_PLUGIN}_USE_GNOME} CONFIGURE_ENV+= ${gst_${GST_PLUGIN}_CONFIGURE_ENV} +.if ${gst_${GST_PLUGIN}_GCONF_SCHEMAS}!="" GCONF_SCHEMAS= ${gst_${GST_PLUGIN}_GCONF_SCHEMAS} +.endif CONFIGURE_ARGS+=${gst_${GST_PLUGIN}_CONFIGURE_ARGS} +.if ${gst_${GST_PLUGIN}_USE_SDL}!="" USE_SDL= ${gst_${GST_PLUGIN}_USE_SDL} +.endif USE_GSTREAMER+= ${gst_${GST_PLUGIN}_USE_GSTREAMER} GST_PREBUILD_DIR=${gst_${GST_PLUGIN}_GST_PREBUILD_DIR} GST_PLUGIN_DIR= ${gst_${GST_PLUGIN}_GST_PLUGIN_DIR} |