diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-06-27 02:21:45 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-06-27 02:21:45 +0800 |
commit | e923d2eea9e325677c57f88e1209765acb306846 (patch) | |
tree | d6d04bad75e1d5449799db9a27cf7279c5152ca9 /configure.in | |
parent | a6123511735299f9811a40ed55344a9fcba90655 (diff) | |
download | gsoc2013-evolution-e923d2eea9e325677c57f88e1209765acb306846.tar.gz gsoc2013-evolution-e923d2eea9e325677c57f88e1209765acb306846.tar.zst gsoc2013-evolution-e923d2eea9e325677c57f88e1209765acb306846.zip |
Make the broken threads optional
svn path=/trunk/; revision=3740
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.in b/configure.in index c3693eb263..1e6b5cf2ea 100644 --- a/configure.in +++ b/configure.in @@ -157,6 +157,16 @@ THREADS_CFLAGS="`glib-config --cflags gthread`" AC_SUBST(THREADS_LIBS) AC_SUBST(THREADS_CFLAGS) +AC_ARG_ENABLE([broken-threads],[ --enable-broken-threads Enable the broken threads in evolution-mail],[ + use_bt=$enableval +],[ + use_bt=no +]) + +if test x"$use_bt" = xyes ; then + AC_DEFINE(USE_BROKEN_THREADS) +fi + dnl ************************************************** dnl * Print check dnl ************************************************** |