diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-04-27 06:03:46 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-04-27 06:03:46 +0000 |
commit | 19a37fb5720813d3a03a9bbecfc512ff99545a07 (patch) | |
tree | c66718212e48d88cf6a705bc1ba8b3f5f57f5138 /main/gdk-pixbuf | |
parent | 6811459fbccea7742c1625637c6af3667dc034f6 (diff) | |
download | aports-19a37fb5720813d3a03a9bbecfc512ff99545a07.tar.bz2 aports-19a37fb5720813d3a03a9bbecfc512ff99545a07.tar.xz |
main/gdk-pixbuf: we need --with-x11
Otherwise will not the gdk-pixbuf-xlib.h be installed.
http://comments.gmane.org/gmane.linux.lfs.beyond.support/43641
Diffstat (limited to 'main/gdk-pixbuf')
-rw-r--r-- | main/gdk-pixbuf/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/gdk-pixbuf/APKBUILD b/main/gdk-pixbuf/APKBUILD index 3ac791db98..e00eb4b8d7 100644 --- a/main/gdk-pixbuf/APKBUILD +++ b/main/gdk-pixbuf/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=gdk-pixbuf pkgver=2.26.1 -pkgrel=0 +pkgrel=1 pkgdesc="GDK Pixbuf library" url="http://www.gtk.org/" arch="all" @@ -30,6 +30,7 @@ build() { cd "$_builddir" ./configure --prefix=/usr \ --sysconfdir=/etc \ + --with-x11 \ --mandir=/usr/share/man \ --infodir=/usr/share/info make || return 1 |