Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2006-01-10 22:12:18 +0300
committerLluis Sanchez <lluis@novell.com>2006-01-10 22:12:18 +0300
commit2a792cf9a1d2c6a8ac2f0ebc58bce6c83c5124fd (patch)
tree8135d3250e7c1354085702ba563f9f352ed86344 /configure.in
parent03f782922e274e73eda31c6a61095ab14b4f9517 (diff)
2006-01-10 Lluis Sanchez Gual <lluis@novell.com>
* configure.in: Added glade3 addin. svn path=/trunk/monodevelop/; revision=55330
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in13
1 files changed, 12 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index e0d2162509..1851ddc84e 100644
--- a/configure.in
+++ b/configure.in
@@ -101,7 +101,7 @@ AC_ARG_ENABLE(debugger,
enable_debugger=yes, enable_debugger=no)],
enable_debugger=no)
AM_CONDITIONAL(ENABLE_DEBUGGER, test x$enable_debugger = xyes)
- AC_SUBST(MONO_DEBUGGER_LIBS)
+ AC_SUBST(MONO_DEBUGGER_LIBS)
if test "x$enable_debugger" = "xyes"; then
AC_MSG_ERROR([The debugger add-in is not currently supported due to the API changes being done in the Mono debugger.])
@@ -162,6 +162,15 @@ AC_ARG_ENABLE(versioncontrol,
AM_CONDITIONAL(ENABLE_VERSIONCONTROL, test x$enable_versioncontrol = xyes)
+GLADEUI_REQUIRED_VERSION=0.1
+AC_ARG_ENABLE(glade,
+ AC_HELP_STRING([--enable-glade],
+ [enable support for Glade-3 [default=no]]),
+ [PKG_CHECK_MODULES(GLADEUI, gladeui-sharp >= $GLADEUI_REQUIRED_VERSION, enable_glade=yes, enable_glade=no)],
+ enable_glade=no)
+
+AM_CONDITIONAL(ENABLE_GLADE, test x$enable_glade = xyes)
+
MOZILLA_HOME="`$PKG_CONFIG --variable=libdir mozilla-gtkmozembed`"
AC_SUBST(MOZILLA_HOME)
@@ -259,6 +268,7 @@ Extras/MonoDevelop.SourceEditor/MonoDevelop.SourceEditor.dll.config
Extras/prj2make-sharp-lib/AssemblyInfo.cs
Extras/prj2make-sharp-lib/Makefile
Extras/WelcomePage/Makefile
+Extras/GladeAddIn/Makefile
Extras/ChangeLogAddIn/Makefile
Makefile
monodevelop
@@ -284,4 +294,5 @@ echo " * boo support: $enable_boo"
echo " * NUnit support: $enable_nunit"
echo " * Mono class library development extensions: $enable_monoextensions"
echo " * Version control support: $enable_versioncontrol"
+echo " * Glade-3 support: $enable_glade"
echo ""