A couple of patches
Chris White <[email protected]>
| Newsgroups | gmane.comp.web.sitecopy |
|---|---|
| Message-ID | <[email protected]> |
I have some downstream user submitted patches for you. One is a gcc 3.4
patch (simply adds some ;;'s where they need to be). The next one is
not a patch, but a sed which we use:
echo "int fe_accept_cert(const ne_ssl_certificate *cert, int failures) {
return 0; }" >> gnome/gcommon.c
sed -i -e "s:-lglib:-lglib -lgthread:" Makefile
The last is done after the configuration stage, but I'm sure that
configure could be used for that. It seems to be an issue of later
gnome libs. I believe the first is for an api requirement/missing
function protoype. That's all :).
Chris White
_______________________________________________
sitecopy maillist - [email protected]
http://dav.lyra.org/mailman/listinfo/sitecopy
sitecopy-gcc3.4.patch
(text/plain, 493 B)
--- gnome/minilist.c.old 2005-01-05 04:25:24.283691792 +0900
+++ gnome/minilist.c 2005-01-05 04:25:36.940767624 +0900
@@ -191,6 +191,7 @@
NE_DEBUG(DEBUG_GNOME, "Removing an item from the ignores list.\n");
break;
default:
+ ;;
}
if (the_gui->data)
the_gui->data->prev = NULL;
--- gnome/misc.old 2005-01-05 05:00:55.528693304 +0900
+++ gnome/misc.c 2005-01-05 05:01:07.183921440 +0900
@@ -310,6 +310,7 @@
return;
break;
default:
+ ;;
}
}
}