diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-04-01 14:35:13 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-04-01 14:38:02 -0400 |
commit | 570fc8af37610aad28af30e4c2363b5a43deeb18 (patch) | |
tree | 5f52a7c30ec99a1868135aadfb4197a7ad79a555 /configure.ac | |
parent | e6278559bdcee9626f9f593f40d7af8556419b19 (diff) | |
download | dimension-570fc8af37610aad28af30e4c2363b5a43deeb18.tar.xz |
Add --disable-gl 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 089470d..e14f04e 100644 --- a/configure.ac +++ b/configure.ac @@ -31,6 +31,14 @@ AC_PROG_LN_S AC_PROG_MAKE_SET AC_PROG_LIBTOOL +dnl OpenGL canvas export +AC_ARG_ENABLE([gl], + [AS_HELP_STRING([--enable-gl], + [Enable OpenGL canvas export [default=yes]])], + [], + [enable_gl=yes]) +AM_CONDITIONAL([GL], [test "$enable_gl" != "no"]) + dnl Profile-guided optimization (default disabled) AC_ARG_ENABLE([pgo], [AS_HELP_STRING([--enable-pgo], |