summaryrefslogtreecommitdiff
path: root/recipes
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-05-27 13:51:16 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-05-27 13:51:16 +0200
commitf3c97cb7fcaa5eb5d5eb176366cfe166e682a6d2 (patch)
treee3d8150dcb3ba5e9f957508f293ab78f8a932963 /recipes
parentba2507638a00ef262698aeaf66d21f38d6333aca (diff)
gettext: add missing dep in mingw-runtime on windows
Diffstat (limited to 'recipes')
-rw-r--r--recipes/gettext.recipe5
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes/gettext.recipe b/recipes/gettext.recipe
index faad002..26c4a86 100644
--- a/recipes/gettext.recipe
+++ b/recipes/gettext.recipe
@@ -7,7 +7,10 @@ class Recipe(recipe.Recipe):
# only libraries are LGPLv2+, tools are GPLv3+ and defined below
licenses = [License.LGPLv2Plus]
srcdir = 'gettext-runtime'
- platform_deps = {Platform.DARWIN: ['libiconv']}
+ platform_deps = {
+ Platform.DARWIN: ['libiconv'],
+ Platform.WINDOWS: ['mingw-runtime'],
+ }
files_libs = ['libintl']
files_devel = ['include/libintl.h']