Hi again rnewman,
I'm still struggling with compiling iouyap, need your help again if possible.
I've compiled iniparser, moved the lib, moved the .h file into iouyap and modified the config.c and iouyap.c to use "iniparser.h". I've also installed bison and flex but when I try to compile I get an error "cannot find liniparser".
Code:
[email protected]:~/iouyap$ sudo make
gcc -g -DDEBUG -Wall -c -o iouyap.o iouyap.c
bison -y -d netmap_parse.y
mv -f y.tab.c netmap_parse.c
gcc -g -DDEBUG -Wall -c -o netmap_parse.o netmap_parse.c
flex -t netmap_scan.l > netmap_scan.c
gcc -g -DDEBUG -Wall -c -o netmap_scan.o netmap_scan.c
gcc -g -DDEBUG -Wall -c -o netmap.o netmap.c
gcc -g -DDEBUG -Wall -c -o config.o config.c
gcc iouyap.o netmap_parse.o netmap_scan.o netmap.o config.o -liniparser -lpthread -o iouyap
/usr/bin/ld: cannot find -liniparser
collect2: error: ld returned 1 exit status
make: *** [iouyap] Error 1
rm netmap_scan.c netmap_parse.c
How did you overcome this? Is there something else I need to install?
I found a thread that said to iouyap you need the following to compile "gcc, flex, bison, libiniparser-devel, glibc-devel" but libiniparser.devel and glibc-devel are not available when I search for them.
I'm so close! Can you help again please?