summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrand Lorentz <bertrand.lorentz@gmail.com>2011-08-17 12:45:37 +0200
committerBertrand Lorentz <bertrand.lorentz@gmail.com>2011-08-17 12:45:37 +0200
commit7918fba0e19a8d68708cbdf2c152f6a91960e399 (patch)
tree4628bd0a94199315cdcb30a29e57094951b22b6f
parenta147adfcd7ff8a9de87fd6940811e54056037239 (diff)
build: Remove GTK3 detection and conditional compilation
We're not doing to do any conditional compilation for GTK3 stuff, the port is happening in the gtk3 branch which will be merged in when it's ready.
-rw-r--r--build/build.rules.mk6
-rw-r--r--build/m4/banshee/gtk-sharp.m426
2 files changed, 6 insertions, 26 deletions
diff --git a/build/build.rules.mk b/build/build.rules.mk
index 5447db983..348e7cdb4 100644
--- a/build/build.rules.mk
+++ b/build/build.rules.mk
@@ -22,10 +22,6 @@ if ENABLE_TESTS
ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
endif
-if HAVE_GTK3
- GTK3_FLAG = "-define:GTK3"
-endif
-
FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
@@ -64,7 +60,7 @@ $(ASSEMBLY_FILE): $(SOURCES_BUILD) $(RESOURCES_EXPANDED) $(DEP_LINK)
$(ASSEMBLY_BUILD_FLAGS) \
-nowarn:0278 -nowarn:0078 $$warn \
-debug -target:$(TARGET) -out:$@ \
- $(BUILD_DEFINES) $(ENABLE_TESTS_FLAG) $(GTK3_FLAG) \
+ $(BUILD_DEFINES) $(ENABLE_TESTS_FLAG) \
$(FILTERED_LINK) $(RESOURCES_BUILD) $(SOURCES_BUILD)
@if [ -e $(srcdir)/$(notdir $@.config) ]; then \
cp $(srcdir)/$(notdir $@.config) $(top_builddir)/bin; \
diff --git a/build/m4/banshee/gtk-sharp.m4 b/build/m4/banshee/gtk-sharp.m4
index b57140f7e..529a0e7ba 100644
--- a/build/m4/banshee/gtk-sharp.m4
+++ b/build/m4/banshee/gtk-sharp.m4
@@ -1,28 +1,12 @@
AC_DEFUN([BANSHEE_CHECK_GTK_SHARP],
[
- GTKSHARP3_REQUIRED=2.99
GTKSHARP2_REQUIRED=2.12.10
- dnl First check for gtk-sharp-3.0
- PKG_CHECK_MODULES(GTKSHARP, gtk-sharp-3.0 >= $GTKSHARP3_REQUIRED, have_gtk3=yes, have_gtk3=no)
- if test "x$have_gtk3" = "xyes"; then
- AC_SUBST(GTKSHARP_LIBS)
+ PKG_CHECK_MODULES(GTKSHARP, gtk-sharp-2.0 >= $GTKSHARP2_REQUIRED)
+ AC_SUBST(GTKSHARP_LIBS)
- PKG_CHECK_MODULES(GLIBSHARP, glib-sharp-3.0 >= $GTKSHARP3_REQUIRED)
- AC_SUBST(GLIBSHARP_LIBS)
+ PKG_CHECK_MODULES(GLIBSHARP, glib-sharp-2.0 >= $GTKSHARP2_REQUIRED)
+ AC_SUBST(GLIBSHARP_LIBS)
- gtk_version=3
- AM_CONDITIONAL(HAVE_GTK3, true)
- else
- dnl Fall back to gtk-sharp-2.0
-
- PKG_CHECK_MODULES(GTKSHARP, gtk-sharp-2.0 >= $GTKSHARP2_REQUIRED)
- AC_SUBST(GTKSHARP_LIBS)
-
- PKG_CHECK_MODULES(GLIBSHARP, glib-sharp-2.0 >= $GTKSHARP2_REQUIRED)
- AC_SUBST(GLIBSHARP_LIBS)
-
- AM_CONDITIONAL(HAVE_GTK3, false)
- gtk_version="2"
- fi
+ gtk_version="2"
])