Ehsan Akhgari
|
d91d200572
|
Bug 969757 - Remove the dead code in our tree which pretends to support OS/2; r=roc,mcmanus,gps,jorendorf,bsmedberg sr=bsmedberg
|
2014-02-10 17:57:01 -05:00 |
|
Henri Sivonen
|
eaaf5f4ede
|
Bug 935453 - Gather telemetry about dangerous encodings and encodings we might remove. r=emk,sstamm.
|
2013-11-11 17:04:02 +02:00 |
|
Ehsan Akhgari
|
a3f7ee4300
|
Bug 936899 - Build all of the uconv library in unified mode; r=smontagu
|
2013-11-10 14:41:29 -05:00 |
|
Mike Hommey
|
7cb0d25686
|
Bug 932160 - Use UNIFIED_SOURCES for uconv unified sources. r=mshal
|
2013-10-30 07:43:39 +09:00 |
|
Mike Hommey
|
b000a846c2
|
Bug 929905 - Consolidate sources in moz.build. r=gps
|
2013-10-25 08:23:05 +09:00 |
|
Ehsan Akhgari
|
ad603d8368
|
Bug 928231 - Build the uconv library in unified mode; r=smontagu
--HG--
extra : rebase_source : 8f92dcbec9e63aee39c9e15b58e8a189ba9cc2f6
|
2013-10-17 19:09:20 -04:00 |
|
Ehsan Akhgari
|
bab998bc2b
|
Bug 921472 - Minimize the #includes in intl/; r=smontagu
--HG--
extra : rebase_source : 09da2f7e2e4602e2572a64f45828a660aefe5ec2
|
2013-09-27 12:45:04 -04:00 |
|
Trevor Saunders
|
4aff5f1b09
|
bug 915566 - rm makefiles in intl/ r=mshal
|
2013-09-12 13:39:02 -04:00 |
|
Mike Hommey
|
f8bc7fa754
|
Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps
|
2013-09-05 09:01:46 +09:00 |
|
Ms2ger
|
1c4d224f0e
|
Bug 883284 - Part d: Move LIBXUL_LIBRARY into moz.build (f-j); r=bsmedberg
|
2013-08-22 08:56:00 +02:00 |
|
Trevor Saunders
|
f33ade0d68
|
bug 887483 - remove a bunch of useless assignments to FORCE_STATIC_LIB implied by LIBXUL_LIBRARY=1 r=mshal
|
2013-07-11 11:06:34 -04:00 |
|
Brian O'Keefe
|
11bcc1cd9e
|
Bug 875934 - Move LIBRARY_NAME to moz.build (batch #1); r=mshal
--HG--
extra : rebase_source : 385d3fd65475ffc18ee44ae088753649470e214b
|
2013-06-17 15:21:01 -04:00 |
|
Mike Shal
|
5169c0a913
|
Bug 864774 - Part 2: Move CPPSRCS to moz.build as CPP_SOURCES; r=joey CLOSED TREE
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
|
2013-04-23 17:54:15 -04:00 |
|
Mike Shal
|
df7deac25b
|
Bug 846634 - Part 2: Move EXPORTS to moz.build; r=joey
|
2013-04-16 15:24:43 -04:00 |
|
Kyle Machulis
|
72a717a860
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
|
2013-04-01 11:36:59 -07:00 |
|
Kyle Machulis
|
43628a7867
|
Backout for changeset 03452b187c14 (Bug 855465) due to bustage on a CLOSED TREE; r=qdot
|
2013-03-29 15:12:58 -07:00 |
|
Kyle Machulis
|
334c0800cf
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
--HG--
extra : rebase_source : 004a756492323e1a049586e85b3be5037159df20
|
2013-03-29 13:56:18 -07:00 |
|
Mike Shal
|
7ecea60097
|
Bug 844654 - Part 2: Move MODULE to moz.build; rs=gps
|
2013-03-19 11:47:00 -07:00 |
|
Gregory Szorc
|
df855dd06e
|
Bug 784841 - Part 18q: Convert /intl; r=ted f=Ms2ger
|
2013-02-25 12:47:21 -08:00 |
|
Masatoshi Kimura
|
8395e84bbf
|
Bug 830112 - Remove prtypes.h from intl/ and some other cleanups. r=smontagu
|
2013-01-14 03:06:28 +09:00 |
|
Masatoshi Kimura
|
69a07017d6
|
Bug 797385 - Part 3: Remove ibm864i converter. r=smontagu
|
2012-10-10 06:32:37 -04:00 |
|
Ehsan Akhgari
|
e368dc9c85
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Mike Hommey
|
70d7c821af
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Benjamin Smedberg
|
a7e67d32ad
|
Bug 568691 part B - mechanical changes to in-tree binary modules needed to get them building and registering correctly. After this patch, xpcshell appears to work.
|
2010-06-10 14:11:40 -04:00 |
|
Benjamin Smedberg
|
ba372f3a4c
|
Followup to bug 398573 - remove REQUIRES from the tree since it is no longer used... automatically generated patch, rs=ted
|
2009-08-25 08:59:31 -07:00 |
|
Simon Montagu
|
d1e980ba41
|
Remove obsolete files in intl/uconv. Bug 475538, r=Masatoshi Kimura <VYV03354@nifty.ne.jp>
|
2009-02-12 04:09:54 -08:00 |
|
mozilla@weilbacher.org
|
fc80bb59ab
|
Bug 413613: remove MOZ_EXTRA_X11CONVERTERS and the code it enables, r=smontagu, a=beltzner
|
2008-01-28 14:22:53 -08:00 |
|
hg@mozilla.com
|
05e5d33a57
|
Free the (distributed) Lizard! Automatic merge from CVS: Module mozilla: tag HG_REPO_INITIAL_IMPORT at 22 Mar 2007 10:30 PDT,
|
2007-03-22 10:30:00 -07:00 |
|
mkaply%us.ibm.com
|
42ccc150aa
|
OS/2 build break continued
|
2007-02-21 21:43:20 +00:00 |
|
mkaply%us.ibm.com
|
b3ce071a7c
|
OS/2 build break - mismatch in patch
|
2007-02-21 17:38:25 +00:00 |
|
mkaply%us.ibm.com
|
2147b0c11b
|
#369424
r=smontagu, sr=mkaply (OS/2 only)
Add OS/2 only support for CP1125 and CP1131
|
2007-02-19 18:26:06 +00:00 |
|
smontagu%smontagu.org
|
848316fb3c
|
Remove mShiftTable from encoders/decoders that don't use it and various other pieces of stale code. Bug 336575, r=jshin, rs=roc
|
2006-08-07 07:57:31 +00:00 |
|
cbiesinger%web.de
|
51a89a8b1e
|
bug 335180 Remove win32.order, mozilla-bin.order, --enable-reorder, and
associated code. These options do not really work anymore.
r=bsmedberg
|
2006-05-06 17:53:51 +00:00 |
|
bsmedberg%covad.net
|
79241940e8
|
Bug 273876 - libxul step 2 (everything through widget, except spidermonkey) r=darin; again, this should not affect non-xulrunner trees.
|
2004-12-09 19:28:35 +00:00 |
|
mkaply%us.ibm.com
|
fa47ed186f
|
#240597
r=pedemonte, sr=blizzard (platform specific)
OS/2 only - add support for codepage 869 - not used in browser, just used for native conversions
|
2004-04-20 02:46:49 +00:00 |
|
gerv%gerv.net
|
31625ba2b1
|
Bug 236613: change to MPL/LGPL/GPL tri-license.
|
2004-04-18 14:21:17 +00:00 |
|
mkaply%us.ibm.com
|
97aa00840e
|
#240596
rs=roc, a=dveditz
Add euro to some 8XX codepages and update 862
|
2004-04-15 17:22:07 +00:00 |
|
pkw%us.ibm.com
|
7228baf9bc
|
Bug 210629 - Add encoder/decoder for (x-)IBM-1046 used for Arabic on AIX.
r=jshin@mailaps.org, sr=roc@ocallahan.org
|
2004-03-09 14:14:55 +00:00 |
|
mkaply%us.ibm.com
|
9a7c290d71
|
#215581
r=mkaply, sr=blizzard (platform specific)
Changes to get GCC 3.2.2 working on OS/2 - this set is OS/2 only changes
|
2003-09-15 21:33:41 +00:00 |
|
mkaply%us.ibm.com
|
e5e34ae312
|
rs=leaf
Remove XP_OS2_VACPP from the tree
|
2003-07-21 22:10:08 +00:00 |
|
jaggernaut%netscape.com
|
2d7ed90a69
|
Bug 73353: clean up MODULE/REQUIRES story. r=cls, sr=bryner
|
2003-07-13 22:29:00 +00:00 |
|
seawood%netscape.com
|
57e08a3f3a
|
Define WIN32_LEAN_AND_MEAN globally for win32 builds.
Thanks to Stephen Walker <walk84@yahoo.com> for the patch.
Bug #172898 r=cls a=asa
|
2002-10-17 06:47:01 +00:00 |
|
alecf%netscape.com
|
71f32d15bb
|
fix for bug 158003 - custom static constructors for i18n unicode converters.
r=shanjian, sr=bz, a=roc+moz
|
2002-09-07 01:17:57 +00:00 |
|
stephend%netscape.com
|
4bcdc79c3d
|
Bug 160248. Removing unused _IMPL_NS_INTL defines. Patch by Stephen Walker <walk84@yahoo.com> r=seawood@netscape.com, NO sr needed, makefiles only
|
2002-08-29 01:33:14 +00:00 |
|
alecf%netscape.com
|
24b1b48a47
|
removal of last of files which are no longer part of the build
|
2002-08-12 19:38:29 +00:00 |
|
alecf%netscape.com
|
398c128889
|
fix for bug 157993 - combine all unicode converters into a single library, and share GetMaxLength() implementation between all converters that can support it.
r=ftang, sr=blizzard
|
2002-08-12 19:16:16 +00:00 |
|
seawood%netscape.com
|
322da773fb
|
Removing old nmake build makefiles. Bug #158528 r=pavlov
|
2002-08-10 07:55:43 +00:00 |
|
bryner%netscape.com
|
7dafb891cc
|
Removing unused NS_DOM/_IMPL_NS_DOM and NS_INTL/_IMPL_NS_INTL defines (bugs 160248 and 160253). Patch for 160248 by walk84@yahoo.com, r=me&cls; patch for 160253 by me, r=cls.
|
2002-07-31 20:53:46 +00:00 |
|
alecf%netscape.com
|
eed8e408de
|
fix for bug 125617 - use the category manager instead of the registry to keep our list of encoders/decoders
r=dougt, sr=dveditz
|
2002-06-22 21:08:00 +00:00 |
|