HylaFAX The world's
most advanced open source fax server
|
|
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
Configure Errors
Hi!
Because my probemodem fails to get the workable speed from Zyxel 1496e,
I tried to recompile everything.
The OS=Linux 2.0.35 upgraded from Slackware 3.5, Hylafax=4.0pl2,
gcc=2.8.1.
Because some programs, like faxq, are not generated, I went back and
check config.log. Applying gcc-2.8.x.patch can not remove these error,
either. I would appreciate if anyone can help:
Regards,
----------------------------------
.....
++ /usr/bin/gcc -o dummy dummy.C
++ make -f confMakefile t
/usr/bin/gcc -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ make -f confMakefile t
/usr/bin/gcc -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
++ cat t.c
int t() { iopen(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
ld: cannot open -limage: No such file or directory
make: *** [t] Error 1
++ cat t.c
int t() { mallopt(); return 0; }
int main(){ t(); return 0; }
++ make -f confMakefile t
/usr/bin/gcc -D__ANSI_CPP__ -I. -I. -I. -I././util
-I/usr/local/include -
ld: cannot open -lmalloc: No such file or directory
make: *** [t] Error 1
++ cat t.c
.....