gtk3: Reorder sections in BUILD in attempt to fix the build.

This commit is contained in:
waddlesplash
2022-01-18 23:10:41 -05:00
committed by GitHub
parent 10ad62ea9a
commit 54ebbe1146

View File

@@ -100,13 +100,16 @@ BUILD()
runConfigure ./configure \
--disable-gtk-doc --with-included-immodules=xim
# build once, this will fail
make $jobArgs || true
# patch disable some things in typefuncs.inc
make -C gtk gtktypefuncs.inc
sed -i '/gdk_x11_device_manager_xi2_get_type/s@^@//@' gtk/gtktypefuncs.inc
sed -i '/gdk_x11_device_xi2_get_type/s@^@//@' gtk/gtktypefuncs.inc
sed -i '/gdk_x11_gl_context_get_type/s@^@//@' gtk/gtktypefuncs.inc
make $jobArgs -o gtk/gtktypefuncs.inc
# now build with the patched files
make $jobArgs
}
INSTALL()