Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nirbheek Chauhan
cerbero
Commits
58c57851
Commit
58c57851
authored
Mar 18, 2013
by
Andoni Morales Alastruey
Browse files
gstreamer-static: use the base class for disable the gtk docs
parent
4231c4f5
Changes
8
Hide whitespace changes
Inline
Side-by-side
recipes/custom.py
View file @
58c57851
...
...
@@ -20,7 +20,7 @@ class GStreamerStatic(recipe.Recipe):
self
.
remotes
=
{
'upstream'
:
'git://anongit.freedesktop.org/gstreamer/%s'
%
self
.
project_name
}
if
self
.
config
.
target_platform
in
[
Platform
.
W
IN
DOWS
,
Platform
.
DARWIN
]
:
if
self
.
config
.
target_platform
!=
Platform
.
L
IN
UX
:
self
.
configure_options
+=
' --disable-gtk-doc'
self
.
configure_options
+=
' '
+
self
.
extra_configure_options
...
...
recipes/gnonlin-static.recipe
View file @
58c57851
...
...
@@ -12,7 +12,3 @@ class Recipe(custom.GStreamerStatic):
deps = ['gstreamer', 'gst-plugins-base' ]
files_plugins_gnl_devel = ['libgnl']
def prepare(self):
if self.config.target_platform != Platform.LINUX:
self.configure_options += ' --disable-gtk-doc'
recipes/gst-ffmpeg-static.recipe
View file @
58c57851
...
...
@@ -17,8 +17,6 @@ class Recipe(custom.GStreamerStatic):
files_plugins_codecs_restricted_devel = ['libgstffmpeg']
def prepare(self):
if self.config.target_platform != Platform.LINUX:
self.configure_options += ' --disable-gtk-doc'
if self.config.target_platform == Platform.WINDOWS:
self.configure_options += \
'--with-ffmpeg-extra-configure="--enable-w32threads"'
...
...
recipes/gst-plugins-bad-static.recipe
View file @
58c57851
...
...
@@ -143,8 +143,6 @@ class Recipe(custom.GStreamerStatic):
make_check = None
def prepare(self):
if self.config.target_platform != Platform.LINUX:
self.configure_options += ' --disable-gtk-doc'
if self.config.target_platform == Platform.WINDOWS:
self.configure_options += \
' --disable-cog --disable-sdl '\
...
...
recipes/gst-plugins-base-static.recipe
View file @
58c57851
...
...
@@ -83,8 +83,6 @@ class Recipe(custom.GStreamerStatic):
def prepare(self):
if self.config.target_platform != Platform.LINUX:
self.configure_options += ' --disable-gtk-doc'
if self.config.target_platform in [Platform.ANDROID, Platform.IOS]:
self.configure_options += ' --disable-alsa --disable-x'
if self.config.variants.nodebug:
...
...
recipes/gst-plugins-good-static.recipe
View file @
58c57851
...
...
@@ -103,8 +103,6 @@ class Recipe(custom.GStreamerStatic):
}
def prepare(self):
if self.config.target_platform != Platform.LINUX:
self.configure_options += ' --disable-gtk-doc'
if self.config.target_platform == Platform.WINDOWS:
self.configure_options += '--disable-aalib --disable-esd '
if self.config.target_platform in [Platform.ANDROID, Platform.IOS]:
...
...
recipes/gst-plugins-ugly-static.recipe
View file @
58c57851
...
...
@@ -26,8 +26,6 @@ class Recipe(custom.GStreamerStatic):
]
def prepare(self):
if self.config.target_platform != Platform.LINUX:
self.configure_options += ' --disable-gtk-doc'
if self.config.variants.nodebug:
self.configure_options += ' --disable-gst-debug'
super(Recipe, self).prepare()
recipes/gstreamer-static.recipe
View file @
58c57851
...
...
@@ -12,7 +12,7 @@ class Recipe(custom.GStreamerStatic):
def prepare(self):
if self.config.target_platform != Platform.LINUX:
self.configure_options += '
--disable-gtk-doc
--disable-docbook'
self.configure_options += ' --disable-docbook'
if self.config.target_platform == Platform.ANDROID:
self.make = '%s libcheckinternal_la_LIBADD=""' % self.make
if self.config.variants.nodebug:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment