# HG changeset patch # User Etan Reisner # Date 1132198718 0 # Node ID b8c5b67a54751d848b06c6d578b6a50adbd6d11c # Parent 312efb43c49a43ac98dafcc7feb86dca2be3c4fe [gaim-migrate @ 14420] Perl and Mono should probably be listed in the About box as enabled/disabled. committer: Tailor Script diff -r 312efb43c49a -r b8c5b67a5475 configure.ac --- a/configure.ac Thu Nov 17 00:11:53 2005 +0000 +++ b/configure.ac Thu Nov 17 03:38:38 2005 +0000 @@ -726,7 +726,8 @@ else AC_SUBST(PERL_CFLAGS) AC_SUBST(PERL_LIBS) - AM_CONDITIONAL(USE_PERL, test "x$enable_perl" = "xyes") + AM_CONDITIONAL(USE_PERL, true) + AC_DEFINE(HAVE_PERL, [1], [Compile with support for perl]) dnl This is almost definitely wrong, but in case there's dnl something I'm missing, I'll leave it in. diff -r 312efb43c49a -r b8c5b67a5475 src/gtkdialogs.c --- a/src/gtkdialogs.c Thu Nov 17 00:11:53 2005 +0000 +++ b/src/gtkdialogs.c Thu Nov 17 03:38:38 2005 +0000 @@ -403,6 +403,18 @@ g_string_append(str, " Startup Notification: Disabled
"); #endif +#ifdef ENABLE_MONO + g_string_append(str, " Mono: Enabled
"); +#else + g_string_append(str, " Mono: Disabled
"); +#endif + +#ifdef HAVE_PERL + g_string_append(str, " Perl: Enabled
"); +#else + g_string_append(str, " Perl: Disabled
"); +#endif + #ifdef HAVE_TCL g_string_append(str, " Tcl: Enabled
"); #else