annotate share/ca-certs/Makefile.am @ 22896:8dadddab10ed

Fix purple_str_to_time() to not break the returned value when we have given it a string with a GMT offset (like a log filename). We were setting tm_isdst to 0 when we knew the offset. Apparently, mktime() said, "Umm, yes, it is DST." and fixed it by shifting the hour. The fix is to tell the C library (by setting tm_isdst to -1) that we're sure of the time, but not the DST status. Hopefully this doesn't break any other code path. Fixes #3550
author Richard Laager <rlaager@wiktel.com>
date Sun, 11 May 2008 04:50:36 +0000
parents a464f202e6c4
children 390384053186
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19214
058bfbc4befe - Fix the autoconf/automake stuff so that the ca-certs work
William Ehlhardt <williamehlhardt@gmail.com>
parents: 19213
diff changeset
1 cacertsdir = $(datadir)/purple/ca-certs
058bfbc4befe - Fix the autoconf/automake stuff so that the ca-certs work
William Ehlhardt <williamehlhardt@gmail.com>
parents: 19213
diff changeset
2 cacerts_DATA = \
19217
5cde8ad06204 - Add the Verisign root key (used for MSN)
William Ehlhardt <williamehlhardt@gmail.com>
parents: 19214
diff changeset
3 Equifax_Secure_CA.pem \
19530
82953ee5b3e6 - Add GTE CyberTrust Global Root certificate. Fixes #2821 , hopefully
William Ehlhardt <williamehlhardt@gmail.com>
parents: 19525
diff changeset
4 GTE_CyberTrust_Global_Root.pem \
20305
636e6a3a5b67 applied changes from a4ca83f88d6ff3c9315ae4fb327b7675d324a494
Luke Schierer <lschiere@pidgin.im>
parents: 19545
diff changeset
5 Microsoft_Secure_Server_Authority.pem \
21927
a464f202e6c4 Add the StartCom Free SSL Certificate Authority certificate (as used by
Stu Tomlinson <stu@nosnilmot.com>
parents: 20305
diff changeset
6 StartCom_Free_SSL_CA.pem \
19519
2e27d9291197 - Add Verisign's Class 3 Extended Validation CA (used for login.live.com
William Ehlhardt <williamehlhardt@gmail.com>
parents: 19217
diff changeset
7 Verisign_RSA_Secure_Server_CA.pem \
19525
c13f0639917d - Add Verisign Class 3 Primary CA. Fixes #2821
William Ehlhardt <williamehlhardt@gmail.com>
parents: 19519
diff changeset
8 Verisign_Class3_Primary_CA.pem
19213
30da22191757 - Add the ca-certs directory for putting default-shipping root certs in.
William Ehlhardt <williamehlhardt@gmail.com>
parents:
diff changeset
9
19545
0084f7fba421 Add mingw makefile to the dist. Update uninstaller for new certs.
Daniel Atallah <daniel.atallah@gmail.com>
parents: 19530
diff changeset
10 EXTRA_DIST = \
0084f7fba421 Add mingw makefile to the dist. Update uninstaller for new certs.
Daniel Atallah <daniel.atallah@gmail.com>
parents: 19530
diff changeset
11 Makefile.mingw \
0084f7fba421 Add mingw makefile to the dist. Update uninstaller for new certs.
Daniel Atallah <daniel.atallah@gmail.com>
parents: 19530
diff changeset
12 $(cacerts_DATA)
19213
30da22191757 - Add the ca-certs directory for putting default-shipping root certs in.
William Ehlhardt <williamehlhardt@gmail.com>
parents:
diff changeset
13