diff options
author | eric <eric@FreeBSD.org> | 2002-10-06 02:41:44 +0800 |
---|---|---|
committer | eric <eric@FreeBSD.org> | 2002-10-06 02:41:44 +0800 |
commit | 0d9cdf45606f2fb682d2aebfe85f55c5848d6e18 (patch) | |
tree | 453add6bcccf93b6bd4d6c2d638f4ca4f3b89b42 /www | |
parent | 533ed840895bf1b69b98dbe3e82ac082879893f1 (diff) | |
download | freebsd-ports-gnome-0d9cdf45606f2fb682d2aebfe85f55c5848d6e18.tar.gz freebsd-ports-gnome-0d9cdf45606f2fb682d2aebfe85f55c5848d6e18.tar.zst freebsd-ports-gnome-0d9cdf45606f2fb682d2aebfe85f55c5848d6e18.zip |
Add a patch to allow building with the version of mozilla currently in the
ports tree.
Submitted by: Thomas M. Hermann <Thomas.Hermann@cox.net>
Diffstat (limited to 'www')
-rw-r--r-- | www/skipstone/files/patch-ab | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/www/skipstone/files/patch-ab b/www/skipstone/files/patch-ab new file mode 100644 index 000000000000..48a328d350fb --- /dev/null +++ b/www/skipstone/files/patch-ab @@ -0,0 +1,19 @@ +--- src/mozilla.cpp.orig Mon Sep 30 07:27:17 2002 ++++ src/mozilla.cpp Mon Sep 30 07:28:14 2002 +@@ -62,6 +62,7 @@ + #include "nsIContentViewerFile.h" + #include "nsIPrintOptions.h" + #include "nsIPrintSettings.h" ++#include "nsIPrintSettingsService.h" + #include "nsIWebBrowserPrint.h" + #include "skipstone-print.h" + #include "debug.h" +@@ -203,7 +204,7 @@ + #ifdef NS_WITH_SERVICE + NS_WITH_SERVICE(nsIPrintOptions, options, kPrintOptionsCID, &result); + #else +- nsCOMPtr<nsIPrintOptions> options = do_GetService(kPrintOptionsCID, &result); ++ nsCOMPtr<nsIPrintSettingsService> options = do_GetService(kPrintOptionsCID, &result); + #endif + if (NS_FAILED(result)) D_RETURN_ ( NS_ERROR_FAILURE ); + |