aboutsummaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorDmitry Antipov <[email protected]>2012-08-07 08:16:47 +0400
committerDmitry Antipov <[email protected]>2012-08-07 08:16:47 +0400
commitc30d4aef5419be1c054219e0bf3168dec7c84e22 (patch)
tree4e1e229adea804b8e7eae8f94df5012096f8f07d /INSTALL
parent54eea618176c6aaa8d2d7b60496547d9312a49b4 (diff)
* configure.ac: New option --disable-features.
(OPTION_DEFAULT_ON): Change to use enable_features. * INSTALL: Explain --disable-features.
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL14
1 files changed, 14 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
index 892ee5e451..7679a1966e 100644
--- a/INSTALL
+++ b/INSTALL
@@ -319,6 +319,20 @@ systems which support that.
Use --without-sound to disable sound support.
+Use --disable-features if you want to build small executable with
+the minimal dependencies from an external libraries, at the cost
+of disabling most of the features which are enabled by default.
+Using --disable-features is equivalent to --without-sound --without-dbus
+--without-libotf --without-selinux --without-xft --without-gsettings
+--without-gnutls --without-rsvg --without-xml2 --without-gconf
+--without-imagemagick --without-m17n-flt --without-jpeg --without-tiff
+--without-gif --without-png --without-gpm. Note that --disable-features
+leaves X support enabled, and using GTK2 or GTK3 toolkit creates a lot
+of library dependencies. So if you want to build small executable with
+the very basic X support, use --disable-features --with-x-toolkit=no.
+For the smallest possible executable without X, use --disable-features
+--without-x.
+
Use --with-wide-int to implement Emacs values with the type 'long long',
even on hosts where a narrower type would do. With this option, on a
typical 32-bit host, Emacs integers have 62 bits instead of 30.