diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-07-22 22:16:07 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-07-22 22:16:07 +0200 |
commit | 8232850c51e07b99ba84769b492faa147290fdc7 (patch) | |
tree | 3c901233777c64817cb3efbd01d7a6600d0ae7e2 /package/multimedia | |
parent | 3e6a0a80d21aa737fdab674fc9361630ed9a6cf9 (diff) | |
download | buildroot-novena-8232850c51e07b99ba84769b492faa147290fdc7.tar.gz buildroot-novena-8232850c51e07b99ba84769b492faa147290fdc7.zip |
gst-plugins-base: don't search host headers if freetype isn't available
freetype is only used by examples, but if it is not found
and the host has a freetype-config script, then the host
include dirs are added to the search path causing trouble.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/multimedia')
-rw-r--r-- | package/multimedia/gst-plugins-base/gst-plugins-base.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/multimedia/gst-plugins-base/gst-plugins-base.mk b/package/multimedia/gst-plugins-base/gst-plugins-base.mk index 88c68e15d..63f23cd5c 100644 --- a/package/multimedia/gst-plugins-base/gst-plugins-base.mk +++ b/package/multimedia/gst-plugins-base/gst-plugins-base.mk @@ -9,6 +9,11 @@ GST_PLUGINS_BASE_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-base GST_PLUGINS_BASE_INSTALL_STAGING = YES GST_PLUGINS_BASE_LIBTOOL_PATCH = NO +# freetype is only used by examples, but if it is not found +# and the host has a freetype-config script, then the host +# include dirs are added to the search path causing trouble +GST_PLUGINS_BASE_CONF_ENV = FT2_CONFIG=/bin/false + GST_PLUGINS_BASE_CONF_OPT = \ $(DISABLE_NLS) \ $(DISABLE_LARGEFILE) \ |