diff options
author | Chris Toshok <toshok@helixcode.com> | 2000-08-14 11:13:09 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-08-14 11:13:09 +0800 |
commit | 25fd66555055bfbb85510a570a9c6982d806e1b2 (patch) | |
tree | e77d343867426dfa5ac66920ae1055de7752b16e /configure.in | |
parent | b49b79422aae9bf858fe8d0524da9913e8670f0a (diff) | |
download | gsoc2013-evolution-25fd66555055bfbb85510a570a9c6982d806e1b2.tar gsoc2013-evolution-25fd66555055bfbb85510a570a9c6982d806e1b2.tar.gz gsoc2013-evolution-25fd66555055bfbb85510a570a9c6982d806e1b2.tar.bz2 gsoc2013-evolution-25fd66555055bfbb85510a570a9c6982d806e1b2.tar.lz gsoc2013-evolution-25fd66555055bfbb85510a570a9c6982d806e1b2.tar.xz gsoc2013-evolution-25fd66555055bfbb85510a570a9c6982d806e1b2.tar.zst gsoc2013-evolution-25fd66555055bfbb85510a570a9c6982d806e1b2.zip |
offer --enable-pilot-conduits to add pilot conduits if the user wants
2000-08-13 Chris Toshok <toshok@helixcode.com>
* configure.in: offer --enable-pilot-conduits to add pilot
conduits if the user wants them.
svn path=/trunk/; revision=4833
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 62f2c61184..ebeb4942d2 100644 --- a/configure.in +++ b/configure.in @@ -348,8 +348,12 @@ AC_SUBST(BONOBO_VFS_GNOME_CFLAGS) dnl ****************************** dnl Pilot checking dnl ****************************** +AC_ARG_ENABLE(pilot-conduits, +[ --enable-pilot-conduits=[no/yes] Enable support for building pilot conduits.],,enable_pilot_conduits=no) +if test "x$enable_pilot_conduits" = "xyes"; then GNOME_PILOT_CHECK - +fi +AM_CONDITIONAL(ENABLE_PILOT_CONDUITS, test "x$enable_pilot_conduits" = "xyes") dnl ****** dnl XML |