summaryrefslogtreecommitdiffstats
path: root/rules/xorg-lib-Xfont2.in
diff options
context:
space:
mode:
authorBjörn Esser <b.esser@pengutronix.de>2019-09-25 11:14:34 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-10-01 21:35:27 +0200
commit5763596c25e748da6f48ec77aba9b51fc149f97b (patch)
tree8d370306d26a200dd2261d8a7fd600c9dad3a03c /rules/xorg-lib-Xfont2.in
parent3bb120160eafc193bcfce608510a53076ee06dc0 (diff)
downloadptxdist-5763596c25e748da6f48ec77aba9b51fc149f97b.tar.gz
ptxdist-5763596c25e748da6f48ec77aba9b51fc149f97b.tar.xz
xorg-lib-Xfont2: new package
Newer versions of the XServer need libXfont2. Signed-off-by: Björn Esser <b.esser@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/xorg-lib-Xfont2.in')
-rw-r--r--rules/xorg-lib-Xfont2.in70
1 files changed, 70 insertions, 0 deletions
diff --git a/rules/xorg-lib-Xfont2.in b/rules/xorg-lib-Xfont2.in
new file mode 100644
index 000000000..19e40fe8a
--- /dev/null
+++ b/rules/xorg-lib-Xfont2.in
@@ -0,0 +1,70 @@
+## SECTION=multimedia_xorg_lib
+
+# These are always required:
+# Requires: xproto fontsproto
+# Requires.private: fontenc
+# Libs.private: -lz -lm
+
+config XORG_LIB_XFONT2
+ tristate
+ select LIBC_M
+ select XORGPROTO
+ select XORG_LIB_FONTENC
+ select XORG_LIB_XTRANS
+ select ZLIB if XORG_LIB_XFONT2_BUILTIN_FONTS
+ select FREETYPE if XORG_LIB_XFONT2_FREETYPE
+ # disabling builtins is currently broken
+ select XORG_LIB_XFONT2_BUILTIN_FONTS
+ prompt "xorg-lib-xfont2 "
+ help
+ X font Library. At least one file based font support must be enabled
+ to make the xorg server (part dix) happy.
+
+config XORG_LIB_XFONT2_FREETYPE
+ depends on XORG_LIB_XFONT2
+ select FREETYPE
+ bool
+ prompt "Use freetype as rendering library"
+ help
+ This will enable freetype 2.x library.
+
+config XORG_LIB_XFONT2_FONTSERVER
+ depends on XORG_LIB_XFONT2
+ bool
+ prompt "Support font server connections"
+ help
+ This will support connections to font server.
+ FIXME: xorg server fails when font server connections are disabled.
+
+config XORG_LIB_XFONT2_PCF_FONTS
+ depends on XORG_LIB_XFONT2
+ bool
+ prompt "Support pcf format fonts"
+ help
+ Enable pcf format fonts in this X server.
+
+config XORG_LIB_XFONT2_BDF_FONTS
+ depends on XORG_LIB_XFONT2
+ bool
+ default y
+ prompt "Support bdf format fonts"
+ help
+ Enable bdf format fonts in this X server.
+
+config XORG_LIB_XFONT2_SNF_FONTS
+ depends on XORG_LIB_XFONT2
+ bool
+ prompt "Support snf format fonts"
+ help
+ Enable snf format fonts in this X server.
+
+config XORG_LIB_XFONT2_BUILTIN_FONTS
+ depends on XORG_LIB_XFONT2
+ bool
+ prompt "Support builtin fonts"
+ default y
+ help
+ Builtins (gzipped pcf format in .text segment). Enable this font type
+ if you don't have any fonts on you target nor a font server in your
+ network.
+ FIXME: xorg server fails to build when this entry is disabled.