mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
plugin/bz2: Moving to .so in posix
git-svn-id: svn://ultimatepp.org/upp/trunk@4502 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
3ee821a182
commit
feef1a579e
4 changed files with 21 additions and 13 deletions
|
|
@ -5,19 +5,12 @@ optimize_speed;
|
|||
uses
|
||||
Core;
|
||||
|
||||
library(POSIX) bz2;
|
||||
|
||||
file
|
||||
Wrapper readonly separator,
|
||||
bz2.h,
|
||||
bz2upp.cpp,
|
||||
src.tpp,
|
||||
"BZ2 files" readonly separator,
|
||||
lib/bzlib.h,
|
||||
lib/blocksort.c,
|
||||
lib/bzlib.c,
|
||||
lib/bzlib_private.h,
|
||||
lib/compress.c,
|
||||
lib/crctable.c,
|
||||
lib/decompress.c,
|
||||
lib/huffman.c,
|
||||
lib/randtable.c;
|
||||
bzlib.c,
|
||||
src.tpp;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
#include <Core/Core.h>
|
||||
#include <plugin/bz2/bz2.h>
|
||||
#include "lib/bzlib.h"
|
||||
|
||||
#ifdef flagWIN32
|
||||
#include "lib/bzlib.h"
|
||||
#else
|
||||
#include <bzlib.h>
|
||||
#endif
|
||||
|
||||
NAMESPACE_UPP
|
||||
|
||||
|
|
|
|||
11
uppsrc/plugin/bz2/bzlib.c
Normal file
11
uppsrc/plugin/bz2/bzlib.c
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#ifdef flagWIN32
|
||||
|
||||
#include "lib/blocksort.c"
|
||||
#include "lib/bzlib.c"
|
||||
#include "lib/compress.c"
|
||||
#include "lib/crctable.c"
|
||||
#include "lib/decompress.c"
|
||||
#include "lib/huffman.c"
|
||||
#include "lib/randtable.c"
|
||||
|
||||
#endif
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef _plugin_jpg_icpp_init_stub
|
||||
#define _plugin_jpg_icpp_init_stub
|
||||
#include "Draw/init"
|
||||
#define BLITZ_INDEX__ FE833856160034180BCAB32D6048C9BB6
|
||||
#define BLITZ_INDEX__ F227b3ee1134af92a2493f791a66e2afe
|
||||
#include "jpgreg.icpp"
|
||||
#undef BLITZ_INDEX__
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue