Compile cstdlib with -fPIC.

This commit is contained in:
Dominik Schmidt 2012-04-14 14:47:16 +02:00 committed by Klaas Freitag
parent 19f460a9ea
commit 4c6a1356a1

View file

@ -34,6 +34,9 @@ include_directories(
)
add_library(${CSTDLIB_LIBRARY} STATIC ${cstdlib_SRCS})
if(NOT WIN32)
add_definitions( -fPIC )
endif()
if(NOT HAVE_FNMATCH AND WIN32)
# needed for PathMatchSpec for our fnmatch replacement
target_link_libraries(${CSTDLIB_LIBRARY} ${SHLWAPI_LIBRARY})