summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-12-19 23:26:19 +0000
committerDavid Robillard <d@drobilla.net>2012-12-19 23:26:19 +0000
commit74a4c2f441b939f8ce3a7b629c15b001578d7e6b (patch)
treeb25851a497f28de332ba3bbff8f6a4129e9a31d5 /wscript
parent1a7d288545790cee2019b82bf7b93905e0dab508 (diff)
downloadsuil-74a4c2f441b939f8ce3a7b629c15b001578d7e6b.tar.gz
suil-74a4c2f441b939f8ce3a7b629c15b001578d7e6b.tar.bz2
suil-74a4c2f441b939f8ce3a7b629c15b001578d7e6b.zip
Use libgtk-x11-2.0.so.0 (with .0 suffix) by default which is available on systems without the dev package (#871).
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@4863 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index ae78a11..8d45682 100644
--- a/wscript
+++ b/wscript
@@ -27,8 +27,8 @@ def options(opt):
opt.add_option('--no-shared', action='store_true', dest='no_shared',
help='Do not build shared library')
opt.add_option('--gtk2-lib-name', type='string', dest='gtk2_lib_name',
- default="libgtk-x11-2.0.so",
- help="Gtk2 library name [Default: libgtk-x11-2.0.so]")
+ default="libgtk-x11-2.0.so.0",
+ help="Gtk2 library name [Default: libgtk-x11-2.0.so.0]")
def configure(conf):
conf.load('compiler_c')