diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2009-11-04 21:05:58 +0100 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2009-11-04 21:05:58 +0100 |
commit | d6164ef0dca3e1adff942815c15d6fe77fa7b536 (patch) | |
tree | 80d1ddce47bab745b8b84814c0dabb70fcc004f3 /SConstruct | |
parent | Initial import. (diff) | |
download | redshift-ng-d6164ef0dca3e1adff942815c15d6fe77fa7b536.tar.gz redshift-ng-d6164ef0dca3e1adff942815c15d6fe77fa7b536.tar.bz2 redshift-ng-d6164ef0dca3e1adff942815c15d6fe77fa7b536.tar.xz |
Use getopt() to parse arguments.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,5 +4,5 @@ sources = ['redshift.c', 'solar.c', 'colortemp.c'] env = Environment() env.ParseConfig('pkg-config --cflags --libs xcb xcb-randr') env.Program('redshift', sources, - CFLAGS='-std=c99 -D_BSD_SOURCE', + CFLAGS='-std=gnu99 -O2 -Wall', LINKFLAGS='-lm') |