diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-05-13 22:59:29 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-05-13 23:07:05 -0700 |
commit | d2dea70415ca7ec390a2de11b224ab4cbb2c6b55 (patch) | |
tree | d9d39ce173af2dc2f51582a5b2097fca412dcfe4 /configure.ac | |
parent | e0ee41d155b210327eb9c9ad5334f80ed59439f4 (diff) | |
download | emacs-d2dea70415ca7ec390a2de11b224ab4cbb2c6b55.tar.gz emacs-d2dea70415ca7ec390a2de11b224ab4cbb2c6b55.tar.bz2 emacs-d2dea70415ca7ec390a2de11b224ab4cbb2c6b55.zip |
Default to disabling ImageMagick (Bug#33587)
ImageMagick has continuing stability and security problems, suggesting
that 'configure' should disable it by default. See Glenn Morris's notes
at: https://lists.gnu.org/r/emacs-devel/2018-12/msg00036.html
* INSTALL, etc/NEWS, nt/INSTALL.W64: Mention this.
* configure.ac (imagemagick): Default to off.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 79fe0c98c6f..d13dddfd9a9 100644 --- a/configure.ac +++ b/configure.ac @@ -432,7 +432,7 @@ OPTION_DEFAULT_ON([lcms2],[don't compile with Little CMS support]) OPTION_DEFAULT_ON([libsystemd],[don't compile with libsystemd support]) OPTION_DEFAULT_OFF([cairo],[compile with Cairo drawing (experimental)]) OPTION_DEFAULT_ON([xml2],[don't compile with XML parsing support]) -OPTION_DEFAULT_ON([imagemagick],[don't compile with ImageMagick image support]) +OPTION_DEFAULT_OFF([imagemagick],[compile with ImageMagick image support]) OPTION_DEFAULT_ON([json], [don't compile with native JSON support]) OPTION_DEFAULT_ON([xft],[don't use XFT for anti aliased fonts]) |