Changed configure option --with-libgif to --enable-gif
gif now defines wxUSE_GIF instead of wxUSE_LIBGIF also added --enable-pcx (wxUSE_PCX) and --enable-pnm (wxUSE_PNM). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3644 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
35
configure.in
35
configure.in
@@ -661,7 +661,6 @@ if test $DEBUG_CONFIGURE = 1; then
|
|||||||
|
|
||||||
DEFAULT_wxUSE_ZLIB=no
|
DEFAULT_wxUSE_ZLIB=no
|
||||||
DEFAULT_wxUSE_LIBPNG=no
|
DEFAULT_wxUSE_LIBPNG=no
|
||||||
DEFAULT_wxUSE_LIBGIF=no
|
|
||||||
DEFAULT_wxUSE_LIBJPEG=no
|
DEFAULT_wxUSE_LIBJPEG=no
|
||||||
DEFAULT_wxUSE_ODBC=no
|
DEFAULT_wxUSE_ODBC=no
|
||||||
|
|
||||||
@@ -744,6 +743,10 @@ if test $DEBUG_CONFIGURE = 1; then
|
|||||||
|
|
||||||
DEFAULT_wxUSE_UNICODE=no
|
DEFAULT_wxUSE_UNICODE=no
|
||||||
DEFAULT_wxUSE_WCSRTOMBS=no
|
DEFAULT_wxUSE_WCSRTOMBS=no
|
||||||
|
|
||||||
|
DEFAULT_wxUSE_GIF=no
|
||||||
|
DEFAULT_wxUSE_PCX=no
|
||||||
|
DEFAULT_wxUSE_PNM=no
|
||||||
else
|
else
|
||||||
DEFAULT_wxUSE_THREADS=yes
|
DEFAULT_wxUSE_THREADS=yes
|
||||||
|
|
||||||
@@ -768,7 +771,6 @@ else
|
|||||||
|
|
||||||
DEFAULT_wxUSE_ZLIB=yes
|
DEFAULT_wxUSE_ZLIB=yes
|
||||||
DEFAULT_wxUSE_LIBPNG=yes
|
DEFAULT_wxUSE_LIBPNG=yes
|
||||||
DEFAULT_wxUSE_LIBGIF=yes
|
|
||||||
DEFAULT_wxUSE_LIBJPEG=yes
|
DEFAULT_wxUSE_LIBJPEG=yes
|
||||||
DEFAULT_wxUSE_ODBC=no
|
DEFAULT_wxUSE_ODBC=no
|
||||||
|
|
||||||
@@ -851,6 +853,10 @@ else
|
|||||||
|
|
||||||
DEFAULT_wxUSE_UNICODE=no
|
DEFAULT_wxUSE_UNICODE=no
|
||||||
DEFAULT_wxUSE_WCSRTOMBS=no
|
DEFAULT_wxUSE_WCSRTOMBS=no
|
||||||
|
|
||||||
|
DEFAULT_wxUSE_GIF=yes
|
||||||
|
DEFAULT_wxUSE_PCX=yes
|
||||||
|
DEFAULT_wxUSE_PNM=yes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl WX_ARG_WITH should be used to select whether an external package will be
|
dnl WX_ARG_WITH should be used to select whether an external package will be
|
||||||
@@ -886,7 +892,6 @@ AC_ARG_WITH(gtk-exec-prefix, [ --with-gtk-exec-prefix=PFX Exec prefix where GT
|
|||||||
WX_ARG_WITH(dmalloc, [ --with-dmalloc use dmalloc library (www.letters.com/dmalloc)], wxUSE_DMALLOC)
|
WX_ARG_WITH(dmalloc, [ --with-dmalloc use dmalloc library (www.letters.com/dmalloc)], wxUSE_DMALLOC)
|
||||||
WX_ARG_WITH(zlib, [ --with-zlib use zlib for LZW compression], wxUSE_ZLIB)
|
WX_ARG_WITH(zlib, [ --with-zlib use zlib for LZW compression], wxUSE_ZLIB)
|
||||||
WX_ARG_WITH(libpng, [ --with-libpng use libpng (PNG image format)], wxUSE_LIBPNG)
|
WX_ARG_WITH(libpng, [ --with-libpng use libpng (PNG image format)], wxUSE_LIBPNG)
|
||||||
WX_ARG_WITH(libgif, [ --with-libgif use libgif (GIF file format)], wxUSE_LIBGIF)
|
|
||||||
WX_ARG_WITH(libjpeg, [ --with-libjpeg use libjpeg (JPEG file format)], wxUSE_LIBJPEG)
|
WX_ARG_WITH(libjpeg, [ --with-libjpeg use libjpeg (JPEG file format)], wxUSE_LIBJPEG)
|
||||||
WX_ARG_WITH(opengl, [ --with-opengl use OpenGL (or Mesa)], wxUSE_OPENGL)
|
WX_ARG_WITH(opengl, [ --with-opengl use OpenGL (or Mesa)], wxUSE_OPENGL)
|
||||||
WX_ARG_WITH(odbc, [ --with-odbc use the IODBC and wxODBC classes], wxUSE_ODBC)
|
WX_ARG_WITH(odbc, [ --with-odbc use the IODBC and wxODBC classes], wxUSE_ODBC)
|
||||||
@@ -1115,6 +1120,14 @@ WX_ARG_ENABLE(splines, [ --enable-splines use spline drawing code],
|
|||||||
WX_ARG_ENABLE(validators, [ --enable-validators use wxValidator and derived classes], wxUSE_VALIDATORS)
|
WX_ARG_ENABLE(validators, [ --enable-validators use wxValidator and derived classes], wxUSE_VALIDATORS)
|
||||||
WX_ARG_ENABLE(busyinfo, [ --enable-busyinfo use wxBusyInfo], wxUSE_BUSYINFO)
|
WX_ARG_ENABLE(busyinfo, [ --enable-busyinfo use wxBusyInfo], wxUSE_BUSYINFO)
|
||||||
|
|
||||||
|
dnl ---------------------------------------------------------------------------
|
||||||
|
dnl support for image formats that do not rely on external library
|
||||||
|
dnl ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
WX_ARG_ENABLE(gif, [ --enable-gif use gif images (GIF file format)], wxUSE_GIF)
|
||||||
|
WX_ARG_ENABLE(pcx, [ --enable-pcx use pcx images (PCX file format)], wxUSE_PCX)
|
||||||
|
WX_ARG_ENABLE(pnm, [ --enable-pnm use pnm images (PNM file format)], wxUSE_PNM)
|
||||||
|
|
||||||
dnl cache the options values before (may be) aborting below
|
dnl cache the options values before (may be) aborting below
|
||||||
WX_ARG_CACHE_FLUSH
|
WX_ARG_CACHE_FLUSH
|
||||||
|
|
||||||
@@ -2077,10 +2090,6 @@ if test "$wxUSE_LIBPNG" = "yes" ; then
|
|||||||
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS png"
|
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS png"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$wxUSE_LIBGIF" = "yes" ; then
|
|
||||||
AC_DEFINE(wxUSE_LIBGIF)
|
|
||||||
fi
|
|
||||||
|
|
||||||
JPEG_INCLUDE=
|
JPEG_INCLUDE=
|
||||||
if test "$wxUSE_LIBJPEG" = "yes" ; then
|
if test "$wxUSE_LIBJPEG" = "yes" ; then
|
||||||
AC_DEFINE(wxUSE_LIBJPEG)
|
AC_DEFINE(wxUSE_LIBJPEG)
|
||||||
@@ -2633,6 +2642,18 @@ if test "$wxUSE_VALIDATORS" = "yes"; then
|
|||||||
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate"
|
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS validate"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test "$wxUSE_GIF" = "yes" ; then
|
||||||
|
AC_DEFINE(wxUSE_GIF)
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$wxUSE_PCX" = "yes" ; then
|
||||||
|
AC_DEFINE(wxUSE_PCX)
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$wxUSE_PNM" = "yes" ; then
|
||||||
|
AC_DEFINE(wxUSE_PNM)
|
||||||
|
fi
|
||||||
|
|
||||||
dnl ---------------------------------------------------------------------------
|
dnl ---------------------------------------------------------------------------
|
||||||
dnl Output the makefiles and such from the results found above
|
dnl Output the makefiles and such from the results found above
|
||||||
dnl ---------------------------------------------------------------------------
|
dnl ---------------------------------------------------------------------------
|
||||||
|
18
setup.h.in
18
setup.h.in
@@ -107,10 +107,6 @@
|
|||||||
* Use libjpeg
|
* Use libjpeg
|
||||||
*/
|
*/
|
||||||
#define wxUSE_LIBJPEG 0
|
#define wxUSE_LIBJPEG 0
|
||||||
/*
|
|
||||||
* Use libgif
|
|
||||||
*/
|
|
||||||
#define wxUSE_LIBGIF 0
|
|
||||||
/*
|
/*
|
||||||
* Use iODBC
|
* Use iODBC
|
||||||
*/
|
*/
|
||||||
@@ -541,6 +537,20 @@
|
|||||||
*/
|
*/
|
||||||
#define wxUSE_ZIPSTREAM 0
|
#define wxUSE_ZIPSTREAM 0
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GIF image format support
|
||||||
|
*/
|
||||||
|
#define wxUSE_GIF 0
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PCX image format support
|
||||||
|
*/
|
||||||
|
#define wxUSE_PCX 0
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PNM image format support
|
||||||
|
*/
|
||||||
|
#define wxUSE_PNM 0
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Disable this if your compiler can't cope
|
* Disable this if your compiler can't cope
|
||||||
|
Reference in New Issue
Block a user