diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2010-11-15 18:46:40 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2010-11-15 18:46:40 +0100 |
commit | 14e35e4d1f2f8927685b0c55bdc1f5d6bd5a2e9f (patch) | |
tree | 87eb0eaff490900144ad00024815f65d7b702d16 /SConstruct | |
parent | ad044e229af5e523699a977e7c0393d42695586e (diff) |
Removed XML export.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -3,7 +3,7 @@ AddOption('--release', action = 'store_true') env = Environment() conf = Configure(env) -for lib in ('config', 'pcre', 'xml2'): +for lib in ('config', 'pcre'): if not conf.CheckLib(lib): print 'Could not find %s' % lib Exit(1) @@ -18,7 +18,6 @@ else: env.ParseConfig('pkg-config --cflags --libs libconfig') env.ParseConfig('pcre-config --cflags --libs') -env.ParseConfig('xml2-config --cflags --libs') env.Program('ircstats', Glob('*.c')) |