Compile cstdlib with -fPIC

This commit is contained in:
Dominik Schmidt 2012-04-14 14:47:16 +02:00 committed by Klaas Freitag
parent 23d56249ca
commit 8d5af96f46

View file

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