summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct3
1 files changed, 1 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index cbc8521..97e885a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -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'))