Bug #7 ยป 0005-Meson-Define-SIZEOF_INT.patch
gen_headers/meson_fc_config.h.in | ||
---|---|---|
/* Processor stores words with the most significant byte first */
|
||
#mesondefine WORDS_BIGENDIAN
|
||
/* Size of int type */
|
||
#mesondefine SIZEOF_INT
|
||
/* Database backend available */
|
||
#mesondefine HAVE_FCDB
|
||
meson.build | ||
---|---|---|
priv_conf_data.set('WORDS_BIGENDIAN', 1)
|
||
endif
|
||
priv_conf_data.set('SIZEOF_INT', c_compiler.sizeof('int'))
|
||
if get_option('debug')
|
||
priv_conf_data.set('FREECIV_DEBUG', 1)
|
||
pub_conf_data.set('FREECIV_DEBUG', 1)
|