mirror of https://github.com/GNOME/gimp.git
build/win: Never build webkitgtk with debugging symbols.
I've seen the dll take insane amounts of space (3.3 GB) with debug symbols on some compilers, and I doubt the symbols will be needed.
This commit is contained in:
parent
18282a8b7a
commit
a2cee5d589
|
@ -185,7 +185,8 @@ module_autogenargs['ghostscript']= autogenargs + """ --without-jasper \
|
|||
module_autogenargs['poppler']= autogenargs + """ ac_cv_func_strcpy_s='no'\
|
||||
ac_cv_func_strcat_s='no' """
|
||||
|
||||
module_autogenargs['webkitgtk'] = autogenargs + """ --with-gtk=2.0 \
|
||||
module_autogenargs['webkitgtk'] = autogenargs.replace ("--enable-debug=yes", "") + """ \
|
||||
--with-gtk=2.0 \
|
||||
--with-target=win32 \
|
||||
--disable-webkit2 \
|
||||
--disable-geolocation \
|
||||
|
@ -222,7 +223,8 @@ module_extra_env.update (
|
|||
{'mingw32-pthreads':
|
||||
{'PREFIX': prefix, 'INSTALL': 'install'},
|
||||
'webkitgtk':
|
||||
{'CXXFLAGS': os.environ['CXXFLAGS'] + ' -I' + checkoutroot + 'pthreads-w32-2-9-1-release -w'},
|
||||
{'CFLAGS': os.environ['CFLAGS'].replace ("-g", ""),
|
||||
'CXXFLAGS': os.environ['CXXFLAGS'].replace ("-g", "") + ' -I' + checkoutroot + 'pthreads-w32-2-9-1-release -w'},
|
||||
'libmng':
|
||||
{'PREFIX': prefix, 'CFLAGS': os.environ['CFLAGS'] + os.environ['LDFLAGS']},
|
||||
'ghostscript':
|
||||
|
|
Loading…
Reference in New Issue