diff options
author | cos <cos> | 2013-06-16 15:58:55 +0200 |
---|---|---|
committer | cos <cos> | 2013-06-16 17:37:31 +0200 |
commit | b823332b9a8b176344c795df1f8938041a12bd70 (patch) | |
tree | 068c4d66b1d51ae4e11665b92751dfc7402ba620 | |
parent | c1e280da5137ba06e66a902ff8d3cbfe89b29d89 (diff) | |
download | dwb-fix/use_gtk2.zip |
Use gtk2 rather than gtk3.fix/use_gtk2
Quoting from the file INSTALL in the root of this repository:
The default build process will try to link against gtk2, if gtk2 isn't
installed it will link against gtk3.
Reading through irc logs for #dwb exposes some critisism for the matureness of
gtk3. Until upstream considers gtk3 being ready for prime time by building for
it by default, it makes no sense that the debian packaging deviates from
upstream by linking towards libs not primarily developed for.
-rw-r--r-- | debian/control | 3 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/control b/debian/control index 0db3d694..053b1b2e 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,8 @@ Section: web Priority: extra Maintainer: Nathan Owens <ndowens@gmx.us> Build-Depends: debhelper (>= 9), - libwebkitgtk-3.0-dev, + libwebkitgtk-dev, + libgtk2.0-dev, libgnutls-dev, libsoup2.4-dev, libjson0-dev, diff --git a/debian/rules b/debian/rules index a257481e..0bb32427 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f # -*- makefile -*- export DEB_BUILD_MAINT_OPTIONS = hardening=+all -export GTK=3 +export GTK=2 export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed COMMIT=d6755999c1b16af33353a4fc248a3e8c56abe49d |