Due to some * reason pkg_config couldn't be installed.
So I changed the
configure.ac
AC_ARG_WITH([protobuf-include-path],
[AS_HELP_STRING([--with-protobuf-include-path],
[location of the Protobuf headers, defaults to /opt/tools/dev/
include/google])],
[PROTOBUF_CFLAGS="-I$withval"],
[PROTOBUF_CFLAGS='-I/opt/tools/dev/include/google'])
AC_SUBST([PROTOBUF_CFLAGS])
AC_ARG_WITH([protobuf-lib-path],
[AS_HELP_STRING([--with-protobuf-lib-path], [location of the
Protobuf libraries])],
[PROTOBUF_LIBS="-L$withval -lprotobuf"],
[PROTOBUF_LIBS='-lprotobuf'])
AC_SUBST([PROTOBUF_LIBS])
AM_CONDITIONAL([HAVE_PROTOBUF], [test "x${PROTOBUF_CFLAGS}" != x])
and removed the -Werror flag from the Makefile. (as make was not
going ahead)
Doing that Mordor was build and installed and following libs were
created.
ibmordortest.so.0.0.0
libmordortest.so.0 -> libmordortest.so.0.0.0
libmordortest.so -> libmordortest.so.0.0.0
libmordortest.la
libmordor.so.1.0.0
libmordor.so.1 -> libmordor.so.1.0.0
libmordor.so -> libmordor.so.1.0.0
libmordor.la
libmordoryaml.so.0.0.0
libmordoryaml.so.0 -> libmordoryaml.so.0.0.0
libmordoryaml.so -> libmordoryaml.so.0.0.0
libmordoryaml.la
libmordorprotobuf.so.0.0.0
libmordorprotobuf.so.0 -> libmordorprotobuf.so.0.0.0
libmordorprotobuf.so -> libmordorprotobuf.so.0.0.0
libmordorprotobuf.la
what is your opinion on this ?
thank you
Sanjeev.