packages (DEVEL): xulrunner/xulrunner-gcc44.patch, xulrunner/xulrunner-inst...

hawk hawk at pld-linux.org
Sun Jun 28 19:34:13 CEST 2009


Author: hawk                         Date: Sun Jun 28 17:34:13 2009 GMT
Module: packages                      Tag: DEVEL
---- Log message:
- updated for 1.9.1

---- Files affected:
packages/xulrunner:
   xulrunner-gcc44.patch (1.1 -> 1.1.2.1) , xulrunner-install.patch (1.4 -> 1.4.2.1) , xulrunner-nss_cflags.patch (1.1 -> 1.1.2.1) , xulrunner-pc.patch (1.9 -> 1.9.2.1) , xulrunner-rpath.patch (1.3 -> 1.3.2.1) , xulrunner-ssl_oldapi.patch (1.1 -> 1.1.2.1) 

---- Diffs:

================================================================
Index: packages/xulrunner/xulrunner-gcc44.patch
diff -u packages/xulrunner/xulrunner-gcc44.patch:1.1 packages/xulrunner/xulrunner-gcc44.patch:1.1.2.1
--- packages/xulrunner/xulrunner-gcc44.patch:1.1	Wed Apr 29 23:04:42 2009
+++ packages/xulrunner/xulrunner-gcc44.patch	Sun Jun 28 19:34:08 2009
@@ -1,15 +1,3 @@
-diff -Naurp mozilla-orig/toolkit/xre/nsAppRunner.cpp mozilla/toolkit/xre/nsAppRunner.cpp
---- mozilla-orig/toolkit/xre/nsAppRunner.cpp 2008-11-17 08:36:43.000000000 -0600
-+++ mozilla/toolkit/xre/nsAppRunner.cpp 2009-03-01 20:35:11.000000000 -0600
-@@ -1459,7 +1459,7 @@ XRE_GetBinaryPath(const char* argv0, nsI
-   if (NS_FAILED(rv))
-     return rv;
- 
--#elif
-+#else
- #error Oops, you need platform-specific code here
- #endif
-
 diff -burNp mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc mozilla-dud/toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc
 --- mozilla/toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc	2008-02-25 19:18:09.000000000 +0100
 +++ mozilla-dud/toolkit/crashreporter/google-breakpad/src/common/linux/dump_symbols.cc	2009-04-29 14:30:50.481579531 +0200

================================================================
Index: packages/xulrunner/xulrunner-install.patch
diff -u packages/xulrunner/xulrunner-install.patch:1.4 packages/xulrunner/xulrunner-install.patch:1.4.2.1
--- packages/xulrunner/xulrunner-install.patch:1.4	Fri Jun 20 23:57:29 2008
+++ packages/xulrunner/xulrunner-install.patch	Sun Jun 28 19:34:08 2009
@@ -1,45 +1,50 @@
---- mozilla/toolkit/mozapps/installer/packager.mk.orig	2008-04-28 21:14:12.000000000 +0200
-+++ mozilla/toolkit/mozapps/installer/packager.mk	2008-06-20 23:51:52.000000000 +0200
-@@ -339,13 +339,13 @@
+--- mozilla/toolkit/mozapps/installer/packager.mk.orig	2009-06-24 10:22:23.000000000 +0200
++++ mozilla/toolkit/mozapps/installer/packager.mk	2009-06-28 18:59:02.000000000 +0200
+@@ -370,13 +370,13 @@
  # NOTE: this must be a tar now that dist links into the tree so that we
  # do not strip the binaries actually in the tree.
  	@echo "Creating package directory..."
--	@mkdir $(DIST)/$(MOZ_PKG_APPNAME)
+-	@mkdir $(DIST)/$(MOZ_PKG_DIR)
 +	@mkdir -p $(DESTDIR)$(MOZ_PKG_APPDIR)
  ifdef MOZ_PKG_MANIFEST
  	$(RM) -rf $(DIST)/xpt
  	$(call PACKAGER_COPY, "$(DIST)",\
--		 "$(DIST)/$(MOZ_PKG_APPNAME)", \
+-		 "$(DIST)/$(MOZ_PKG_DIR)", \
 +		 "$(DESTDIR)/$(MOZ_PKG_APPDIR)", \
  		"$(MOZ_PKG_MANIFEST)", "$(PKGCP_OS)", 1, 0, 1)
--	$(PERL) $(topsrcdir)/xpinstall/packager/xptlink.pl -s $(DIST) -d $(DIST)/xpt -f $(DIST)/$(MOZ_PKG_APPNAME)/components -v -x "$(XPIDL_LINK)"
-+	$(PERL) $(topsrcdir)/xpinstall/packager/xptlink.pl -s $(DIST) -d $(DIST)/xpt -f $(DESTDIR)/$(MOZ_PKG_APPDIR)/components -v -x "$(XPIDL_LINK)"
+-	$(PERL) $(MOZILLA_DIR)/xpinstall/packager/xptlink.pl -s $(DIST) -d $(DIST)/xpt -f $(DIST)/$(MOZ_PKG_DIR)/components -v -x "$(XPIDL_LINK)"
++	$(PERL) $(MOZILLA_DIR)/xpinstall/packager/xptlink.pl -s $(DIST) -d $(DIST)/xpt -f $(DESTDIR)/$(MOZ_PKG_APPDIR)/components -v -x "$(XPIDL_LINK)"
  else # !MOZ_PKG_MANIFEST
  ifeq ($(MOZ_PKG_FORMAT),DMG)
  # If UNIVERSAL_BINARY, the package will be made from an already-prepared
-@@ -358,7 +358,7 @@
+@@ -385,11 +385,11 @@
+ ifndef STAGE_SDK
+ 	@cd $(DIST) && rsync -auv --copy-unsafe-links $(_APPNAME) $(MOZ_PKG_DIR)
+ else
+-	@cd $(DIST)/bin && tar $(TAR_CREATE_FLAGS) - * | (cd ../$(MOZ_PKG_DIR); tar -xf -)
++	cp -rfLp $(DIST)/bin/* $(DESTDIR)$(MOZ_PKG_APPDIR)
  endif
  endif
  else
--	@cd $(DIST)/bin && tar $(TAR_CREATE_FLAGS) - * | (cd ../$(MOZ_PKG_APPNAME); tar -xf -)
+-	@cd $(DIST)/bin && tar $(TAR_CREATE_FLAGS) - * | (cd ../$(MOZ_PKG_DIR); tar -xf -)
 +	cp -rfLp $(DIST)/bin/* $(DESTDIR)$(MOZ_PKG_APPDIR)
  endif # DMG
  endif # MOZ_PKG_MANIFEST
  ifndef PKG_SKIP_STRIP
-@@ -390,7 +390,7 @@
+@@ -421,7 +421,7 @@
  endif
  	@echo "Removing unpackaged files..."
  ifdef NO_PKG_FILES
--	cd $(DIST)/$(STAGEPATH)$(MOZ_PKG_APPNAME)$(_BINPATH); rm -rf $(NO_PKG_FILES)
+-	cd $(DIST)/$(STAGEPATH)$(MOZ_PKG_DIR)$(_BINPATH); rm -rf $(NO_PKG_FILES)
 +	cd $(DESTDIR)$(MOZ_PKG_APPDIR)$(_BINPATH); rm -rf $(NO_PKG_FILES)
  endif
  ifdef MOZ_PKG_REMOVALS
- 	$(SYSINSTALL) $(MOZ_PKG_REMOVALS_GEN) $(DIST)/$(STAGEPATH)$(MOZ_PKG_APPNAME)$(_BINPATH)
-@@ -414,39 +414,47 @@
+ 	$(SYSINSTALL) $(IFLAGS1) $(MOZ_PKG_REMOVALS_GEN) $(DIST)/$(STAGEPATH)$(MOZ_PKG_DIR)$(_BINPATH)
+@@ -446,39 +446,47 @@
  	$(error "make install" is not supported on this platform. Use "make package" instead.)
  endif
  	$(NSINSTALL) -D $(DESTDIR)$(installdir)
--	(cd $(DIST)/$(MOZ_PKG_APPNAME) && tar $(TAR_CREATE_FLAGS) - .) | \
+-	(cd $(DIST)/$(MOZ_PKG_DIR) && tar $(TAR_CREATE_FLAGS) - .) | \
 -	  (cd $(DESTDIR)$(installdir) && tar -xf -)
  	$(NSINSTALL) -D $(DESTDIR)$(bindir)
  	$(RM) -f $(DESTDIR)$(bindir)/$(MOZ_APP_NAME)
@@ -64,15 +69,16 @@
 +	cp -rfLp $(DIST)/sdk/include/* $(DESTDIR)$(includedir)/stable
  # The dist/include has module subdirectories that we need to flatten
 -	find $(DIST)/include -xtype f -exec $(SYSINSTALL) $(IFLAGS1) {} $(DESTDIR)$(includedir)/unstable \;
-+#	find $(DIST)/include -xtype f -exec $(SYSINSTALL) $(IFLAGS1) {} $(DESTDIR)$(includedir) \;
++#	find $(DIST)/include -xtype f -exec $(SYSINSTALL) $(IFLAGS1) {} $(DESTDIR)$(includedir)/unstable \;
 +	cp -rfLp $(DIST)/include/* $(DESTDIR)$(includedir)
  # IDL directory is stable (dist/sdk/idl) and unstable (dist/idl)
- 	$(NSINSTALL) -D $(DESTDIR)$(idldir)/stable 
+-	$(NSINSTALL) -D $(DESTDIR)$(idldir)/stable 
 -	$(NSINSTALL) -D $(DESTDIR)$(idldir)/unstable
 -	(cd $(DIST)/sdk/idl && tar $(TAR_CREATE_FLAGS) - .) | \
 -	  (cd $(DESTDIR)$(idldir)/stable && tar -xf -)
 -	(cd $(DIST)/idl && tar $(TAR_CREATE_FLAGS) - .) | \
 -	  (cd $(DESTDIR)$(idldir)/unstable && tar -xf -)
++	$(NSINSTALL) -D $(DESTDIR)$(idldir)/stable
 +	$(NSINSTALL) -D $(DESTDIR)$(idldir)
 +	cp -rfLp $(DIST)/sdk/idl/* $(DESTDIR)$(idldir)/stable
 +	cp -rfLp $(DIST)/idl/* $(DESTDIR)$(idldir)

================================================================
Index: packages/xulrunner/xulrunner-nss_cflags.patch
diff -u packages/xulrunner/xulrunner-nss_cflags.patch:1.1 packages/xulrunner/xulrunner-nss_cflags.patch:1.1.2.1
--- packages/xulrunner/xulrunner-nss_cflags.patch:1.1	Thu Jun 19 19:26:33 2008
+++ packages/xulrunner/xulrunner-nss_cflags.patch	Sun Jun 28 19:34:08 2009
@@ -1,42 +1,42 @@
 --- mozilla/config/autoconf.mk.in.orig	2008-06-19 17:55:40.000000000 +0200
 +++ mozilla/config/autoconf.mk.in	2008-06-19 18:45:18.000000000 +0200
-@@ -276,7 +276,7 @@
+@@ -280,7 +280,7 @@
  OS_COMPILE_CFLAGS = $(OS_CPPFLAGS) @COMPILE_CFLAGS@
  OS_COMPILE_CXXFLAGS = $(OS_CPPFLAGS) @COMPILE_CXXFLAGS@
  
--OS_INCLUDES	= $(NSPR_CFLAGS) $(JPEG_CFLAGS) $(PNG_CFLAGS) $(ZLIB_CFLAGS) $(LCMS_CFLAGS)
-+OS_INCLUDES	= $(NSPR_CFLAGS) $(NSS_CFLAGS) $(JPEG_CFLAGS) $(PNG_CFLAGS) $(ZLIB_CFLAGS) $(LCMS_CFLAGS)
+-OS_INCLUDES	= $(NSPR_CFLAGS) $(JPEG_CFLAGS) $(PNG_CFLAGS) $(ZLIB_CFLAGS)
++OS_INCLUDES	= $(NSPR_CFLAGS) $(NSS_CFLAGS) $(JPEG_CFLAGS) $(PNG_CFLAGS) $(ZLIB_CFLAGS)
  OS_LIBS		= @LIBS@
  ACDEFINES	= @MOZ_DEFINES@
  
 --- mozilla/config/rules.mk.orig	2008-06-19 18:45:00.000000000 +0200
 +++ mozilla/config/rules.mk	2008-06-19 18:42:40.000000000 +0200
-@@ -1235,23 +1235,23 @@
+@@ -1365,23 +1365,23 @@
  # Rules for building native targets must come first because of the host_ prefix
- host_%.$(OBJ_SUFFIX): %.c Makefile Makefile.in
+ host_%.$(OBJ_SUFFIX): %.c $(GLOBAL_DEPS)
  	$(REPORT_BUILD)
 -	$(ELOG) $(HOST_CC) $(HOST_OUTOPTION)$@ -c $(HOST_CFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(_VPATH_SRCS)
 +	$(ELOG) $(HOST_CC) $(HOST_OUTOPTION)$@ -c $(HOST_CFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(NSS_CFLAGS) $(_VPATH_SRCS)
  
- host_%.$(OBJ_SUFFIX): %.cpp Makefile Makefile.in
+ host_%.$(OBJ_SUFFIX): %.cpp $(GLOBAL_DEPS)
  	$(REPORT_BUILD)
 -	$(ELOG) $(HOST_CXX) $(HOST_OUTOPTION)$@ -c $(HOST_CXXFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(_VPATH_SRCS)
 +	$(ELOG) $(HOST_CXX) $(HOST_OUTOPTION)$@ -c $(HOST_CXXFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(NSS_CFLAGS) $(_VPATH_SRCS)
  
- host_%.$(OBJ_SUFFIX): %.cc Makefile Makefile.in
+ host_%.$(OBJ_SUFFIX): %.cc $(GLOBAL_DEPS)
  	$(REPORT_BUILD)
 -	$(ELOG) $(HOST_CXX) $(HOST_OUTOPTION)$@ -c $(HOST_CXXFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(_VPATH_SRCS)
 +	$(ELOG) $(HOST_CXX) $(HOST_OUTOPTION)$@ -c $(HOST_CXXFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(NSS_CFLAGS) $(_VPATH_SRCS)
  
- host_%.$(OBJ_SUFFIX): %.m Makefile Makefile.in
+ host_%.$(OBJ_SUFFIX): %.m $(GLOBAL_DEPS)
  	$(REPORT_BUILD)
 -	$(ELOG) $(HOST_CC) $(HOST_OUTOPTION)$@ -c $(HOST_CFLAGS) $(HOST_CMFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(_VPATH_SRCS)
 +	$(ELOG) $(HOST_CC) $(HOST_OUTOPTION)$@ -c $(HOST_CFLAGS) $(HOST_CMFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(NSS_CFLAGS) $(_VPATH_SRCS)
  
- host_%.$(OBJ_SUFFIX): %.mm Makefile Makefile.in
+ host_%.$(OBJ_SUFFIX): %.mm $(GLOBAL_DEPS)
  	$(REPORT_BUILD)
 -	$(ELOG) $(HOST_CXX) $(HOST_OUTOPTION)$@ -c $(HOST_CXXFLAGS) $(HOST_CMMFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(_VPATH_SRCS)
 +	$(ELOG) $(HOST_CXX) $(HOST_OUTOPTION)$@ -c $(HOST_CXXFLAGS) $(HOST_CMMFLAGS) $(INCLUDES) $(NSPR_CFLAGS) $(NSS_CFLAGS) $(_VPATH_SRCS)
  
- %: %.c Makefile Makefile.in
+ %: %.c $(GLOBAL_DEPS)
  	$(REPORT_BUILD)

================================================================
Index: packages/xulrunner/xulrunner-pc.patch
diff -u packages/xulrunner/xulrunner-pc.patch:1.9 packages/xulrunner/xulrunner-pc.patch:1.9.2.1
--- packages/xulrunner/xulrunner-pc.patch:1.9	Thu Feb 19 00:20:19 2009
+++ packages/xulrunner/xulrunner-pc.patch	Sun Jun 28 19:34:08 2009
@@ -18,8 +18,8 @@
  Version: %MOZILLA_VERSION%
 +Requires: %NSPR_NAME% >= %NSPR_VERSION%
  Libs: -L${sdkdir}/lib -lxpcomglue
--Cflags: -DXPCOM_GLUE -I${includedir}/${includetype} -fshort-wchar
-+Cflags: -DXPCOM_GLUE -I${includedir} -fshort-wchar
+-Cflags: -DXPCOM_GLUE -I${includedir}/${includetype} %WCHAR_CFLAGS%
++Cflags: -DXPCOM_GLUE -I${includedir} %WCHAR_CFLAGS%
 diff -urN mozilla/xulrunner/installer/libxul-embedding.pc.in mozilla.new/xulrunner/installer/libxul-embedding.pc.in
 --- mozilla/xulrunner/installer/libxul-embedding.pc.in	2007-08-03 16:46:28.000000000 +0200
 +++ mozilla.new/xulrunner/installer/libxul-embedding.pc.in	2008-07-07 19:59:11.000000000 +0200
@@ -53,8 +53,8 @@
  Version: %MOZILLA_VERSION%
  Requires: %NSPR_NAME% >= %NSPR_VERSION%
  Libs: -L${sdkdir}/lib -lxpcomglue_s -lxul -lxpcom
--Cflags: -I${includedir}/${includetype} -fshort-wchar
-+Cflags: -I${includedir} -fshort-wchar
+-Cflags: -I${includedir}/${includetype} %WCHAR_CFLAGS%
++Cflags: -I${includedir} %WCHAR_CFLAGS%
 diff -urN mozilla/xulrunner/installer/libxul.pc.in mozilla.new/xulrunner/installer/libxul.pc.in
 --- mozilla/xulrunner/installer/libxul.pc.in	2007-08-03 16:46:28.000000000 +0200
 +++ mozilla.new/xulrunner/installer/libxul.pc.in	2008-07-07 20:00:09.000000000 +0200
@@ -72,9 +72,8 @@
  Version: %MOZILLA_VERSION%
  Requires: %NSPR_NAME% >= %NSPR_VERSION%
  Libs: -L${sdkdir}/lib -lxpcomglue_s -lxul -lxpcom
--Cflags: -I${includedir}/${includetype} -fshort-wchar
-\ No newline at end of file
-+Cflags: -I${includedir}/${includetype} -fshort-wchar
+-Cflags: -I${includedir}/${includetype} %WCHAR_CFLAGS%
++Cflags: -I${includedir} %WCHAR_CFLAGS%
 diff -urN mozilla/xulrunner/installer/mozilla-nspr.pc.in mozilla.new/xulrunner/installer/mozilla-nspr.pc.in
 --- mozilla/xulrunner/installer/mozilla-nspr.pc.in	2007-08-03 16:46:28.000000000 +0200
 +++ mozilla.new/xulrunner/installer/mozilla-nspr.pc.in	2008-07-07 19:56:15.000000000 +0200
@@ -91,8 +90,8 @@
  Description: Mozilla Plug-In API
  Version: %MOZILLA_VERSION%
  Requires: %NSPR_NAME% >= %NSPR_VERSION%
--Cflags: -I${includedir}/stable
-+Cflags: -I${includedir}/stable -I${includedir}/plugin
+-Cflags: -I${includedir}/stable -DXP_UNIX %ojidef%
++Cflags: -I${includedir}/stable -I${includedir}/plugin -DXP_UNIX %ojidef%
 diff -urN mozilla/xulrunner/installer/mozilla-js.pc.in mozilla.new/xulrunner/installer/mozilla-js.pc.in
 --- mozilla/xulrunner/installer/mozilla-js.pc.in	2007-08-03 16:46:28.000000000 +0200
 +++ mozilla.new/xulrunner/installer/mozilla-js.pc.in	2009-02-18 23:15:40.681314523 +0100

================================================================
Index: packages/xulrunner/xulrunner-rpath.patch
diff -u packages/xulrunner/xulrunner-rpath.patch:1.3 packages/xulrunner/xulrunner-rpath.patch:1.3.2.1
--- packages/xulrunner/xulrunner-rpath.patch:1.3	Fri Jun 20 23:55:39 2008
+++ packages/xulrunner/xulrunner-rpath.patch	Sun Jun 28 19:34:08 2009
@@ -1,22 +1,22 @@
---- mozilla/configure.in.orig	2008-05-28 20:23:27.000000000 +0200
-+++ mozilla/configure.in	2008-06-18 15:37:11.000000000 +0200
-@@ -945,7 +945,7 @@
+--- mozilla/configure.in.orig	2009-06-24 10:20:32.000000000 +0200
++++ mozilla/configure.in	2009-06-28 19:07:33.000000000 +0200
+@@ -1000,7 +1000,7 @@
  
  MOZ_JS_LIBS='-L$(LIBXUL_DIST)/bin -lmozjs'
  DYNAMIC_XPCOM_LIBS='-L$(LIBXUL_DIST)/bin -lxpcom -lxpcom_core'
--MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin'
-+MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath,$(installdir)'
+-MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath-link,$(prefix)/lib'
++MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath-link,$(prefix)/lib -Wl,-rpath,$(installdir)'
  XPCOM_FROZEN_LDOPTS='-L$(LIBXUL_DIST)/bin -lxpcom'
  LIBXUL_LIBS='$(XPCOM_FROZEN_LDOPTS) -lxul'
  XPCOM_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) $(XPCOM_FROZEN_LDOPTS)'
---- mozilla/configure.orig	2008-05-28 20:31:02.000000000 +0200
-+++ mozilla/configure	2008-06-18 15:38:53.000000000 +0200
-@@ -5119,7 +5119,7 @@
+--- mozilla/configure.orig	2009-06-24 10:29:48.000000000 +0200
++++ mozilla/configure	2009-06-28 19:07:50.000000000 +0200
+@@ -5185,7 +5185,7 @@
  
  MOZ_JS_LIBS='-L$(LIBXUL_DIST)/bin -lmozjs'
  DYNAMIC_XPCOM_LIBS='-L$(LIBXUL_DIST)/bin -lxpcom -lxpcom_core'
--MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin'
-+MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath,$(installdir)'
+-MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath-link,$(prefix)/lib'
++MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin -Wl,-rpath-link,$(prefix)/lib -Wl,-rpath,$(installdir)'
  XPCOM_FROZEN_LDOPTS='-L$(LIBXUL_DIST)/bin -lxpcom'
  LIBXUL_LIBS='$(XPCOM_FROZEN_LDOPTS) -lxul'
  XPCOM_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) $(XPCOM_FROZEN_LDOPTS)'

================================================================
Index: packages/xulrunner/xulrunner-ssl_oldapi.patch
diff -u packages/xulrunner/xulrunner-ssl_oldapi.patch:1.1 packages/xulrunner/xulrunner-ssl_oldapi.patch:1.1.2.1
--- packages/xulrunner/xulrunner-ssl_oldapi.patch:1.1	Wed Jul 23 15:22:42 2008
+++ packages/xulrunner/xulrunner-ssl_oldapi.patch	Sun Jun 28 19:34:08 2009
@@ -14,10 +14,10 @@
    nsresult GetExternalErrorReporting(PRBool* state);
    nsresult SetExternalErrorReporting(PRBool aState);
  
-@@ -220,6 +227,7 @@
-   PRPackedBool mHasCleartextPhase;
+@@ -225,6 +232,7 @@
    PRPackedBool mHandshakeInProgress;
    PRPackedBool mAllowTLSIntoleranceTimeout;
+   PRPackedBool mRememberClientAuthCertificate;
 +  BadCertUIStatusType mBadCertUIStatus;
    PRIntervalTime mHandshakeStartTime;
    PRInt32 mPort;
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/xulrunner/xulrunner-gcc44.patch?r1=1.1&r2=1.1.2.1&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/xulrunner/xulrunner-install.patch?r1=1.4&r2=1.4.2.1&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/xulrunner/xulrunner-nss_cflags.patch?r1=1.1&r2=1.1.2.1&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/xulrunner/xulrunner-pc.patch?r1=1.9&r2=1.9.2.1&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/xulrunner/xulrunner-rpath.patch?r1=1.3&r2=1.3.2.1&f=u
    http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/xulrunner/xulrunner-ssl_oldapi.patch?r1=1.1&r2=1.1.2.1&f=u



More information about the pld-cvs-commit mailing list