diff options
author | ilhooq <contact@sphilip.com> | 2017-03-22 17:14:33 (GMT) |
---|---|---|
committer | ilhooq <contact@sphilip.com> | 2017-03-22 17:14:33 (GMT) |
commit | 4c585fb6c58ff452de99d269d6cdac2b0aad194b (patch) | |
tree | b3bf83761ac7587cbb984026775d73c8e2a1b70c /src/gtk3.mk | |
parent | bfc347b211f657efd1e03d526a27c08bc02a68b0 (diff) | |
download | mxe-4c585fb6c58ff452de99d269d6cdac2b0aad194b.zip mxe-4c585fb6c58ff452de99d269d6cdac2b0aad194b.tar.gz mxe-4c585fb6c58ff452de99d269d6cdac2b0aad194b.tar.bz2 |
Fix broken shared build of GTK3
Static and shared build works with this patch
Diffstat (limited to 'src/gtk3.mk')
-rw-r--r-- | src/gtk3.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gtk3.mk b/src/gtk3.mk index 6b4c0dd..49ca20e 100644 --- a/src/gtk3.mk +++ b/src/gtk3.mk @@ -22,15 +22,13 @@ endef define $(PKG)_BUILD cd '$(1)' && ./configure \ $(MXE_CONFIGURE_OPTS) \ - --enable-explicit-deps \ --disable-glibtest \ - --disable-modules \ --disable-cups \ --disable-test-print-backend \ --disable-gtk-doc \ --disable-man \ --with-included-immodules \ - --without-x + --enable-win32-backend $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= '$(TARGET)-gcc' \ @@ -38,5 +36,3 @@ define $(PKG)_BUILD '$(TEST_FILE)' -o '$(PREFIX)/$(TARGET)/bin/test-gtk3.exe' \ `'$(TARGET)-pkg-config' gtk+-3.0 --cflags --libs` endef - -$(PKG)_BUILD_SHARED = |