Hi, list!
I need the last version of OpenBSC, then I got it from git and I try to compile it.
Unfortunately I get this error:
make[2]: Entering directory `/home/lucabert/BSC/openbsc/openbsc' make[2]: *** No rule to make target `libsccp.pc', needed by `all-am'. Stop. make[2]: Leaving directory `/home/lucabert/BSC/openbsc/openbsc' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/lucabert/BSC/openbsc/openbsc' make: *** [all] Error 2
What is this libsccp? I just have a libsccp.pc.in. Maybe is it a new file in the project and it is not in the configure?
Thanks
Am Mon, 2 Aug 2010 13:48:46 +0200 schrieb Luca Bertoncello bertoncello@netzing.de:
Unfortunately I get this error:
make[2]: Entering directory `/home/lucabert/BSC/openbsc/openbsc' make[2]: *** No rule to make target `libsccp.pc', needed by `all-am'. Stop. make[2]: Leaving directory `/home/lucabert/BSC/openbsc/openbsc' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/lucabert/BSC/openbsc/openbsc' make: *** [all] Error 2
OK, I found the problem...
In the configure.in must be added:
libsccp.pc
in the list of AC_OUTPUT. Attached the new configure.in, with that I could compile OpenBSC.
Bye