openbsd-ports/www/firefox3/patches/patch-gfx_src_psshared_nsCUPSShim_cpp
martynas ab858df820 import firefox3-3.0.1, intended as a replacement for mozilla-firefox,
when we decide it's stable enough
not linked to the builds yet.

this version has the following fixes:
- fix SQLITE_VERSION, NSS_VERSION
- we've got our own library versioning, so remove versions and let
dlopen do the job
- fix the ssl psm bug.  you can't just cast a char* to an int* and
access through it
- fix arm Makefiles, to catch the right invokes/stubs
- fix arm, endianness issue (armel abi)
- strict alignment fixes for sparc64
- update to accept standard dictionaries location, so that
textproc/mozilla-dicts works again
- fix to include the right dlfcn.h
- remove eula
- printing fix, which kurt@ has tracked down, and helped fixing

tested by many, kili@, ian@, sthen@, jdixon@, reyk@, others...

the way to handle update has been suggested by pval@
the package name has been discussed w/ kurt@ and naddy@
ok kurt@ and naddy@
2008-07-25 01:52:54 +00:00

13 lines
466 B
Plaintext

$OpenBSD: patch-gfx_src_psshared_nsCUPSShim_cpp,v 1.1.1.1 2008/07/25 01:52:55 martynas Exp $
--- gfx/src/psshared/nsCUPSShim.cpp.orig Sun May 8 18:01:20 2005
+++ gfx/src/psshared/nsCUPSShim.cpp Fri Apr 6 17:21:07 2007
@@ -59,7 +59,7 @@ static const int gSymNameCt = sizeof(gSymName) / sizeo
PRBool
nsCUPSShim::Init()
{
- mCupsLib = PR_LoadLibrary("libcups.so.2");
+ mCupsLib = PR_LoadLibrary("libcups.so");
if (!mCupsLib)
return PR_FALSE;