Don't ignore the 'intltool' check on non-Windows system, instead raise a configure error.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4879 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
435a479d98
commit
9521f7f2d5
@ -1,3 +1,10 @@
|
|||||||
|
2010-05-06 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
||||||
|
|
||||||
|
* wscript:
|
||||||
|
Don't ignore the 'intltool' check on non-Windows system, instead
|
||||||
|
raise a configure error.
|
||||||
|
|
||||||
|
|
||||||
2010-05-06 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
2010-05-06 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
||||||
|
|
||||||
* src/build.c:
|
* src/build.c:
|
||||||
|
6
wscript
6
wscript
@ -206,9 +206,9 @@ def configure(conf):
|
|||||||
conf.check_tool('intltool')
|
conf.check_tool('intltool')
|
||||||
if 'LINGUAS' in os.environ:
|
if 'LINGUAS' in os.environ:
|
||||||
conf.env['LINGUAS'] = os.environ['LINGUAS']
|
conf.env['LINGUAS'] = os.environ['LINGUAS']
|
||||||
except:
|
except Configure.ConfigurationError:
|
||||||
pass
|
if not is_win32:
|
||||||
|
raise
|
||||||
|
|
||||||
# GTK / GIO version check
|
# GTK / GIO version check
|
||||||
conf.check_cfg(package='gtk+-2.0', atleast_version='2.8.0', uselib_store='GTK',
|
conf.check_cfg(package='gtk+-2.0', atleast_version='2.8.0', uselib_store='GTK',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user