advised to upgrade.
2006-10-18 - PyMSNt 0.11.2 released!
* Fixed problem caused by small MSN protocol change
* Use md5 hashes for spool directory
* Moved avatar to root of spool directory
* Supported Twisted versions: 1.3, 2.0.1, 2.1, 2.2, 2.4
* Fixed licensing problems for the Debian people
* kqueue apparently doesn't work too well, so it is no longer
the default reactor on BSD
This code is a raw OCR engine. It has NO PAGE LAYOUT ANALYSIS, NO
OUTPUT FORMATTING, and NO UI. It can only process an image of a
single column and create text from it. It can detect fixed pitch
vs proportional text. Having said that, in 1995, this engine was
in the top 3 in terms of character accuracy, and it compiles and
runs on both Linux and Windows. Another current limitation is that
it only recognizes English and its character set is only US-ASCII.
Training code IS included in the open source release however, and
will be included in a future release.
TODO:
Compiles fine, but dumps core on NetBSD-4.99.3/amd64. Backtrace:
Program terminated with signal 11, Segmentation fault.
#0 0x00000000004c1c70 in reverse32 ()
(gdb) bt
#0 0x00000000004c1c70 in reverse32 ()
#1 0x00000000004aed12 in read_squished_dawg ()
#2 0x00000000004aaded in init_permute ()
#3 0x0000000000485779 in program_editup ()
#4 0x0000000000485869 in start_recog ()
#5 0x0000000000403d04 in init_tesseract ()
#6 0x000000000040309b in main ()
(gdb)
revision 1.14
date: 2006/04/05 22:22:16; author: markd; state: Exp; lines: +11 -169
Pass the correct sized argument to sbrk() when trying to reduce the break
so that on 64bit systems it is actually a negative number, not a very
large positive one. Should fix PR pkg/29351.
Thanks to Martijn van Buul for giving me access to an amd64 box so I
could track this down. Bump PKGREVISION.
Don't bump PKGREVISION here, because it's a daily CVS snapshot anyway.
All:
- Fixed some files that did include <avoffset.h> instead of <schily/avoffset.h>
- Trying to make the floating point printf() support functions work
on systems that implement C99 only with no fallback.
As this change is a result from a report from a person that does not like
to cooperate, I was not able to test on the reported AIX-5.x platform.
Also note that this change may result in problems on other platforms.
Please test and report!
- The Schily Makefilesystem now includes environment definitions
for the Microsoft Studio 8 compiler. If you like to edit these
definitions, check the DEFAULTS directory
- Next step in supporting Microsoft C-compilers: build in environment
set up for the MS compilers. To compile with the MS C-Compiler,
set up a Cygwin environment and compile a Cygwin 'smake'.
Then use this smake to comile with the MS C-compiler by calling:
smake CCOM=cl
This defaults to VC7. If you like to use VC6, call:
smake CCOM=cl VC=6
Note that smake itself (if compiled with "cl") will not work, as
MS does not implement a reliable way to pass a quoted arg vector
to a new program.
Note that cdrtools do not yet completely compile with MSVC. This
is mostly caused by missing standard comliance in the MS C-compilers.
Cdrecord:
- Fixed a bug introduced with 2.01.01a17 that caused cdrecord to complain about
an illegal layer breadk value if called with a single layer DVD and another
driveropts= option. Thanks to Monika Schillling
Mkisofs (By Jörg Schilling and James Pearson j.pearson@ge.ucl.ac.uk):
- Implement a new "correct inode number" algorithm for zero length files.
- Implement a fingerprint that allows to check whether a ISO-9660 file
system image has been created by a new mkisofs and inplements the
new "correct inode number" algorithm.
- Implementing the new Rock Ridge (rrip) protocol version 1.12 from 1994.
Mkisofs before implemented the old rrip version 1.10 from 1993.
- New option -rrip110 to disable the "new" 1994 Rock Ridge version.
This option may be needed if you know of a system that does not deal with
RRip V-1.12. Currently no such system is known.
- Using better (more portable) values for some special "inode" numbers.
- Implement correct hard link counts for directories and files with Rock Ridge
- Mkisofs cannot live without libschily anymore. For this reason, the
#ifdef USE_LIBSCHILY code has been removed.
- Better & faster hashing:
- Better hach function in hash.c for more balanced hash tree
- Number of hash root entries enhanced from 1024 to 16*1024
- Avoid string compare in find_file_hash()
- Corrected check algorithm, for non-zero-length files that are assigned
to a zero extent
- Avoid uncached entries to clash with real inode numbers.
- Print correct number of written extents in multi session mode.
- All ISO-9660 numbers now correctly use the type UInt32_t
- Convert type of all extent number related variables to UInt32_t
- Use inode caching by default on newer Cygwin releases that use
64 bit inode numbers.