evil: Evils own libdl lib is also needed for the test programs.

Looks like USE_EVIL_INTERNEL_LIBS does only contains libevil itself.
For the test programs we still need the evil specific libdl for linking.
Lets hope this is the last parallel make fix for evil.
This commit is contained in:
Stefan Schmidt 2013-07-18 11:06:07 +01:00
parent 079bc42bfe
commit 525c4cbece
1 changed files with 2 additions and 2 deletions

View File

@ -152,11 +152,11 @@ bin_evil_evil_suite_SOURCES += bin/evil/memcpy_glibc_arm.S
endif
bin_evil_evil_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl @EVIL_CFLAGS@
bin_evil_evil_suite_LDADD = @USE_EVIL_LIBS@ @DL_LIBS@ -lm
bin_evil_evil_suite_LDADD = @USE_EVIL_LIBS@ @DL_LIBS@ -lm lib/evil/libdl.la
bin_evil_evil_suite_DEPENDENCIES = @USE_EVIL_INTERNAL_LIBS@
bin_evil_test_evil_SOURCES = bin/evil/test_evil.c
bin_evil_test_evil_LDADD = @USE_EVIL_LIBS@ @DL_LIBS@
bin_evil_test_evil_LDADD = @USE_EVIL_LIBS@ @DL_LIBS@ lib/evil/libdl.la
bin_evil_test_evil_DEPENDENCIES = @USE_EVIL_INTERNAL_LIBS@
endif