diff options
author | Richard PALO <richard@NetBSD.org> | 2014-11-10 17:25:47 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-11-11 19:44:55 +0100 |
commit | ee49e52c66c18b50d2e92105e75e10e69fe04bf8 (patch) | |
tree | 60b0493dc16fe94bf6a0aead5e560ca3634e5f5f /configure.ac | |
parent | 0d3ca29fd21bbd39531c2dd72fca05eeee2f166a (diff) |
READELF needs to be defined for unix such as SOLARIS
Change-Id: I749fa8a19e00957a3f83f41e029687b435a3a903
Signed-off-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 3c61a70af008..0e928f6f7211 100644 --- a/configure.ac +++ b/configure.ac @@ -4421,7 +4421,7 @@ if test "$cross_compiling" = "yes"; then ( unset COM GUIBASE OS CPUNAME unset CC CXX SYSBASE CFLAGS - unset AR NM OBJDUMP PKG_CONFIG RANLIB STRIP + unset AR NM OBJDUMP PKG_CONFIG RANLIB READELF STRIP unset CPPUNIT_CFLAGS CPPUNIT_LIBS unset LIBXML_CFLAGS LIBXML_LIBS LIBXSLT_CFLAGS LIBXSLT_LIBS XSLTPROC test -n "$CC_FOR_BUILD" && export CC="$CC_FOR_BUILD" @@ -4977,6 +4977,7 @@ if test "$_os" != "WINNT" -o "$WITH_MINGW" = "yes"; then AC_CHECK_TOOL(NM,nm) AC_CHECK_TOOL(OBJDUMP,objdump) AC_CHECK_TOOL(RANLIB,ranlib) + AC_CHECK_TOOL(READELF,readelf) AC_CHECK_TOOL(STRIP,strip) if test "$_os" = "WINNT"; then AC_CHECK_TOOL(DLLTOOL,dlltool) @@ -4989,6 +4990,7 @@ AC_SUBST(NM) AC_SUBST(OBJDUMP) AC_SUBST(PKG_CONFIG) AC_SUBST(RANLIB) +AC_SUBST(READELF) AC_SUBST(STRIP) AC_SUBST(WINDRES) |