clamav - dazuko install problem
I need a little help installing dazuko. debian sarge. kernel 2.6.8
I unpacked dazuko in my home directory. then
# ./configure
# make
here is output:
make -C /lib/modules/2.6.8/build SUBDIRS=/home/stephen/prog/clamav/dazuko-2.0.4 modules
make[1]: Entering directory `/usr/src/kernel-source-2.6.8'
CC [M] /home/stephen/prog/clamav/dazuko-2.0.4/dazuko_xp.o
CC [M] /home/stephen/prog/clamav/dazuko-2.0.4/dazuko_linux26_lsm.o
CC [M] /home/stephen/prog/clamav/dazuko-2.0.4/dazuko_linux26.o
LD [M] /home/stephen/prog/clamav/dazuko-2.0.4/dazuko.o
Building modules, stage 2.
MODPOST
*** Warning: "mod_reg_security" [/home/stephen/prog/clamav/dazuko-2.0.4/dazuko.k o] undefined!
*** Warning: "unregister_security" [/home/stephen/prog/clamav/dazuko-2.0.4/dazuk o.ko] undefined!
*** Warning: "mod_unreg_security" [/home/stephen/prog/clamav/dazuko-2.0.4/dazuko .ko] undefined!
*** Warning: "register_security" [/home/stephen/prog/clamav/dazuko-2.0.4/dazuko. ko] undefined!
CC /home/stephen/prog/clamav/dazuko-2.0.4/dazuko.mod.o
LD [M] /home/stephen/prog/clamav/dazuko-2.0.4/dazuko.ko
make[1]: Leaving directory `/usr/src/kernel-source-2.6.8'
touch dummy_rule.o
What are those warnings???
Then I:
# cd example_c
# make
cd ../library && make
make[1]: Entering directory `/home/stephen/prog/clamav/dazuko-2.0.4/library'
cc -Wall -O -I.. -c ../dazukoio.c -o dazukoio.o
cc -Wall -O -I.. -c ../dazukoio_compat12.c -o dazukoio_compat12.o
ar r libdazuko.a dazukoio.o dazukoio_compat12.o
ar: creating libdazuko.a
ranlib libdazuko.a
make[1]: Leaving directory `/home/stephen/prog/clamav/dazuko-2.0.4/library'
cc -I.. -L../library -o example example.c -ldazuko
cc -I.. -L../library -pthread -o example_mt example_mt.c -ldazuko
that seemed to work
Then insert the module
# cd ..
# /sbin/insmod ./dazuko.k o
output:
insmod: error inserting './dazuko.ko': -1 Unknown symbol in module
What is this?? I alsa had this kind of problem when trying to insert other modules using modprobe. Is it not recognizing the character set in the mod?? or something else??
|