1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-29 10:18:30 +00:00

Restore a signed vs. unsigned patch that was accidentally removed in the

last commit.  This should fix the build with Mozilla 1.3.
This commit is contained in:
Joe Marcus Clarke 2003-04-21 16:36:47 +00:00
parent b1777e20d2
commit 71366918c7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=79420
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,14 @@
--- src/mozilla/mozilla.cpp.orig Mon Apr 21 12:28:35 2003
+++ src/mozilla/mozilla.cpp Mon Apr 21 12:31:09 2003
@@ -1102,7 +1102,11 @@
*/
extern "C" GList *
+#if MOZILLA_SNAPSHOT > 6
mozilla_get_permissions (guint type)
+#else
+mozilla_get_permissions (gint type)
+#endif
{
GList *permissions = NULL;
nsresult result;

View File

@ -0,0 +1,14 @@
--- src/mozilla/mozilla.h.orig Mon Apr 21 12:32:00 2003
+++ src/mozilla/mozilla.h Mon Apr 21 12:32:55 2003
@@ -261,7 +261,11 @@
GList *mozilla_list_cookies (void);
void mozilla_set_permission (GaleonEmbed *embed, gboolean allow,
guint type);
+#if MOZILLA_SNAPSHOT > 6
GList *mozilla_get_permissions (guint type);
+#else
+GList *mozilla_get_permissions (gint type);
+#endif
gboolean mozilla_remove_cookies (GList *gone, gboolean block);
gboolean mozilla_remove_permissions (GList *gone, guint type);