# HG changeset patch # User Gary Kramlich # Date 1118090437 0 # Node ID e5f99cbcda9cff98000be72427520d25d0e141bc # Parent edf34b69dcc1c709bf29612bdb2175889cc55e67 [gaim-migrate @ 12800] If we're not building plugins, let's not build perl or tcl as well. committer: Tailor Script diff -r edf34b69dcc1 -r e5f99cbcda9c configure.ac --- a/configure.ac Mon Jun 06 15:56:50 2005 +0000 +++ b/configure.ac Mon Jun 06 20:40:37 2005 +0000 @@ -420,6 +420,10 @@ dnl ####################################################################### dnl # Check for Perl support dnl ####################################################################### +if test "$enable_plugins" = no ; then + enable_perl=no +fi + if test "$enable_perl" = yes ; then AC_PATH_PROG(perlpath, perl) AC_MSG_CHECKING(for Perl compile flags) @@ -910,6 +914,10 @@ fi dnl Check for Tcl +if test "$enable_plugins" = no; then + enable_tcl=no +fi + if test "$enable_tcl" = yes; then AC_MSG_CHECKING([for tclConfig.sh]) TCLCONFIG=no