update to 0.6.1

This commit is contained in:
wilfried 2003-08-04 12:54:18 +00:00
parent f659c8e27e
commit 68e7f77d5e
6 changed files with 13 additions and 55 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.18 2003/07/24 12:18:41 naddy Exp $
# $OpenBSD: Makefile,v 1.19 2003/08/04 12:54:18 wilfried Exp $
NOT_FOR_ARCHS= vax m68k hppa
COMMENT= "redesign of Mozilla's browser component"
VER= 0.6
VER= 0.6.1
DISTNAME= mozilla
PKGNAME= mozilla-firebird-${VER}
@ -18,7 +18,7 @@ PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= http://ftp.mozilla.org/pub/firebird/releases/${VER}/
DISTFILES= MozillaFirebird-${VER}-source.tar.bz2
DISTFILES= MozillaFirebird-source-${VER}.tar.bz2
MODULES= gcc3
MODGCC3_ARCHES= alpha sparc64

View File

@ -1,3 +1,3 @@
MD5 (MozillaFirebird-0.6-source.tar.bz2) = de52dd03f8628724f14f517cd6346755
RMD160 (MozillaFirebird-0.6-source.tar.bz2) = 52d4dc319767194968f2156182141389f65f1b73
SHA1 (MozillaFirebird-0.6-source.tar.bz2) = d73506cd47e2c2937716e71e80779140e10e0b25
MD5 (MozillaFirebird-source-0.6.1.tar.bz2) = 35191de0d02601f7a190b5065a26de85
RMD160 (MozillaFirebird-source-0.6.1.tar.bz2) = 877baf6f11ea6a0526a21186cf553da292d495aa
SHA1 (MozillaFirebird-source-0.6.1.tar.bz2) = cddbf0e0085c51a21419f3b93dcd9157f4c6ba97

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-config_autoconf_mk_in,v 1.4 2003/06/06 12:50:37 wilfried Exp $
--- config/autoconf.mk.in.orig Fri May 2 23:38:10 2003
+++ config/autoconf.mk.in Fri Jun 6 09:04:39 2003
$OpenBSD: patch-config_autoconf_mk_in,v 1.5 2003/08/04 12:54:18 wilfried Exp $
--- config/autoconf.mk.in.orig 2003-07-09 07:07:54.000000000 +0200
+++ config/autoconf.mk.in 2003-08-04 11:18:21.000000000 +0200
@@ -29,13 +29,13 @@ MOZILLA_VERSION = @MOZILLA_VERSION@
prefix = @prefix@
exec_prefix = @exec_prefix@
@ -21,8 +21,8 @@ $OpenBSD: patch-config_autoconf_mk_in,v 1.4 2003/06/06 12:50:37 wilfried Exp $
OS_COMPILE_CFLAGS = $(OS_CPPFLAGS) @COMPILE_CFLAGS@
OS_COMPILE_CXXFLAGS = $(OS_CPPFLAGS) @COMPILE_CXXFLAGS@
-OS_INCLUDES = $(NSPR_CFLAGS) $(JPEG_CFLAGS) $(PNG_CFLAGS) $(MNG_CFLAGS) $(ZLIB_CFLAGS)
+OS_INCLUDES = $(NSPR_CFLAGS) $(FT2_CFLAGS) $(LIBIDL_CFLAGS) $(JPEG_CFLAGS) $(PNG_CFLAGS) $(MNG_CFLAGS) $(ZLIB_CFLAGS)
-OS_INCLUDES = $(NSPR_CFLAGS) $(JPEG_CFLAGS) $(PNG_CFLAGS) $(ZLIB_CFLAGS)
+OS_INCLUDES = $(NSPR_CFLAGS) $(FT2_CFLAGS) $(LIBIDL_CFLAGS) $(JPEG_CFLAGS) $(PNG_CFLAGS) $(ZLIB_CFLAGS)
OS_LIBS = @LIBS@
ACDEFINES = @MOZ_DEFINES@

View File

@ -1,38 +0,0 @@
$OpenBSD: patch-xpcom_glue_nsIGenericFactory_h,v 1.2 2003/06/16 11:56:23 wilfried Exp $
--- xpcom/glue/nsIGenericFactory.h.orig Mon May 5 01:32:53 2003
+++ xpcom/glue/nsIGenericFactory.h Sat Jun 14 02:18:12 2003
@@ -317,13 +317,15 @@ NS_NewGenericModule(const char* moduleNa
nsIModule* *result);
#if defined(XPCOM_TRANSLATE_NSGM_ENTRY_POINT)
+# define NS_MODULEINFO nsModuleInfo
# define NSMODULEINFO(_name) _name##_gModuleInfo
# define NSGETMODULE_ENTRY_POINT(_info)
# define NSDEPENDENT_LIBS(_name) const char* _name##_gDependlibs[]={DEPENDENT_LIBS "\0"};
# define NSDEPENDENT_LIBS_NAME(_name) _name##_gDependlibs
#else
+# define NS_MODULEINFO static nsModuleInfo
# define NSMODULEINFO(_name) gModuleInfo
-# define NSDEPENDENT_LIBS(_name) const char* gDependlibs[]={DEPENDENT_LIBS "\0"};
+# define NSDEPENDENT_LIBS(_name) static const char* gDependlibs[]={DEPENDENT_LIBS "\0"};
# define NSDEPENDENT_LIBS_NAME(_name) gDependlibs
# define NSGETMODULE_ENTRY_POINT(_info) \
extern "C" NS_EXPORT nsresult \
@@ -353,7 +355,7 @@ NSGetModule(nsIComponentManager *servMgr
#ifndef DEPENDENT_LIBS
#define NS_IMPL_NSGETMODULE_WITH_CTOR_DTOR(_name, _components, _ctor, _dtor) \
-nsModuleInfo NSMODULEINFO(_name) = { \
+NS_MODULEINFO NSMODULEINFO(_name) = { \
NS_MODULEINFO_VERSION, \
(#_name), \
(_components), \
@@ -368,7 +370,7 @@ NSGETMODULE_ENTRY_POINT(NSMODULEINFO(_na
#define NS_IMPL_NSGETMODULE_WITH_CTOR_DTOR(_name, _components, _ctor, _dtor) \
NSDEPENDENT_LIBS(_name) \
-nsModuleInfo NSMODULEINFO(_name) = { \
+NS_MODULEINFO NSMODULEINFO(_name) = { \
NS_MODULEINFO_VERSION, \
(#_name), \
(_components), \

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PFRAG.shared,v 1.1 2003/05/23 10:05:36 wilfried Exp $
@comment $OpenBSD: PFRAG.shared,v 1.2 2003/08/04 12:54:18 wilfried Exp $
mozilla-firebird/components/libaccessibility.so.1.0
mozilla-firebird/components/libappcomps.so.1.0
mozilla-firebird/components/libautoconfig.so.1.0
@ -18,7 +18,6 @@ mozilla-firebird/components/libgkplugin.so.1.0
mozilla-firebird/components/libhtmlpars.so.1.0
mozilla-firebird/components/libi18n.so.1.0
mozilla-firebird/components/libimglib2.so.1.0
mozilla-firebird/components/libimgmng.so.1.0
mozilla-firebird/components/libipcdc.so.1.0
mozilla-firebird/components/libjar50.so.1.0
mozilla-firebird/components/libjsd.so.1.0
@ -39,7 +38,6 @@ mozilla-firebird/components/libprofile.so.1.0
mozilla-firebird/components/librdf.so.1.0
mozilla-firebird/components/libtoolkitcomps.so.1.0
mozilla-firebird/components/libtransformiix.so.1.0
mozilla-firebird/components/libtransmngr_client.so.1.0
mozilla-firebird/components/libtxmgr.so.1.0
mozilla-firebird/components/libtypeaheadfind.so.1.0
mozilla-firebird/components/libuconv.so.1.0
@ -57,7 +55,6 @@ mozilla-firebird/components/libxpinstall.so.1.0
mozilla-firebird/components/libxremote_client.so.1.0
mozilla-firebird/components/libxremoteservice.so.1.0
mozilla-firebird/ipc/modules/liblockmodule.so.1.0
mozilla-firebird/ipc/modules/libtestmodule.so.1.0
mozilla-firebird/ipc/modules/libtransmngr.so.1.0
mozilla-firebird/libgkgfx.so.1.0
mozilla-firebird/libgtkembedmoz.so.1.0

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.8 2003/06/25 12:01:05 wilfried Exp $
@comment $OpenBSD: PLIST,v 1.9 2003/08/04 12:54:18 wilfried Exp $
bin/mozilla-firebird
mozilla-firebird/MozillaFirebird-bin
mozilla-firebird/chrome/US.jar
@ -121,7 +121,6 @@ mozilla-firebird/components/shistory.xpt
mozilla-firebird/components/sidebar.xpt
mozilla-firebird/components/signonviewer.xpt
mozilla-firebird/components/timebomb.xpt
mozilla-firebird/components/transmngr.xpt
mozilla-firebird/components/txmgr.xpt
mozilla-firebird/components/txtsvc.xpt
mozilla-firebird/components/typeaheadfind.xpt