diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-04-01 14:45:42 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-04-01 14:45:42 -0400 |
commit | e0313016725bc9f87243571e75b2e77f1cae265e (patch) | |
tree | 9b5cd9c078c73020e6520fcc167a78fe690043d9 /configure.ac | |
parent | 570fc8af37610aad28af30e4c2363b5a43deeb18 (diff) | |
download | dimension-e0313016725bc9f87243571e75b2e77f1cae265e.tar.xz |
Add --disable-png configure option.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index e14f04e..1d6138a 100644 --- a/configure.ac +++ b/configure.ac @@ -31,6 +31,14 @@ AC_PROG_LN_S AC_PROG_MAKE_SET AC_PROG_LIBTOOL +dnl PNG canvas export +AC_ARG_ENABLE([png], + [AS_HELP_STRING([--enable-png], + [Enable PNG canvas export [default=yes]])], + [], + [enable_png=yes]) +AM_CONDITIONAL([PNG], [test "$enable_png" != "no"]) + dnl OpenGL canvas export AC_ARG_ENABLE([gl], [AS_HELP_STRING([--enable-gl], |