Commit Graph

87 Commits

Author SHA1 Message Date
seawood%netscape.com
ad7b50550b Fix objdir bustage 2003-03-08 08:34:22 +00:00
kairo%kairo.at
661116311f bug 194924 - localeVersion update for 1.4a, r=rchen, sr=blizzard 2003-02-27 00:05:44 +00:00
ssu%netscape.com
207478defe attempting to fix bug 140995 - Freeze after setting as default browser [Win 2000 and XP]. Not sure if this is the real fix since I can't reproduce the problem exactly. sr=jag a=asa 2003-02-22 09:10:00 +00:00
dbaron%dbaron.org
acdd4e46c0 Bug 178643: Remove uses of NS_INIT_ISUPPORTS, since it is no longer needed. r=timeless sr=jag 2003-01-08 22:05:52 +00:00
kairo%kairo.at
a6f4446e42 change all localeVersion strings, as well as brand.dtd/region.dtd to 1.3b; bug 185698, r=tao, sr=blizzard 2003-01-03 19:57:47 +00:00
seawood%netscape.com
16e7da2837 nobrainer changes while thinking about mingw support
Bug #134113 r=dmose
2003-01-03 08:58:59 +00:00
seawood%netscape.com
58004c4a48 Add SRCS_IN_OBJDIR variable to workaround requirement introduced by bug 141834 that srcfiles must be in the srcdir.
Bug #171753 r=bryner
2002-12-13 02:36:06 +00:00
ssu%netscape.com
918d4f620d checking in patches for bugzilla2@farside.demon.co.uk for bug 169159 - Inconsistency in the WinXP Start Menu item (version in one not in other). r=ssu, sr=dveditz 2002-11-26 23:21:07 +00:00
seawood%netscape.com
013de5c8ce Tighten (add?) tool version checks for win32 builds.
Allow MIDL to be specified from mozconfig or env since various MS SDKs contain an unsupported version of midl and they insist upon adding their SDK dirs to the beginning of the PATH (bug #178392)
Bug #164646 r=bryner
2002-11-09 02:16:55 +00:00
kairo%kairo.at
150568bb2e Bug 175853, Update localeVersion strings for 1.2 final - and do it correctly, r=jbetak, sr=bzbarsky, a=blizzard 2002-10-30 12:41:38 +00:00
leaf%mozilla.org
b25d2a38f7 update localeVersion for 1.2b, a=asa 2002-10-16 17:51:38 +00:00
bzbarsky%mit.edu
4b02f3e44a Better naming for mapi registry keys. Bug 166795, patch by
bugzilla@gemal.dk (Henrik Gemal), r=rdayal, sr=sspitzer, a=rjesup
2002-10-16 06:16:15 +00:00
loadrunner%betak.net
55609bfe63 b144551 inconsistent en-mac/en-unix in different platform langenus.xpi files, r=cls, tao, sr=sfraser, dveditz 2002-10-08 06:21:11 +00:00
sspitzer%netscape.com
995ff937e9 code cleanup. use contract id instead of cid. remove unused cid 2002-10-02 07:52:09 +00:00
andreww%netscape.com
2558b06343 bugzilla bug 164174 r=suresh, sr=hewitt. Updating skin version number due to new backwards incompatibilites. 2002-09-12 23:39:25 +00:00
dougt%netscape.com
68faeb5241 166917. Clean up xpcom SDK includes. r=rpotts@netscape.com, sr=alecf@netscape.com, a=rjesup@wgate.com 2002-09-07 17:13:19 +00:00
leaf%mozilla.org
70941124cb update localeVersion to 1.2a, a=asa 2002-09-07 01:01:49 +00:00
gerv%gerv.net
a6d4accdea Bug 154765 - Cleaning up Contributors references after relicensing. Patch by riceman+bmo@mail.rit.edu; r=gerv, auto-sr=brendan. 2002-08-10 08:39:43 +00:00
seawood%netscape.com
322da773fb Removing old nmake build makefiles. Bug #158528 r=pavlov 2002-08-10 07:55:43 +00:00
racham%netscape.com
364a69f63b Fixing bug 102265. Polishing an entity in the mapi dtd file per UI guidelines. r=bhuvan 2002-08-10 06:13:44 +00:00
seawood%netscape.com
bdbbad71ef Fix win32 gmake static builds.
Bug #160104 r=bryner
2002-08-06 04:17:50 +00:00
leaf%mozilla.org
8860985e79 bug 154840, r=cls, sr=brendan, a=jesup update localeVersion strings 2002-07-17 23:51:49 +00:00
seawood%netscape.com
1cf2762705 Add generated header file to generated list so that files don't sit in the srcdir and mask bustage caused by a missing include path.
Not exactly fallout from bug #141834 but it's going in anyway.
2002-06-19 22:17:27 +00:00
seawood%netscape.com
ba59803131 Yet another fix for the srcdir race problem. We'll just remove the srcdir copies whenever we regenerate the files.
Fallout from bug 141834
2002-06-19 01:31:47 +00:00
seawood%netscape.com
a1cd8f96db Fix srcdir copy race condition by explicitly doing a cmp between the srcfile and the target.
Fixing tinderbox bustage.
2002-06-17 21:39:35 +00:00
seawood%netscape.com
6de5b59159 Fixing win32 gmake builds lack of debugging information problem by working around a combination MSVC & cygwin make deficiencies:
* We must use the full path to the source file when calling MSVC so that debugging information shows up in the object files.
* Because of cygwin's use of /cygdrive when using full paths, we must use a cygwin-wrapper script in some cases to allow native win32 programs to use a fully qualified cygwin path.
* We have to call configure using the full path so that $(srcdir) contains the
full path in the Makefiles. The rules have been changed for win32 so that it
always use $(srcdir)/$*.{c,cpp} as the sourcefile name even when the file is in
the cwd.  This works around both the /cygdrive issue and the msvc's path info
optimization.
* We still use the wrapper when calling rc.exe & nsinstall.  nsinstall
frequently takes multiple args and is called all over the tree so changing each
calling site is going to be expensive.	(I'll have to check  the logs again but
I think the rc wrapping can go.)
* nspr & ldap still use the wrappers for all native win32 progs.  Neither nspr
nor ldap uses the acoutput-fast.pl script to speed up the substitution of
@srcdir@ into their Makefiles so, makefile substitution will break if we use
dos-paths.
* In the handful of directories where we copy srcfiles from another directory
in lieu of using VPATHs, we have to now copy those files to $(srcdir) so that
the default rules can find them.
Bug #141834 r=leaf,wtc,dmose,mcs
2002-06-17 17:09:57 +00:00
srilatha%netscape.com
a2cc2d81a4 Fix for bugscape bug # 15236. The registry settings for simple MAPI needs to be set same as the installer
r=rdayal, sr=mscott
2002-06-12 22:07:24 +00:00
leaf%mozilla.org
6e6bf977e5 updating locale version string for impending release, bug 149802 2002-06-07 07:45:38 +00:00
srilatha%netscape.com
c7f65283c6 Fix for bug # 129610. Simple Mapi Pref does not get saved if the pref window is launched from mail
r=rdayal@netscape.com, sr=mscott@netscape.com
2002-05-16 21:19:45 +00:00
dougt%netscape.com
c683a217ab Fixes mozilla/strings requiring unfrozen nsCRT class. patch by scc, r=dougt, sr=jag, b=136756 2002-05-15 18:55:21 +00:00
rdayal%netscape.com
1fea44138b fix for bug # 131857 - setting Mozilla as default mail app crashes
Makefile.in changed to build msgMapi.dll for machines using gmake for windows builds.
r=cls, sr=mscott.
2002-05-13 23:04:36 +00:00
darin%netscape.com
6fd5862e6e fixes bug 142870 "nsIFile should use UCS-2 instead of UTF-8"
r=dougt sr=alecf
2002-05-07 23:07:19 +00:00
darin%netscape.com
e554d83626 fixes bug 129279 "nsIFile unicode/utf8/ascii task"
r=dougt sr=alecf
2002-04-27 05:33:09 +00:00
seawood%netscape.com
97531eb92c Add make -j support to win32 gmake builds.
Bug #132848 r=bryner
2002-04-19 02:42:28 +00:00
rdayal%netscape.com
44b4fc0a4f fix for MAPI send of files with localized filenames, bug # 103313
r=nhotta, sr=mscott
2002-04-18 23:43:36 +00:00
dbragg%netscape.com
bcc260038d Regular milestone update of localeVersion values to 1.0.0. Bug 126785. r=tao, sr=alecf, a=asa 2002-04-16 22:19:10 +00:00
timeless%mac.com
c570aacfe2 gmake bustage, bug 129347
r=peterv
2002-04-16 13:44:49 +00:00
rdayal%netscape.com
9a603d19ff fix for bug # 129347, trunk checkin
resolves hang in MAPI Client in certain cases when doing MAPI Send
r=ducarroz, sr=mscott
2002-04-16 12:36:21 +00:00
rdayal%netscape.com
5dae52b2c1 fix for bug # 129347, trunk checking
resolves hang in MAPI Client in certain cases when doing MAPI Send
r=ducarroz, sr=mscott
2002-04-16 12:35:05 +00:00
seawood%netscape.com
6da36f8962 Update .cvsignore to ignore generated Makefiles.
Bug #131909 r=pavlov a=asa
2002-03-26 15:42:05 +00:00
andreww%netscape.com
d2bc38bc28 bugzilla 129140 r=hwaara, sr=hewitt, a=asa - updating skinversion to 1.0 2002-03-14 21:20:51 +00:00
seawood%netscape.com
9bdb6711d0 Remove now redudant REGCHROME calls.
Bug#129456 r=bryner a=asa
2002-03-14 07:11:30 +00:00
seawood%netscape.com
abb8a23948 Remove REGCHROME calls since we now auto-register chrome when jars are processed.
Bug #129456 r=bryner a=asa
2002-03-14 06:17:54 +00:00
darin%netscape.com
f1a6738b6c fixes bug 124042 "support internationalized URIs" r=dougt, sr=alecf, a=asa 2002-03-06 07:48:55 +00:00
bzbarsky%mit.edu
9d9056592c Build simple mapi again. Bug 122725, patch by rdayal@netscape.com,
r=cathleen, sr=mscott, a=roc+moz
2002-03-05 22:42:52 +00:00
dbragg%netscape.com
c7478fbb13 Updating the localeVersion to 0.9.9. Fixes bug 126240. r=tao, sr=dveditz 2002-02-20 03:18:10 +00:00
rdayal%netscape.com
6f0109b54c Fix for bug # 123596, removes the mishaving duplicate pref for default mail client.
Also fixes bug #s 122377 and 120134.
r=ducarroz, sr=mscott.
2002-02-13 05:01:54 +00:00
seawood%netscape.com
5871ae6f2d Use @ so that regchrome commands aren't echoed.
Thanks to Stephen Walker <walk84@yahoo.com> for the patch.
Bug #124328 r=cls
2002-02-08 08:30:30 +00:00
seawood%netscape.com
c84f59958d Add Makefile.ins for mapi
Bug #120135
2002-02-05 09:23:43 +00:00
sfraser%netscape.com
d133d4956f Making the nsModuleComponentInfo data const; bug 74803. r=dp, sr=waterson 2002-01-30 21:14:20 +00:00