diff options
| author | Lars Magne Ingebrigtsen | 2010-09-27 22:53:35 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2010-09-27 22:53:35 +0200 |
| commit | 8ea189f7bfe01e5313e0b95078171718ea5e0d4f (patch) | |
| tree | c2dc955237ec7922807fcebd4c6c5fe1bf99e4c7 | |
| parent | d8a4b27a847945fb629067132d7287cc075083dd (diff) | |
| download | emacs-8ea189f7bfe01e5313e0b95078171718ea5e0d4f.tar.gz emacs-8ea189f7bfe01e5313e0b95078171718ea5e0d4f.zip | |
Compile with imagemagick support by default.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rwxr-xr-x | configure | 4 | ||||
| -rw-r--r-- | configure.in | 2 | ||||
| -rw-r--r-- | etc/NEWS | 4 |
4 files changed, 9 insertions, 5 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * configure.in: Enable imagemagick by default. | ||
| 4 | |||
| 1 | 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org> | 5 | 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 6 | ||
| 3 | * configure.in (HAVE_GNUTLS): Don't break if we don't have the | 7 | * configure.in (HAVE_GNUTLS): Don't break if we don't have the |
| @@ -1521,7 +1521,7 @@ Optional Packages: | |||
| 1521 | --without-png don't compile with PNG image support | 1521 | --without-png don't compile with PNG image support |
| 1522 | --without-rsvg don't compile with SVG image support | 1522 | --without-rsvg don't compile with SVG image support |
| 1523 | --without-xml2 don't compile with XML parsing support | 1523 | --without-xml2 don't compile with XML parsing support |
| 1524 | --with-imagemagick compile with ImageMagick image support | 1524 | --without-imagemagick don't compile with ImageMagick image support |
| 1525 | --without-xft don't use XFT for anti aliased fonts | 1525 | --without-xft don't use XFT for anti aliased fonts |
| 1526 | --without-libotf don't use libotf for OpenType font support | 1526 | --without-libotf don't use libotf for OpenType font support |
| 1527 | --without-m17n-flt don't use m17n-flt for text shaping | 1527 | --without-m17n-flt don't use m17n-flt for text shaping |
| @@ -2752,7 +2752,7 @@ fi | |||
| 2752 | if test "${with_imagemagick+set}" = set; then : | 2752 | if test "${with_imagemagick+set}" = set; then : |
| 2753 | withval=$with_imagemagick; | 2753 | withval=$with_imagemagick; |
| 2754 | else | 2754 | else |
| 2755 | with_imagemagick=no | 2755 | with_imagemagick=yes |
| 2756 | fi | 2756 | fi |
| 2757 | 2757 | ||
| 2758 | 2758 | ||
diff --git a/configure.in b/configure.in index 82d8eced97e..289ef3195d2 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -156,7 +156,7 @@ OPTION_DEFAULT_ON([gif],[don't compile with GIF image support]) | |||
| 156 | OPTION_DEFAULT_ON([png],[don't compile with PNG image support]) | 156 | OPTION_DEFAULT_ON([png],[don't compile with PNG image support]) |
| 157 | OPTION_DEFAULT_ON([rsvg],[don't compile with SVG image support]) | 157 | OPTION_DEFAULT_ON([rsvg],[don't compile with SVG image support]) |
| 158 | OPTION_DEFAULT_ON([xml2],[don't compile with XML parsing support]) | 158 | OPTION_DEFAULT_ON([xml2],[don't compile with XML parsing support]) |
| 159 | OPTION_DEFAULT_OFF([imagemagick],[compile with ImageMagick image support]) | 159 | OPTION_DEFAULT_ON([imagemagick],[don't compile with ImageMagick image support]) |
| 160 | 160 | ||
| 161 | OPTION_DEFAULT_ON([xft],[don't use XFT for anti aliased fonts]) | 161 | OPTION_DEFAULT_ON([xft],[don't use XFT for anti aliased fonts]) |
| 162 | OPTION_DEFAULT_ON([libotf],[don't use libotf for OpenType font support]) | 162 | OPTION_DEFAULT_ON([libotf],[don't use libotf for OpenType font support]) |
| @@ -115,8 +115,8 @@ for this. | |||
| 115 | 115 | ||
| 116 | ** ImageMagick support. | 116 | ** ImageMagick support. |
| 117 | It is now possible to use the Imagemagick library to load many new | 117 | It is now possible to use the Imagemagick library to load many new |
| 118 | image formats in Emacs. To enable this, use the configure option | 118 | image formats in Emacs. It is enable by default. To disable this, use |
| 119 | `--with-imagemagick'. | 119 | the configure option `--without-imagemagick'. |
| 120 | 120 | ||
| 121 | The new function `imagemagick-types' returns a list of image file | 121 | The new function `imagemagick-types' returns a list of image file |
| 122 | extensions that your installation of ImageMagick supports. The | 122 | extensions that your installation of ImageMagick supports. The |