Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spyopensource/jcore
This is the microkernel for Java OS
https://github.com/spyopensource/jcore
java kernel
Last synced: 4 days ago
JSON representation
This is the microkernel for Java OS
- Host: GitHub
- URL: https://github.com/spyopensource/jcore
- Owner: sPyOpenSource
- License: gpl-2.0
- Created: 2019-07-12T12:34:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T11:06:26.000Z (2 months ago)
- Last Synced: 2024-09-10T12:37:21.984Z (2 months ago)
- Topics: java, kernel
- Language: C
- Homepage:
- Size: 136 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.LZO
- Changelog: CHANGELOG
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
-----BEGIN PGP SIGNED MESSAGE-----
============================================================================
miniLZO -- mini subset of the LZO real-time data compression library
============================================================================Author : Markus Franz Xaver Johannes Oberhumer
http://wildsau.idv.uni-linz.ac.at/mfx/lzo.html
Version : 1.07
Date : 18-Oct-2000I've created miniLZO for projects where it is inconvenient to
include (or require) the full LZO source code just because you
want to add a little bit of data compression to your application.miniLZO implements the LZO1X-1 compressor and both the standard and
safe LZO1X decompressor. Apart from fast compression it also useful
for situations where you want to use pre-compressed data files (which
must have been compressed with LZO1X-999).miniLZO consists of one C source file and two header files:
minilzo.c
minilzo.h
lzoconf.hTo use miniLZO just copy these files into your source directory, add
minilzo.c to your Makefile and #include minilzo.h from your program.
Note: you also must distribute this file (`README.LZO') with your project.minilzo.o compiles to about 6 kB (using gcc or Watcom C on a i386), and
the sources are about 14 kB when packed with zip - so there's no more
excuse that your application doesn't support data compression :-)For more information, documentation, example programs and other support
files (like Makefiles and build scripts) please download the full LZO
package from
http://wildsau.idv.uni-linz.ac.at/mfx/lzo.htmlHave fun,
MarkusP.S. minilzo.c is generated automatically from the LZO sources and
therefore functionality is completely identicalAppendix A: building miniLZO
----------------------------
miniLZO is written such a way that it should compile and run
out-of-the-box on most machines.If you are running on a very unusual architecture and lzo_init() fails then
you should first recompile with `-DLZO_DEBUG' to see what causes the failure.
The most probable case is something like `sizeof(char *) != sizeof(long)'.
After identifying the problem you can compile by adding some defines
like `-DSIZEOF_CHAR_P=8' to your Makefile.The best solution is (of course) using Autoconf - if your project uses
Autoconf anyway just add `-DMINILZO_HAVE_CONFIG_H' to your compiler
flags when compiling minilzo.c. See the LZO distribution for an example
how to set up configure.in.Appendix B: list of public functions available in miniLZO
---------------------------------------------------------
Library initialization
lzo_init()Compression
lzo1x_1_compress()Decompression
lzo1x_decompress()
lzo1x_decompress_safe()Checksum functions
lzo_adler32()Version functions
lzo_version()
lzo_version_string()
lzo_version_date()Portable (but slow) string functions
lzo_memcmp()
lzo_memcpy()
lzo_memmove()
lzo_memset()Appendix C: suggested macros for `configure.in' when using Autoconf
-------------------------------------------------------------------
Checks for typedefs and structures
AC_CHECK_TYPE(ptrdiff_t,long)
AC_TYPE_SIZE_T
AC_CHECK_SIZEOF(unsigned short)
AC_CHECK_SIZEOF(unsigned)
AC_CHECK_SIZEOF(unsigned long)
AC_CHECK_SIZEOF(char *)
AC_CHECK_SIZEOF(ptrdiff_t)
AC_CHECK_SIZEOF(size_t)Checks for compiler characteristics
AC_C_CONSTChecks for library functions
AC_CHECK_FUNCS(memcmp memcpy memmove memset)Appendix D: Copyright
---------------------
LZO and miniLZO are Copyright (C) 1996-2000
Markus Franz Xaver Johannes OberhumerLZO and miniLZO are distributed under the terms of the GNU General
Public License (GPL). See the file COPYING.Special licenses for commercial and other applications which
are not willing to accept the GNU General Public License
are available by contacting the author.-----BEGIN PGP SIGNATURE-----
Version: 2.6.3ia
Charset: noconviQCVAwUBOez6EG10fyLu8beJAQFYJAQAx5RYO13VB8A25KGP2BFzvHWfX+QkGTmO
LEUfTm2URZZ9DDyz7UbZsVWuK+ztOqD4H6BiwpXldJ1JWf02gI9seCZd7GA5LaGP
VyLrU2Kuv7DVf74cVMRs+CSKDYV6AW0KsGDeBY7Uceh7r9nBSM8QJkcqCnZnFkm5
JXP8ySD6u9U=
=oXrB
-----END PGP SIGNATURE-----