Fix library searching

This commit is contained in:
Přemysl Eric Janouch 2015-08-06 21:56:21 +02:00
parent 268a359cf4
commit 396cc0f5f5
1 changed files with 4 additions and 3 deletions

View File

@ -58,11 +58,12 @@ link_directories (${libssl_LIBRARY_DIRS} ${jansson_LIBRARY_DIRS})
# -lpthread is only there for debugging (gdb & errno)
# -lrt is only for glibc < 2.17
# -liconv may or may not be a part of libc
foreach (extra iconv dl rt pthread)
find_library (extra_lib ${extra})
if (extra_lib)
find_library (extra_lib_${extra} ${extra})
if (extra_lib_${extra})
list (APPEND project_libraries ${extra})
endif (extra_lib)
endif (extra_lib_${extra})
endforeach (extra)
# Project source files