Граф коммитов

998 Коммитов

Автор SHA1 Сообщение Дата
sonmi%netscape.com de78cc575e removed RH 6.0, 6.1 and OSF1 4.0 2001-06-12 00:14:05 +00:00
sonmi%netscape.com dd1ac6611a took out the 64 bit HW accelerator tests (did not find libraries) 2001-06-11 21:25:43 +00:00
nicolson%netscape.com c3e0c972dd Let's try it with a tab instead of 4 spaces. 2001-06-10 23:06:37 +00:00
nicolson%netscape.com ea5dbee986 Export pk11pqg.h, so I can call these functions from JSS. 2001-06-10 23:05:01 +00:00
nelsonb%netscape.com 7ae1c3135d Reduce warnings on Unix platforms that don't like bitfields in chars. 2001-06-09 19:45:22 +00:00
nelsonb%netscape.com f41192132c Fix two bugs found in nightly QA. On Solaris/x86, don't assert that the
sid cache entry is a multiple of 8 bytes long.  On OSF1, reduce the
maximum number of POSIX semaphores so it doesn't exceed the per-process
limit of 256.
2001-06-09 19:30:21 +00:00
wtc%netscape.com a291197f66 Bugzilla bug #84918: checked in Linux/ia64 porting patch from
Bill Nottingham <notting@redhat.com>.
Modified files: coreconf/Linux.mk, nss/tests/common/arch.sh
2001-06-09 17:14:59 +00:00
nelsonb%netscape.com 26c1355d94 Change ssl_Time() to use time() instead of PR_Now on systems that have it. 2001-06-09 03:20:13 +00:00
nelsonb%netscape.com 9509618196 3 Changes:
1. New SSL server session cache implementation that uses finer grained
locking to reduce lock contention, and does 128-way associative caching.
2. rename symbol SSL_SESSIONID_BYTES to SSL2_SESSIONID_BYTES.
3. Work around compiler bug on Solaris i386.
Modified Files:
    manifest.mn sslcon.c sslimpl.h sslsecur.c sslsnce.c
2001-06-09 03:18:09 +00:00
nelsonb%netscape.com 6166732e49 Portable POSIX-like unnamed semaphores that work in process-shared memory. 2001-06-08 02:56:31 +00:00
sonmi%netscape.com 45fadfe4e8 fixed a few strings that were not under "" 2001-06-08 01:51:59 +00:00
relyea%netscape.com cb83c37391 fix spelling of PK11_PQG_GenSeed*() 2001-06-07 21:52:07 +00:00
relyea%netscape.com 2bdd1e95a0 Add PQG, spki, and some misch functions that JSS needs. 2001-06-07 21:51:29 +00:00
relyea%netscape.com f6aeb2c72a Add Stub functions for PQG functions (until we implent PQG through the PKCS #11 interface). 2001-06-07 21:48:35 +00:00
relyea%netscape.com 2c16a917c9 Add function to encode a SPKI structure. 2001-06-07 21:47:29 +00:00
relyea%netscape.com 0e4602c3b1 Add new dercert functions for JSS. 2001-06-06 23:45:27 +00:00
relyea%netscape.com 4f6d9bfe6f Add DER version of key for cert exists for JSS. 2001-06-06 23:41:24 +00:00
relyea%netscape.com 70c2f8fb07 Add DER version of isCA for JSS. 2001-06-06 23:40:51 +00:00
wtc%netscape.com 29aa0c3c90 Bugzilla bug #77884: fixed discrepancy between the size of an array and
the variable that represents the array size.  Let the compiler compute
the value for us instead of using hardcoded constants.  Thanks to
andrew@fernandes.org for reporting and tracking down this bug.
2001-06-06 17:00:51 +00:00
wtc%netscape.com 3d8ad4fec1 Bugzilla bug #83811: added a new implicit rule to build BUILT_CSRCS
because VPATH or vpath doesn't search in a directory that doesn't
exist at the beginning of a make invocation even if it is created
by the make invocation.
Modified files: coreconf/rules.mk, nss/lib/fortcrypt/swfort/manifest.mn
2001-06-05 00:32:14 +00:00
nelsonb%netscape.com 6bfd47f3e1 Fix bug that caused version number to be wrong in SSL3 client hellos
when restarting an SSL3 (not TLS) session.  (no bug number)
2001-06-05 00:26:37 +00:00
wtc%netscape.com e129f78dda The rule for creating nslib.c does not need to be a double-colon rule.
Modified it to use automatic variables ($+ and $@) instead of hardcoded
file names.
2001-06-03 05:36:28 +00:00
wtc%netscape.com c77cd80205 Simplified the nss_build_all and nss_RelEng_bld rules; they don't
need to create recursive make processes.
2001-06-03 05:28:18 +00:00
wtc%netscape.com fd82935c29 Bugzilla bug #83811: deleted the useless vpath %.c $(OBJDIR) because
OBJDIR is not defined yet.  Restored VPATH = $(OBJDIR) as a temp
workaround.  Also deleted GARBAGE = nslib.c, which is no longer
correct.
2001-06-02 15:59:58 +00:00
wtc%netscape.com 2966bd2715 Deleted redundant VPATH because vpath is enough. 2001-06-02 06:12:29 +00:00
wtc%netscape.com 89d09973a5 Restored MPI_USERS as these files do depend on $(MPI_HDRS). 2001-06-02 03:07:26 +00:00
wtc%netscape.com 12c47a150a It is more efficient to use := to when the value of the assignment is
$(shell ...).
2001-06-02 03:03:58 +00:00
wtc%netscape.com df8687e8f6 The strip function should be unnecessary. 2001-06-02 02:35:51 +00:00
wtc%netscape.com db9fbf2a5d Turned on building of the software Fortezza pkcs11 module. It builds on
NT (both in source tree and with BUILD_TREE) for me.
2001-06-02 02:08:55 +00:00
wtc%netscape.com cfda3d57fd Use = instead of += to define INCLUDES. It is fine to use = because
this is the very first file Makefile includes.
Define -DSWFORT in DEFINES rather than CFLAGS.  First, DEFINES is the
variable for macro defines.  Second, by not defining CFLAGS in this file,
we will be able to check in the fix for bug #77788.  However, I am not
sure whether we should fix bug #77788.
2001-06-01 23:32:39 +00:00
sonmi%netscape.com 66ef051c1e added hw accelerator stuff, that should nor affect any machine except iWs-perf 2001-06-01 23:10:35 +00:00
relyea%netscape.com 8b0d0faf84 Add function to import a cert using it's DER form rather than it's cert form. 2001-06-01 22:50:23 +00:00
relyea%netscape.com beb9a19ad9 export new functions for JSS to use 2001-06-01 22:49:48 +00:00
wtc%netscape.com 5012fa24d8 Deleted unused variables CPORLN and MPI_USERS. 2001-06-01 01:07:58 +00:00
sonmi%netscape.com 5784d7f84f changed handleing of URLs to make it run better on Windows 2001-06-01 00:36:03 +00:00
sonmi%netscape.com eff6311566 added directories to the searchpath for Solaris 86, made sure Sun Solaris
directories were not searched
2001-06-01 00:18:57 +00:00
sonmi%netscape.com 21f54d3261 added some HW accelerator related flags and variables
added Solaris i86 info
changed handeling of directories to have the NT version closer to the
Unix version
2001-06-01 00:15:49 +00:00
sonmi%netscape.com a19137f403 added Solaris x86 2001-06-01 00:13:08 +00:00
wtc%netscape.com 2961017d5d Deleted the comment altogether because the code it described had been
deleted.
2001-05-31 23:25:46 +00:00
wtc%netscape.com 97dd71b727 Fixed a typo. 2001-05-31 23:19:15 +00:00
wtc%netscape.com ce8559de1b Bugzilla bug #82837: backed out the workaround as we are not affected by
this compiler bug with Nelson's fix in bug #73115.
2001-05-31 00:12:18 +00:00
sonmi%netscape.com 1f5f7a732d changed to not require the OBJD builds on Windows anymore 2001-05-30 19:22:16 +00:00
wtc%netscape.com 32d9e72f6b Bugzilla bug #82837: work around a Forte6 compiler optimization bug on
Solaris x86.
2001-05-30 18:15:30 +00:00
sonmi%netscape.com 7647565c82 searching for nstools in different places now ($MOZ_TOOLS, z:/nstools,
c:/nstools, d:/nstools and d:/i386/nstools)
2001-05-25 01:46:08 +00:00
sonmi%netscape.com c20f32f11d took out backward compatibility testing for tinderbox 2001-05-25 01:44:37 +00:00
wtc%netscape.com 8388ae052d Added the realclean and clobber_all targets. 2001-05-25 01:20:07 +00:00
sonmi%netscape.com 8daad84eff hopefully fix for tindebox blue screen problem: Removed NT invalid character
from the path
2001-05-24 23:28:21 +00:00
larryh%netscape.com 7c39f6468b Bugzilla: 81706. strsclnt exit code 2001-05-24 16:44:25 +00:00
larryh%netscape.com f0278a97d7 Bugzilla: 82259. #error not #pragma 2001-05-24 00:22:55 +00:00
larryh%netscape.com 1e759a722e Bugzilla: 82259. improve rootcert load 2001-05-24 00:17:10 +00:00