mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
Merge branch 'master' of https://github.com/rheit/zdoom
This commit is contained in:
commit
3e0325c8b0
2 changed files with 17 additions and 1 deletions
|
@ -6807,7 +6807,18 @@ scriptwait:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PCD_PRINTBINARY:
|
case PCD_PRINTBINARY:
|
||||||
|
#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ >= 6)))
|
||||||
|
#define HAS_DIAGNOSTIC_PRAGMA
|
||||||
|
#endif
|
||||||
|
#ifdef HAS_DIAGNOSTIC_PRAGMA
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wformat="
|
||||||
|
#pragma GCC diagnostic ignored "-Wformat-extra-args"
|
||||||
|
#endif
|
||||||
work.AppendFormat ("%B", STACK(1));
|
work.AppendFormat ("%B", STACK(1));
|
||||||
|
#ifdef HAS_DIAGNOSTIC_PRAGMA
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
#endif
|
||||||
--sp;
|
--sp;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
@ -257,7 +257,12 @@ int main (int argc, char **argv)
|
||||||
#if defined(__MACH__) && !defined(NOASM)
|
#if defined(__MACH__) && !defined(NOASM)
|
||||||
unprotect_rtext();
|
unprotect_rtext();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Set LC_NUMERIC environment variable in case some library decides to
|
||||||
|
// clear the setlocale call at least this will be correct.
|
||||||
|
// Note that the LANG environment variable is overridden by LC_*
|
||||||
|
setenv ("LC_NUMERIC", "C", 1);
|
||||||
|
|
||||||
#ifndef NO_GTK
|
#ifndef NO_GTK
|
||||||
GtkAvailable = gtk_init_check (&argc, &argv);
|
GtkAvailable = gtk_init_check (&argc, &argv);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue