From: Rafaël Carré Date: Sun, 1 Jun 2008 20:30:26 +0000 (+0200) Subject: Cmake: enable a bunch of modules - still a lot TODO X-Git-Tag: 0.9.0-test0~436 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=72da704cd7eddd002c5de789bec9b528aa838656;p=vlc Cmake: enable a bunch of modules - still a lot TODO --- diff --git a/extras/buildsystem/cmake/include/config.cmake b/extras/buildsystem/cmake/include/config.cmake index 2d853f6e2a..ff2ec0ef2a 100644 --- a/extras/buildsystem/cmake/include/config.cmake +++ b/extras/buildsystem/cmake/include/config.cmake @@ -384,7 +384,7 @@ set( VLC_COMPILER "${CMAKE_C_COMPILER}" ) # Modules: Following are all listed in options ########################################################### -# This module will be enabled but user could disabled it +# This modules are enabled by default but can still be disabled manually vlc_enable_modules(dummy logger memcpy) vlc_enable_modules(mpgv mpga m4v m4a h264 vc1 demux_cdg cdg ps pva avi mp4 rawdv rawvid nsv real aiff mjpeg demuxdump flacsys tta) vlc_enable_modules(cvdsub svcdsub spudec subsdec subsusf t140 dvbsub cc mpeg_audio lpcm a52 dts cinepak flac) @@ -401,8 +401,9 @@ vlc_enable_modules(access_filter_bandwidth) vlc_enable_modules(packetizer_mpegvideo packetizer_h264) vlc_enable_modules(packetizer_mpeg4video packetizer_mpeg4audio) vlc_enable_modules(packetizer_vc1) -vlc_enable_modules(spatializer) +vlc_enable_modules(spatializer atmo blendbench croppadd) vlc_enable_modules(asf) +vlc_enable_modules(vmem visual growl_udp) set(enabled ${ENABLE_STREAM_OUT}) vlc_register_modules(${enabled} access_output_dummy access_output_udp access_output_file access_output_http) @@ -430,7 +431,7 @@ vlc_register_modules(${enabled} converter_float a52tospdif dtstospdif audio_form set(enabled) if(NOT WIN32) - vlc_enable_modules(screensaver) + vlc_enable_modules(screensaver signals dynamicoverlay) #motion endif(NOT WIN32) # This module is disabled because the CMakeList.txt which @@ -596,6 +597,11 @@ if(X11_FOUND) vlc_module_add_link_libraries(panoramix ${X11_LIBRARIES}) endif(X11_FOUND) +vlc_check_include_files (linux/fb.h) +if(HAVE_LINUX_FB_H) + vlc_enable_modules(fb) +endif(HAVE_LINUX_FB_H) + find_package(Mpeg2) if(Mpeg2_FOUND) vlc_enable_modules(libmpeg2)