2017-03-20 06:01:57 -05:00
|
|
|
# pkg-config specific
|
2012-04-05 05:46:51 -07:00
|
|
|
glib-only.patch
|
2012-04-10 06:38:34 -07:00
|
|
|
no-installed-files.patch
|
2012-04-10 06:38:57 -07:00
|
|
|
foreign-automake.patch
|
2012-04-09 19:59:14 -07:00
|
|
|
no-gregex.patch
|
2012-04-09 20:04:58 -07:00
|
|
|
no-pkg-config.patch
|
2012-08-17 08:29:23 -07:00
|
|
|
no-gettext.patch
|
2012-05-14 15:47:32 -07:00
|
|
|
cross-compiling.patch
|
2012-08-17 08:12:49 -07:00
|
|
|
static-only.patch
|
2012-08-17 11:37:04 -07:00
|
|
|
win32-static-init.patch
|
glib: Fix OSX build with internal glib
In the last internal glib update, the glib configure script changed the
OSX framework flags from the form of "-framework Foo" to
"-Wl,framework,Foo". Unfortunately, libtool only understands the prior
form and doesn't include the appropriate -framework flags in the
libglib-2.0.la file. This ultimately causes pkg-config to fail to link
properly:
Undefined symbols for architecture x86_64:
"_CFRelease", referenced from:
_find_folder in libglib-2.0.a(libglib_2_0_la-gutils.o)
"_CFStringGetCString", referenced from:
_find_folder in libglib-2.0.a(libglib_2_0_la-gutils.o)
"_CFStringGetCStringPtr", referenced from:
_find_folder in libglib-2.0.a(libglib_2_0_la-gutils.o)
"_CFStringGetLength", referenced from:
_find_folder in libglib-2.0.a(libglib_2_0_la-gutils.o)
"_CFURLCopyFileSystemPath", referenced from:
_find_folder in libglib-2.0.a(libglib_2_0_la-gutils.o)
"_CFURLCreateFromFSRef", referenced from:
_find_folder in libglib-2.0.a(libglib_2_0_la-gutils.o)
"_FSFindFolder", referenced from:
_find_folder in libglib-2.0.a(libglib_2_0_la-gutils.o)
"_kCFAllocatorSystemDefault", referenced from:
_find_folder in libglib-2.0.a(libglib_2_0_la-gutils.o)
ld: symbol(s) not found for architecture x86_64
Upstream has fixed this by including the new style -framework flags in
the glib-2.0.pc file. We can't use that here as we're bootstrapping
pkg-config itself. Rather than work around this with an OSX platform
check in pkg-config's configure, carry a downstream patch to revert
glib's configure to using the old format.
https://bugs.freedesktop.org/show_bug.cgi?id=92902
2016-03-01 11:28:35 -08:00
|
|
|
osx-static-framework.patch
|
2017-03-20 06:01:57 -05:00
|
|
|
|
|
|
|
|
# Upstream backports
|
|
|
|
|
gcc-format-nonliteral-1.patch
|
|
|
|
|
gcc-format-nonliteral-2.patch
|