Files
@ 9ccc0bcc6676
Branch filter:
Location: ohnobinki_overlay/dev-libs/cyrus-sasl/files/cyrus-sasl-2.1.22-gcc44.patch - annotation
9ccc0bcc6676
540 B
text/x-diff
dev-lang/spidermonkey: Import spidermonkey-1.7.0-r2 because elinks needs an older version of spidermonkey and old versions of spidermonkey call $(LD) directly, breaking portage-multilib.
(Portage version: 2.2.0_alpha11-r1/hg/Linux x86_64, signed Manifest commit with key 6BA81050)
(Portage version: 2.2.0_alpha11-r1/hg/Linux x86_64, signed Manifest commit with key 6BA81050)
63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 63da8e681792 | fix warnings with gcc-4.4
http://bugs.gentoo.org/248738
--- cyrus-sasl-2.1.22/plugins/digestmd5.c
+++ cyrus-sasl-2.1.22/plugins/digestmd5.c
@@ -2715,7 +2715,7 @@ static sasl_server_plug_t digestmd5_serv
"DIGEST-MD5", /* mech_name */
#ifdef WITH_RC4
128, /* max_ssf */
-#elif WITH_DES
+#elif defined(WITH_DES)
112,
#else
1,
@@ -4034,7 +4034,7 @@ static sasl_client_plug_t digestmd5_clie
"DIGEST-MD5",
#ifdef WITH_RC4 /* mech_name */
128, /* max ssf */
-#elif WITH_DES
+#elif defined(WITH_DES)
112,
#else
1,
|