Török Edvin
2c7d5adc15
If C++ compiler is not available, don't build LLVM.
...
This is tricky, because autoconf provides no way to do this automatically
(AC_PROG_CXX fails if no C++ compiler).
One could override AC_MSG_ERROR/FAILURE for AC_PROG_CXX, but that causes all
sorts of problems later (like sys/types.h not found).
So instead create yet another configure in libclamav/c++,
but teach autoconf not to fail if the subconfigure fails
(by overriding AC_MSG_ERROR to set a variable instead of exiting).
This seems to work with shared and static builds, "-all-static" builds
don't work yet, will fix that later.
16 years ago
Török Edvin
8771ff1860
rename libclamav/{llvm->c++}
16 years ago
Török Edvin
d1487222f7
Draft of libclamav <-> jit communication.
16 years ago
Török Edvin
441eaf95d0
Add llvm autoconf glue.
16 years ago
aCaB
11d7c8aade
new autotools
16 years ago
aCaB
295f1d1f8b
build system upgrade - bb#1528
16 years ago
aCaB
7dd5d4c94d
introduce new lzma
16 years ago
Tomasz Kojm
cc447ac82c
configure, libclamav: fix compile issues on IRIX (bb#1532)
16 years ago
aCaB
86d59b249e
fix portability issues for fseeko, sysconf(_SC_PAGESIZE), getpagesize() (bb#1658)
16 years ago
Török Edvin
997a1efeb2
Draft of bytecode loader.
16 years ago
Tomasz Kojm
8df99a92aa
0.95.2
...
git-svn: trunk@5074
16 years ago
Török Edvin
2fd6eb95de
add -fno-strict-aliasing, so that gcc-4.4.0 works correctly. Code will be fixed for 0.96. (bb #1581 ).
...
git-svn: trunk@5065
16 years ago
Török Edvin
e6dedc7290
Fix Solaris memory usage: don't link with -lmalloc on Solaris (bb #1595 ,
...
thanks to David Schweikert <david*schweikert.ch> for tracking down the problem).
git-svn: trunk@5062
16 years ago
Török Edvin
75ce59c12f
errno is not thread-safe on AIX by default, ask for thread-safe version. (bb #1480 )
...
Default stack size on AIX is too small, define BIGSTACK by default. (bb #1481 ).
git-svn: trunk@5054
16 years ago
Tomasz Kojm
bdd4b77c18
0.95.1
...
git-svn: trunk@5032
16 years ago
Tomasz Kojm
faed911222
bump flevel and revision
...
git-svn: trunk@5031
16 years ago
Török Edvin
0b44bb9f3b
use same symbols as 0.95 for libclamunrar_iface (bb #1535 ).
...
git-svn: trunk@5018
16 years ago
Török Edvin
4b93f2b633
check for mallinfo availability (bb #1445 ).
...
git-svn: trunk@5001
16 years ago
Török Edvin
cca6a1f611
fix warning
...
git-svn: trunk@4994
16 years ago
Török Edvin
00c3dfe516
provide script for package maintainers to split tarball (bb #1515 )
...
disable preloading, it doesn't work properly yet.
git-svn: trunk@4993
16 years ago
Török Edvin
cd0a934f67
Prefer libclamunrar_iface that matches version (bb #1491 ).
...
Add $libdir to ltdl searchpath (bb #1476 ).
git-svn: trunk@4992
16 years ago
Tomasz Kojm
0b4c0baae0
configure: don't define HAVE_ZLIB_H
...
git-svn: trunk@4987
16 years ago
Tomasz Kojm
9669477308
libclamav/others.h, configure: bump f-level and LC_REVISION
...
git-svn: trunk@4983
16 years ago
Tomasz Kojm
2cf6a78796
bump flevel and LC_REVISION (not touching LC_CURRENT because the API changes
...
only affect 0.95rc1)
git-svn: trunk@4960
16 years ago
Török Edvin
871ad50811
LDFLAGS is LDFLAGS, not LIBS. This fixes build with mudflap.
...
git-svn: trunk@4898
16 years ago
Török Edvin
156e643cd1
fix previous commit
...
git-svn: trunk@4888
16 years ago
Török Edvin
e4fb91da32
attempt to fix AC_C_BIGENDIAN action-if-universal, regenerate files.
...
git-svn: trunk@4887
16 years ago
aCaB
5348fa8d28
bb#1443
...
please don't touch the build stuff for a coupel of hours so i can easily revert this commit
git-svn: trunk@4884
16 years ago
Tomasz Kojm
005816e3c8
bump version numbers
...
git-svn: trunk@4864
16 years ago
Török Edvin
8db0a3463d
clamdtop moved to toplevel + manpage.
...
git-svn: trunk@4846
16 years ago
aCaB
15b3dc2367
add --with-system-tommath
...
git-svn: trunk@4843
17 years ago
aCaB
50b1bff4fc
bb#1389
...
git-svn: trunk@4823
17 years ago
Tomasz Kojm
47d40feb7a
libclamav: use LibTomMath by Tom St Denis instead of libgmp for multiple precision integer arithmetic (bb#1366)
...
git-svn: trunk@4650
17 years ago
aCaB
3be4ac3f65
drop useless checks
...
git-svn: trunk@4545
17 years ago
Tomasz Kojm
695e6fd402
sync with 0.94.2
...
git-svn: trunk@4484
17 years ago
aCaB
af23f58e23
enable mempool by default when available
...
git-svn: trunk@4432
17 years ago
aCaB
5ed6026065
liblt sucks
...
git-svn: trunk@4381
17 years ago
aCaB
bb7bd3abfd
final
...
git-svn-id: file:///var/lib/svn/clamav-devel/branches/dlopen@4368 77e5149b-7576-45b1-b177-96237e5ba77b
17 years ago
aCaB
094104a7ac
preliminary dlopen support for libclamunrar - this is mostly libtool stuff
...
git-svn-id: file:///var/lib/svn/clamav-devel/branches/dlopen@4360 77e5149b-7576-45b1-b177-96237e5ba77b
17 years ago
Török Edvin
6a21552ef2
have configure define NDEBUG unless we use --enable-debug, instead of having
...
to #ifndef CL_DEBUG #define NDEBUG #endif in each .c file that uses assert.
If you want assertions enabled you'll need to use --enable-debug to configure,
as until now, no change there.
git-svn: trunk@4343
17 years ago
Tomasz Kojm
5e035bdf9b
update flevel/revision
...
git-svn: trunk@4313
17 years ago
Török Edvin
a35d4b4e80
fix test
...
git-svn: trunk@4308
17 years ago
Török Edvin
e30a2c406b
be nice to non-GNU compilers, and use memcmp/abort instead of __builtin_*
...
git-svn: trunk@4307
17 years ago
Török Edvin
d4c8adb3c0
Try to make a difference between failing to link the bzip2 testcase and the testcase failing (bb #1240 )
...
git-svn: trunk@4306
17 years ago
Török Edvin
c828f71a7a
fix message: it is enough to use a lower optimization level
...
git-svn: trunk@4305
17 years ago
Török Edvin
fd9379f9e5
fix make distcheck on gcc < 4.3 (bb #1259 )
...
git-svn: trunk@4303
17 years ago
Török Edvin
a20faa3fc3
add testcase for gcc bug 37573, affecting gcc 4.1.2 at -O3 too (bb #1258 )
...
git-svn: trunk@4302
17 years ago
aCaB
0281fb4d9c
32 and 64 bit pools
...
git-svn-id: file:///var/lib/svn/clamav-devel/branches/mpool@4301 77e5149b-7576-45b1-b177-96237e5ba77b
17 years ago
Török Edvin
9d444ac69b
use -print-multi-os-directory to set default libdir (bb #1240 )
...
WARNING: On a 64-bit multiarch OS, this will by default install libclamav
into /usr/local/lib64, if your system uses /usr/local/lib for 32bit apps.
If the system uses /usr/local/lib for 64-bit apps and lib32 for 32bit apps,
there is no change (unless you use -m32).
git-svn: trunk@4284
17 years ago
Tomasz Kojm
515350689a
bump flevel and revision
...
git-svn: trunk@4259
17 years ago