summaryrefslogtreecommitdiffstats
path: root/rules/gtk.in
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2006-04-03 08:30:45 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2006-04-03 08:30:45 +0000
commit604571e8d55cff8e723102ee63b8045abe6fb29f (patch)
treeb7b450b600086ec90b9ce99d22b480aaff991bf8 /rules/gtk.in
parentb9de3d40917c779b8f4167c8d8aaa3d9fc77638b (diff)
downloadptxdist-604571e8d55cff8e723102ee63b8045abe6fb29f.tar.gz
ptxdist-604571e8d55cff8e723102ee63b8045abe6fb29f.tar.xz
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.10-trunk@5328 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/gtk.in')
-rw-r--r--rules/gtk.in72
1 files changed, 72 insertions, 0 deletions
diff --git a/rules/gtk.in b/rules/gtk.in
new file mode 100644
index 000000000..79ca266e8
--- /dev/null
+++ b/rules/gtk.in
@@ -0,0 +1,72 @@
+menuconfig GTK
+ bool
+ prompt "gtk+"
+ select GLIB
+ select ATK
+ select PANGO
+# select LIBTIFF if GTK_LIBTIFF
+ select LIBPNG if GTK_LIBPNG
+ select LIBJPEG if GTK_LIBJPG
+ select XORG_LIB_XEXT if GTK_TARGET_X11
+ select XORG_LIB_XINERAMA if GTK_TARGET_X11_XINERAMA
+ select XORG_LIB_XRANDR if GTK_TARGET_X11_XRANDR
+ help
+ The GTK+ is a multi-platform toolkit for creating graphical
+ user interfaces. Offering a complete set of widgets, the GTK+
+ is suitable for projects ranging from small one-off tools to complete
+ application suites.
+
+choice
+ prompt "gtk+ version"
+ depends on GTK
+ default GTK_28
+
+config GTK_28
+ bool
+ prompt "2.8.x"
+
+endchoice
+
+
+config GTK_LIBTIFF
+ bool
+ prompt "TIFF loader for gdk-pixbuf"
+ depends on GTK
+ default y
+
+config GTK_LIBJPEG
+ bool
+ prompt "JPEG loader for gdk-pixbuf"
+ depends on GTK
+ default y
+
+config GTK_LIBPNG
+ bool
+ prompt "PNG loader for gdk-pixbuf"
+ depends on GTK
+ default y
+
+
+choice
+ prompt "gdk-target"
+ depends on GTK
+
+config GTK_TARGET_X11
+ bool
+ prompt "gdk-target X11"
+ depends on GTK
+ select CAIRO_XLIB
+endchoice
+
+config GTK_TARGET_X11_XINERAMA
+ bool
+ prompt "Xinerama support"
+ depends on GTK
+ depends on GTK_TARGET_X11
+
+config GTK_TARGET_X11_XRANDR
+ bool
+ prompt "Xrandr support"
+ depends on GTK
+ depends on GTK_TARGET_X11
+