Commits
Ryan Schmidt authored 52e7b276693
1 + | Don't require C11. |
2 + | This requirement arose from a bug in Harfbuzz 2 which was fixed in 2.3.0. |
3 + | Reverts https://github.com/kovidgoyal/kitty/commit/f098e6c973c5b514edb6047546bdd90c0705332b |
4 + | --- setup.py.orig 2019-01-03 22:07:59.000000000 -0600 |
5 + | +++ setup.py 2019-01-14 20:26:50.000000000 -0600 |
6 + | |
7 + | cppflags = shlex.split(cppflags) |
8 + | cflags = os.environ.get( |
9 + | 'OVERRIDE_CFLAGS', ( |
10 + | - '-Wextra -Wno-missing-field-initializers -Wall -std=c11' |
11 + | + '-Wextra -Wno-missing-field-initializers -Wall -std=c99' |
12 + | ' -pedantic-errors -Werror {} {} -fwrapv {} {} -pipe {} -fvisibility=hidden' |
13 + | ).format( |
14 + | optimize, |