Chris Peterson
|
562f0c8648
|
Bug 995655 - Fix -Wuninitialized warnings in libmar. r=rstrong
|
2014-04-12 11:47:57 -07:00 |
|
Ehsan Akhgari
|
fbbc481860
|
Bug 975729 - Move one CFLAGS variable in libmar signing code to DEFINES in moz.build; r=mshal
|
2014-02-22 21:40:15 -05:00 |
|
Ms2ger
|
aa9d7b52b4
|
Bug 968856 - Move unconditional LOCAL_INCLUDES into moz.build; r=mshal
|
2014-02-15 21:24:59 +01:00 |
|
Ehsan Akhgari
|
6ed9144ae7
|
Bug 970745 - Move USE_STATIC_LIBS to moz.build; r=glandium
|
2014-02-11 09:12:33 -05:00 |
|
Ehsan Akhgari
|
82ebdc883f
|
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 |
|
Ehsan Akhgari
|
acc6abdaa6
|
Bug 947735 - Build modules/libmar/ in unified mode; r=bbondy
|
2013-12-09 13:30:27 -05:00 |
|
Mike Hommey
|
f0d1cd1e10
|
Bug 939044 - Remove most definitions of MODULE. r=mshal
|
2013-11-19 11:47:39 +09:00 |
|
Cykesiopka
|
e0bcd6aebc
|
Bug 914270 - Part 1: Simple/Automated moves. r=joey
|
2013-10-24 18:51:00 +01:00 |
|
Mike Hommey
|
f1c0c07862
|
Bug 929905 - Consolidate sources in moz.build. r=gps
|
2013-10-25 08:23:05 +09:00 |
|
Mike Hommey
|
05b3f24e0e
|
Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps
|
2013-09-05 09:01:46 +09:00 |
|
Ms2ger
|
f8f8a40a0a
|
Bug 906619 - Part a: Move unconditional CSRCS to moz.build; r=mshal
|
2013-08-22 08:56:02 +02:00 |
|
Ehsan Akhgari
|
3717325909
|
Bug 872127 - Part 2: Replace mozilla/StandardInteger.h with stdint.h; r=Waldo,ted
|
2013-07-30 10:25:31 -04:00 |
|
Brian O'Keefe
|
ed17339221
|
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 |
|
Kyle Machulis
|
f5e3aadf0b
|
Bug 855465 - Add emacs python mode comments to moz.build files; r=gps
|
2013-04-01 11:36:59 -07:00 |
|
Kyle Machulis
|
d2b6e6e01a
|
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
|
5663b98bc5
|
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
|
ea1d9b8ba7
|
Bug 844654 - Part 2: Move MODULE to moz.build; rs=gps
|
2013-03-19 11:47:00 -07:00 |
|
Gregory Szorc
|
a221bac9c4
|
Bug 784841 - Part 18y: Convert /modules; r=glandium
|
2013-02-25 12:47:23 -08:00 |
|
Brian R. Bondy
|
54ddfa1543
|
Bug 798415 - Import signature to MAR files implementation. r=bsmith
|
2012-10-17 09:39:44 -04:00 |
|
Brian R. Bondy
|
85ee7f85aa
|
Bug 798413 - Export signature from MAR files implementation. r=bsmith
|
2012-10-17 09:39:44 -04:00 |
|
Brian R. Bondy
|
e132a2879d
|
Bug 792452 - Base implementation for multiple signing and verifying. r=bsmith
|
2012-10-17 09:39:44 -04:00 |
|
Ehsan Akhgari
|
2962d2eed1
|
Bug 579517 - Part 5: Add missing StandardInteger.h #includes where needed; r=bsmedberg
Landing on a CLOSED TREE
|
2012-08-08 17:08:17 -04:00 |
|
Ehsan Akhgari
|
8c296bbcd4
|
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
|
c1b35e7b2a
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Gervase Markham
|
87620f5676
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Brian R. Bondy
|
3782513847
|
Bug 720688 - Ability to strip MAR signatures in libmar. r=rstrong
|
2012-02-24 16:29:42 -05:00 |
|
Brian R. Bondy
|
23505aa999
|
Bug 708690 - libmar enhancements for product information blocks. r=rstrong
|
2012-02-24 16:29:41 -05:00 |
|
Brian R. Bondy
|
6b5c28e8df
|
Bug 699700 - Add support for signing and verifying MAR files in libmar and the mar program. r=bsmith
|
2012-02-24 16:29:41 -05:00 |
|