[Commit] nickle ChangeLog,1.142,1.143 prng.5c,1.12,1.13

Bart Massey commit at keithp.com
Sun Dec 11 23:05:52 PST 2005


Committed by: bart

Update of /local/src/CVS/nickle
In directory home.keithp.com:/tmp/cvs-serv4179

Modified Files:
	ChangeLog prng.5c 
Log Message:
2005-12-11  Bart Massey <bart at cs.pdx.edu>
version 2.52

	* debian/changelog:
	Update for version 2.52
	
        * prng.5c:
	Since it's now autoimported, autoload ARC4
	so that it will continue to work.

	* examples/menace2.5c:
	* examples/miller-rabin.5c:
	* examples/mutextest.5c:
	* examples/randtest.5c:
	* examples/rsa-demo.5c:
	* examples/skiplist.5c:
	* examples/skiplisttest.5c:
	* examples/sort.5c:
	* examples/smlng/generate.5c:
	Add needed autoloads/autoimports to make
	the examples work again.  Not obvious that
	PRNG shouldn't continue to be loaded, and
	maybe even imported, although that would also
	force in ARC4 in the current implementation.
	


Index: ChangeLog
===================================================================
RCS file: /local/src/CVS/nickle/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -d -r1.142 -r1.143
--- ChangeLog	10 Dec 2005 22:11:45 -0000	1.142
+++ ChangeLog	12 Dec 2005 07:05:49 -0000	1.143
@@ -1,3 +1,28 @@
+2005-12-11  Bart Massey <bart at cs.pdx.edu>
+version 2.52
+
+	* debian/changelog:
+	Update for version 2.52
+	
+        * prng.5c:
+	Since it's now autoimported, autoload ARC4
+	so that it will continue to work.
+
+	* examples/menace2.5c:
+	* examples/miller-rabin.5c:
+	* examples/mutextest.5c:
+	* examples/randtest.5c:
+	* examples/rsa-demo.5c:
+	* examples/skiplist.5c:
+	* examples/skiplisttest.5c:
+	* examples/sort.5c:
+	* examples/smlng/generate.5c:
+	Add needed autoloads/autoimports to make
+	the examples work again.  Not obvious that
+	PRNG shouldn't continue to be loaded, and
+	maybe even imported, although that would also
+	force in ARC4 in the current implementation.
+	
 2005-12-10  Bart Massey <bart at cs.pdx.edu>
 version 2.51
 

Index: prng.5c
===================================================================
RCS file: /local/src/CVS/nickle/prng.5c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- prng.5c	11 Dec 2004 05:02:53 -0000	1.12
+++ prng.5c	12 Dec 2005 07:05:49 -0000	1.13
@@ -6,6 +6,8 @@
  * Modified 2003/4 to support /dev/random
  */
 
+autoload ARC4;
+
 namespace PRNG {
   import File;
 



More information about the Commit mailing list