From: Gilad Ben-Yossef <[email protected]> First time configure was failing due to missing Doxygen includes from m4/ directory.
Include m4/ directory during bootstrap generation to get autoconf to create a correct configure script. As per Anders Roxell, the dependency on autoconf-archive was meant to resolve this, but it seems this patch is simpler. Signed-off-by: Gilad Ben-Yossef <[email protected]> CC: Barry Spinney <[email protected]> Tested-by: Anders Roxell <[email protected]> --- DEPENDENCIES | 7 +++---- bootstrap | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/DEPENDENCIES b/DEPENDENCIES index 53233ff..b4c04c9 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -8,14 +8,13 @@ Prerequisites for building the OpenDataPlane (ODP) API automake autoconf - autoconf-archive libtool On Debian/Ubuntu systems: - $ sudo apt-get install automake autoconf autoconf-archive libtool + $ sudo apt-get install automake autoconf libtool On CentOS/RedHat/Fedora systems: - $ sudo yum install automake autoconf autoconf-archive libtool libtoolize + $ sudo yum install automake autoconf libtool libtoolize 3. required libraries @@ -75,4 +74,4 @@ Prerequisites for building the OpenDataPlane (ODP) API # Or build 64 bit version of ODP $ ./configure --host=aarch64-linux-gnu \ --with-openssl-path=/home/user/src/install-openssl-aarch64 - $ make \ No newline at end of file + $ make diff --git a/bootstrap b/bootstrap index 12f9388..cd759b0 100755 --- a/bootstrap +++ b/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh set -x -aclocal -I config +aclocal -I config -I m4 libtoolize --copy autoheader automake --add-missing --copy -- 1.7.1 _______________________________________________ lng-odp mailing list [email protected] http://lists.linaro.org/mailman/listinfo/lng-odp
