1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
AC_ARG_ENABLE([x11],
[AS_HELP_STRING([--disable-x11],
[disable X11 support])],
[],
[enable_x11=yes])
AC_ARG_ENABLE([jpeg],
[AS_HELP_STRING([--disable-jpeg],
[disable JPEG support])],
[],
[enable_jpeg=yes])
AC_ARG_WITH([jpeg-includedir],
[AS_HELP_STRING([--with-jpeg-includedir],
[Specify include directory to use for libjpeg])],
[],
[with_jpeg_includedir=])
AC_ARG_WITH([jpeg-libdir],
[AS_HELP_STRING([--with-jpeg-libdir],
[Specify library directory for libjpeg])],
[],
[with_jpeg_libdir=])
AC_ARG_ENABLE([png],
[AS_HELP_STRING([--disable-png],
[disable PNG support])],
[],
[enable_png=yes])
|