Changeset f54e503 in rtems


Ignore:
Timestamp:
12/02/14 09:35:13 (9 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
4.11, 5, master
Children:
0104056
Parents:
fa4fe456
git-author:
Sebastian Huber <sebastian.huber@…> (12/02/14 09:35:13)
git-committer:
Sebastian Huber <sebastian.huber@…> (12/03/14 07:27:55)
Message:

libtests: Omit libdl tests if no RTEMS tools

File:
1 edited

Legend:

Unmodified
Added
Removed
  • testsuites/libtests/configure.ac

    rfa4fe456 rf54e503  
    4747  arm | bfin | h8300 | i386 | lm32 | m32r | m68k | mips | \
    4848  moxie | powerpc | sparc | v850)
    49    HAVE_LIBDL=yes ;;
     49   TEST_LIBDL=yes ;;
    5050  *)
    51    HAVE_LIBDL=no ;;
     51   TEST_LIBDL=no ;;
    5252esac
    53 AM_CONDITIONAL(DLTESTS,[test x"$HAVE_LIBDL" = x"yes"])
    54 AC_MSG_RESULT([$HAVE_LIBDL])
     53AC_MSG_RESULT([$TEST_LIBDL])
    5554
    56 AS_IF([test x"$HAVE_LIBDL" = x"yes"],[
     55AS_IF([test x"$TEST_LIBDL" = x"yes"],[
    5756  AC_CHECK_PROG(RTEMS_LD_CHECK,rtems-ld,yes)
    5857  if test x"$RTEMS_LD_CHECK" != x"yes" ; then
    59     AC_MSG_ERROR([Please install rtems-tools.])
     58    TEST_LIBDL=no
    6059  fi
    6160  AC_CHECK_PROG(RTEMS_SYMS_CHECK,rtems-syms,yes)
    6261  if test x"$RTEMS_SYMS_CHECK" != x"yes" ; then
    63     AC_MSG_ERROR([Please install rtems-tools.])
     62    TEST_LIBDL=no
    6463  fi
    6564])
     65
     66AM_CONDITIONAL(DLTESTS,[test x"$TEST_LIBDL" = x"yes"])
    6667
    6768# Explicitly list all Makefiles here
Note: See TracChangeset for help on using the changeset viewer.