Commits
Mojca Miklavec authored bf0a5f89957
1 + | --- setup.py.orig 2019-03-01 11:39:55.000000000 +0100 |
2 + | +++ setup.py 2019-03-01 11:54:55.000000000 +0100 |
3 + | |
4 + | |
5 + | iswindows = os.name == 'nt' |
6 + | WERROR = "/WX" if iswindows else "-Werror" |
7 + | +WNOREGISTER = "" if iswindows else "-Wno-error=deprecated-register" |
8 + | WSTRICTPROTOTYPES = None if iswindows else "-Werror=strict-prototypes" |
9 + | WALL = "/Wall" if iswindows else "-Wall" |
10 + | STDC99 = "" if iswindows else "-std=c99" |
11 + | |
12 + | cflags.extend([NOOPTIMIZATION, PRODUCEDEBUGSYMBOLS]) |
13 + | else: |
14 + | cflags.append(WERROR) |
15 + | + cflags.append(WNOREGISTER) |
16 + | |
17 + | def get_env_path_list(var_name, default=None): |
18 + | '''Get a path list from an environment variable. The variable is parsed as |