
- Bump build-depends on libglib2.0-dev * debian/libgtk3.0-dev.install.in - gdkconfig.h no longer distributed * debian/rules: - Bumped the shver. * debian/patches/001_static-linking-dont-query-immodules.patch: * debian/patches/005_support_disabling_x11_extensions.patch: * debian/patches/003_gdk.pc_privates.patch: * debian/patches/070_mandatory-relibtoolize.patch: * debian/patches/041_ia32-libs.patch: * debian/patches/002_static-linking-dont-build-perf.patch: * debian/patches/004_git_add_missing_include.patch: * debian/patches/042_treeview_single-focus.patch: - Refreshed
22 lines
774 B
Diff
22 lines
774 B
Diff
Description: don't build perf measurement tools in static builds
|
|
Bug: http://bugzilla.gnome.org/show_bug.cgi?id=346559
|
|
|
|
Index: gtk+3.0-2.91.1/Makefile.am
|
|
===================================================================
|
|
--- gtk+3.0-2.91.1.orig/Makefile.am 2010-10-16 02:53:00.000000000 +0200
|
|
+++ gtk+3.0-2.91.1/Makefile.am 2010-10-18 14:10:10.239672000 +0200
|
|
@@ -1,7 +1,12 @@
|
|
## Makefile.am for GTK+
|
|
include $(top_srcdir)/Makefile.decl
|
|
|
|
-SRC_SUBDIRS = gdk gtk modules demos tests perf examples
|
|
+# don't build perf measurement tools in static builds
|
|
+if !ENABLE_STATIC
|
|
+MAYBE_PERF = perf
|
|
+endif
|
|
+
|
|
+SRC_SUBDIRS = gdk gtk modules demos tests examples $(MAYBE_PERF)
|
|
SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros build
|
|
|
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|