PDA

View Full Version : Problem with compling inn!


yyahmee
09-05-2006, 08:01 AM
Hi,
I have done the following commands on my VPN.

[root@news-srv2 inn-2.4.3]# yum -y install bison
[root@news-srv2 inn-2.4.3]# ./configure --with-perl --enable-pgp-verify --with-openssl --with-kerberos
[root@news-srv2 inn-2.4.3]# make
cd include && make all
make[1]: Entering directory `/root/downloads/inn-2.4.3/include'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/root/downloads/inn-2.4.3/include'
cd lib && make all
make[1]: Entering directory `/root/downloads/inn-2.4.3/lib'
Expect 6 shift/reduce conflicts
yacc parsedate.y
make[1]: yacc: Command not found
make[1]: *** [parsedate.c] Error 127
make[1]: Leaving directory `/root/downloads/inn-2.4.3/lib'
make: *** [all-lib] Error 2
[root@news-srv2 inn-2.4.3]#

What should I do?
yyahmee

Rick
09-05-2006, 08:42 AM
Hi, try this:

yum -y install byacc

heres my system:

[root@www ~]# which yacc
/usr/bin/which: no yacc in (/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin)
[root@www ~]# yum -y install byacc
Setting up Install Process
Setting up repositories
Reading repository metadata in from local files
Excluding Packages in global exclude list
Finished
Parsing package install arguments
Resolving Dependencies
--> Populating transaction set with selected packages. Please wait.
---> Downloading header for byacc to pack into transaction set.
byacc-1.9-28.i386.rpm 100% |=========================| 3.7 kB 00:00
---> Package byacc.i386 0:1.9-28 set to be updated
--> Running transaction check

Dependencies Resolved

================================================== ===========================
Package Arch Version Repository Size
================================================== ===========================
Installing:
byacc i386 1.9-28 base 33 k

Transaction Summary
================================================== ===========================
Install 1 Package(s)
Update 0 Package(s)
Remove 0 Package(s)
Total download size: 33 k
Downloading Packages:
(1/1): byacc-1.9-28.i386. 100% |=========================| 33 kB 00:00
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
Installing: byacc ######################### [1/1]

Installed: byacc.i386 0:1.9-28
Complete!
[root@www ~]# which yacc
/usr/bin/yacc
[root@www ~]#

yyahmee
09-07-2006, 06:33 AM
thanks!
this did work!