Commit 63b746af authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Check for -ldl. Now I can compile a few objects on Linux...

parent 74e7ae15
...@@ -74,8 +74,11 @@ if(NOT HAVE_GETADDRINFO) ...@@ -74,8 +74,11 @@ if(NOT HAVE_GETADDRINFO)
endif(NOT HAVE_GETADDRINFO) endif(NOT HAVE_GETADDRINFO)
find_library(HAVE_ICONV iconv) find_library(HAVE_ICONV iconv)
# FIXME: this will break on *BSD:
set( ICONV_CONST " " ) set( ICONV_CONST " " )
check_library_exists(dl dlopen "" HAVE_DL_DLOPEN)
########################################################### ###########################################################
# Other check # Other check
########################################################### ###########################################################
...@@ -152,6 +155,7 @@ command_to_configvar( "whoami" VLC_COMPILE_BY ) ...@@ -152,6 +155,7 @@ command_to_configvar( "whoami" VLC_COMPILE_BY )
command_to_configvar( "hostname" VLC_COMPILE_HOST ) command_to_configvar( "hostname" VLC_COMPILE_HOST )
command_to_configvar( "hostname" VLC_COMPILE_DOMAIN ) command_to_configvar( "hostname" VLC_COMPILE_DOMAIN )
command_to_configvar( "${CMAKE_C_COMPILER} --version" VLC_COMPILER ) command_to_configvar( "${CMAKE_C_COMPILER} --version" VLC_COMPILER )
# FIXME: WTF? this is not the configure line!
command_to_configvar( "${CMAKE_C_COMPILER} --version" CONFIGURE_LINE ) command_to_configvar( "${CMAKE_C_COMPILER} --version" CONFIGURE_LINE )
set( VLC_COMPILER "${CMAKE_C_COMPILER}" ) set( VLC_COMPILER "${CMAKE_C_COMPILER}" )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment