]> git.sesse.net Git - vlc/blob - extras/buildsystem/cmake/include/config.cmake
cmake: FindCurses.
[vlc] / extras / buildsystem / cmake / include / config.cmake
1 include( CheckIncludeFile )
2 include (CheckTypeSize)
3 include (CheckCSourceCompiles)
4 include (CheckSymbolExists)
5 include (CheckLibraryExists)
6
7 include( ${CMAKE_SOURCE_DIR}/cmake/vlc_check_include_files.cmake )
8 include( ${CMAKE_SOURCE_DIR}/cmake/vlc_check_functions_exist.cmake )
9 include( ${CMAKE_SOURCE_DIR}/cmake/vlc_add_compile_flag.cmake )
10 include( ${CMAKE_SOURCE_DIR}/cmake/vlc_check_type.cmake )
11 include( ${CMAKE_SOURCE_DIR}/cmake/pkg_check_modules.cmake )
12
13 ###########################################################
14 # VERSION
15 ###########################################################
16
17 set(VLC_VERSION_MAJOR 0)
18 set(VLC_VERSION_MINOR 9)
19 set(VLC_VERSION_PATCH 0)
20 set(VLC_VERSION_EXTRA "-svn")
21 set(VLC_VERSION ${VLC_VERSION_MAJOR}.${VLC_VERSION_MINOR}.${VLC_VERSION_PATCH}${VLC_VERSION_EXTRA})
22
23 set(PACKAGE "vlc")
24 set(PACKAGE_VERSION "${VLC_VERSION}")
25 set(PACKAGE_STRING "vlc")
26 set(VERSION_MESSAGE "vlc-${VLC_VERSION}")
27 set(COPYRIGHT_MESSAGE "Copyright © the VideoLAN team")
28 set(COPYRIGHT_YEARS "2001-2008")
29
30 ###########################################################
31 # Options
32 ###########################################################
33
34 OPTION( ENABLE_HTTPD           "Enable httpd server" ON )
35 OPTION( ENABLE_VLM             "Enable vlm" ON )
36 OPTION( ENABLE_DYNAMIC_PLUGINS "Enable dynamic plugin" ON )
37 OPTION( UPDATE_CHECK           "Enable automatic new version checking" OFF )
38 OPTION( ENABLE_NO_SYMBOL_CHECK "Don't check symbols of modules against libvlc. (Enabling this option speeds up compilation)" OFF )
39
40 IF (NOT CMAKE_BUILD_TYPE)
41     set(CMAKE_BUILD_TYPE "Debug" CACHE STRING  "build type determining compiler flags" FORCE )
42 endif(NOT CMAKE_BUILD_TYPE )
43
44 if(CMAKE_BUILD_TYPE STREQUAL "Debug")
45     set(DEBUG ON)
46     add_definitions(-DDEBUG=1)
47     set(NDEBUG OFF)
48 endif(CMAKE_BUILD_TYPE STREQUAL "Debug")
49
50 set( HAVE_DYNAMIC_PLUGINS ${ENABLE_DYNAMIC_PLUGINS})
51 set( LIBEXT ${CMAKE_SHARED_MODULE_SUFFIX})
52
53 ###########################################################
54 # Headers checks
55 ###########################################################
56
57 vlc_check_include_files (malloc.h stdbool.h locale.h)
58 vlc_check_include_files (stddef.h stdlib.h sys/stat.h)
59 vlc_check_include_files (stdio.h stdint.h inttypes.h)
60 vlc_check_include_files (signal.h unistd.h dirent.h)
61 vlc_check_include_files (netinet/in.h netinet/udplite.h)
62 vlc_check_include_files (arpa/inet.h net/if.h)
63 vlc_check_include_files (netdb.h fcntl.h sys/time.h poll.h)
64 vlc_check_include_files (errno.h time.h alloca.h)
65 vlc_check_include_files (limits.h)
66
67 vlc_check_include_files (string.h strings.h getopt.h)
68
69 vlc_check_include_files (dlfcn.h dl.h)
70
71 vlc_check_include_files (kernel/OS.h)
72 vlc_check_include_files (memory.h)
73 vlc_check_include_files (mach-o/dyld.h)
74
75 vlc_check_include_files (pthread.h)
76
77 find_package (Threads)
78
79 ###########################################################
80 # Functions/structures checks
81 ###########################################################
82 set(CMAKE_REQUIRED_LIBRARIES c)
83 set(CMAKE_EXTRA_INCLUDE_FILES string.h)
84 vlc_check_functions_exist(strcpy strcasecmp)
85 vlc_check_functions_exist(strcasestr strdup)
86 vlc_check_functions_exist(strndup stricmp strnicmp)
87 vlc_check_functions_exist(atof strtoll atoll lldiv)
88 vlc_check_functions_exist(strlcpy stristr strnlen strsep)
89 vlc_check_functions_exist(strtod strtof strtol stroul)
90 vlc_check_functions_exist(stroull)
91 set(CMAKE_EXTRA_INCLUDE_FILES)
92
93 set(CMAKE_EXTRA_INCLUDE_FILES stdio.h)
94 vlc_check_functions_exist(vasprintf)
95 set(CMAKE_EXTRA_INCLUDE_FILES)
96
97 set(CMAKE_EXTRA_INCLUDE_FILES libc.h)
98 vlc_check_functions_exist(fork)
99 set(CMAKE_EXTRA_INCLUDE_FILES)
100
101 set(CMAKE_EXTRA_INCLUDE_FILES stdlib.h)
102 vlc_check_functions_exist(putenv getenv setenv)
103 vlc_check_functions_exist(putenv getenv setenv)
104 set(CMAKE_EXTRA_INCLUDE_FILES)
105
106 set(CMAKE_EXTRA_INCLUDE_FILES stdio.h)
107 vlc_check_functions_exist(snprintf asprintf)
108 vlc_check_functions_exist(putenv getenv setenv)
109 set(CMAKE_EXTRA_INCLUDE_FILES)
110
111 set(CMAKE_EXTRA_INCLUDE_FILES unistd.h)
112 vlc_check_functions_exist(isatty getcwd getuid)
113 set(CMAKE_EXTRA_INCLUDE_FILES)
114
115 set(CMAKE_EXTRA_INCLUDE_FILES sys/stat.h)
116 vlc_check_functions_exist(lstat fstat stat)
117 set(CMAKE_EXTRA_INCLUDE_FILES)
118
119 set(CMAKE_EXTRA_INCLUDE_FILES arpa/inet.h)
120 vlc_check_functions_exist(inet_aton inet_ntop inet_pton)
121 set(CMAKE_EXTRA_INCLUDE_FILES)
122
123 set(CMAKE_REQUIRED_LIBRARIES)
124
125 check_library_exists(poll poll "" HAVE_POLL)
126
127 check_c_source_compiles(
128 "#include <langinfo.h>
129 int main() { char* cs = nl_langinfo(CODESET); }"
130 HAVE_LANGINFO_CODESET)
131
132 vlc_check_type("struct addrinfo" "sys/socket.h;netdb.h")
133 if(HAVE_STRUCT_ADDRINFO)
134   set(HAVE_ADDRINFO ON)
135 endif(HAVE_STRUCT_ADDRINFO)
136 vlc_check_type("struct timespec" "time.h")
137
138 check_c_source_compiles (
139 "#include <stdint.h> \n #ifdef UINTMAX \n #error no uintmax
140  #endif
141  int main() { return 0;}" HAVE_STDINT_H_WITH_UINTMAX)
142
143 check_symbol_exists(ntohl "sys/param.h"  NTOHL_IN_SYS_PARAM_H)
144 check_symbol_exists(scandir "dirent.h"   HAVE_SCANDIR)
145 check_symbol_exists(localtime_r "time.h" HAVE_LOCALTIME_R)
146 check_symbol_exists(alloca "alloca.h"    HAVE_ALLOCA)
147
148 check_symbol_exists(va_copy "stdarg.h"   HAVE_VACOPY)
149 check_symbol_exists(__va_copy "stdarg.h" HAVE___VA_COPY)
150
151
152 check_symbol_exists(getnameinfo "sys/types.h;sys/socket.h;netdb.h" HAVE_GETNAMEINFO)
153 check_symbol_exists(getaddrinfo "sys/types.h;sys/socket.h;netdb.h" HAVE_GETADDRINFO)
154 if(NOT HAVE_GETADDRINFO)
155     check_library_exists(getaddrinfo nsl "" HAVE_GETADDRINFO)
156 endif(NOT HAVE_GETADDRINFO)
157
158 vlc_check_functions_exist(iconv)
159 if(NOT HAVE_ICONV)
160     set(LIBICONV "iconv")
161     check_library_exists(iconv iconv "" HAVE_ICONV)
162 endif(NOT HAVE_ICONV)
163 set(CMAKE_REQUIRED_LIBRARIES ${LIBICONV})
164 CHECK_C_SOURCE_COMPILES(" #include <iconv.h>
165  int main() { return iconv(0, (char **)0, 0, (char**)0, 0); }" ICONV_NO_CONST)
166 if( ICONV_NO_CONST )
167   set( ICONV_CONST "const" )
168 else( ICONV_NO_CONST )
169   set( ICONV_CONST " ")
170 endif( ICONV_NO_CONST )
171 set(CMAKE_REQUIRED_LIBRARIES)
172
173 check_library_exists(rt clock_nanosleep "" HAVE_CLOCK_NANOSLEEP)
174 if (HAVE_CLOCK_NANOSLEEP)
175     set(LIBRT "rt")
176 endif (HAVE_CLOCK_NANOSLEEP)
177
178 check_library_exists(m pow "" HAVE_LIBM)
179 if (HAVE_LIBM)
180     set (LIBM "m")
181 endif (HAVE_LIBM)
182
183 check_symbol_exists(connect "sys/types.h;sys/socket.h" HAVE_CONNECT)
184 if(NOT HAVE_CONNECT)
185     check_library_exists(connect socket "" HAVE_CONNECT)
186     if(NOT HAVE_CONNECT)
187         vlc_module_add_link_libraries(libvlc connect)
188         vlc_module_add_link_libraries(cdda   connect)
189         vlc_module_add_link_libraries(cddax  connect)
190     endif(NOT HAVE_CONNECT)
191 endif(NOT HAVE_CONNECT)
192
193 ###########################################################
194 # Other check
195 ###########################################################
196 include( ${CMAKE_SOURCE_DIR}/cmake/vlc_test_inline.cmake )
197
198 ###########################################################
199 # Platform check
200 ###########################################################
201 if(APPLE)
202     include( ${CMAKE_SOURCE_DIR}/cmake/vlc_find_frameworks.cmake )
203
204     if(ENABLE_NO_SYMBOL_CHECK)
205         set(DYNAMIC_LOOKUP "-undefined dynamic_lookup")
206     else(ENABLE_NO_SYMBOL_CHECK)
207         set(DYNAMIC_LOOKUP)
208     endif(ENABLE_NO_SYMBOL_CHECK)
209     set(CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS
210      "${CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS} ${DYNAMIC_LOOKUP}")
211     set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS
212      "${CMAKE_SHARED_MODULE_CREATE_C_FLAGS} ${DYNAMIC_LOOKUP}")
213
214     # For pre-10.5
215     set( CMAKE_SHARED_LIBRARY_C_FLAGS "${CMAKE_C_FLAGS} -fno-common")
216
217     set(SYS_DARWIN 1)
218     add_definitions(-std=gnu99) # Hack for obj-c files to be compiled with gnu99
219     vlc_enable_modules(macosx minimal_macosx access_eyetv quartztext auhal)
220
221     # On Pre-10.5
222     vlc_module_add_link_flags (ffmpeg "-read_only_relocs warning")
223
224     vlc_check_include_files (ApplicationServices/ApplicationServices.h)
225     vlc_check_include_files (Carbon/Carbon.h)
226     vlc_check_include_files (CoreAudio/CoreAudio.h)
227
228    # check_symbol_exists (CFLocaleCopyCurrent "CoreFoundation/CoreFoundation.h" "" HAVE_CFLOCALECOPYCURRENT)
229    # check_symbol_exists (CFPreferencesCopyAppValue "CoreFoundation/CoreFoundation.h" "" HAVE_CFPREFERENCESCOPYAPPVALUE)
230
231     vlc_find_frameworks(Cocoa Carbon OpenGL AGL IOKit Quicktime
232                         WebKit QuartzCore Foundation ApplicationServices
233                         CoreAudio AudioUnit AudioToolbox)
234     vlc_module_add_link_libraries(macosx
235         ${Cocoa_FRAMEWORKS}
236         ${IOKit_FRAMEWORKS}
237         ${OpenGL_FRAMEWORKS}
238         ${AGL_FRAMEWORKS}
239         ${Quicktime_FRAMEWORKS}
240         ${WebKit_FRAMEWORKS})
241     vlc_module_add_link_libraries(minimal_macosx
242         ${Cocoa_FRAMEWORKS}
243         ${Carbon_FRAMEWORKS}
244         ${OpenGL_FRAMEWORKS}
245         ${AGL_FRAMEWORKS})
246     vlc_module_add_link_libraries(access_eyetv
247         ${Foundation_FRAMEWORKS})
248     vlc_module_add_link_libraries(opengllayer
249          ${Cocoa_FRAMEWORKS}
250          ${QuartzCore_FRAMEWORKS}
251          ${OpenGL_FRAMEWORKS} )
252     vlc_module_add_link_libraries(quartztext
253          ${Carbon_FRAMEWORKS}
254          ${ApplicationServices_FRAMEWORKS} )
255     vlc_module_add_link_libraries(auhal
256          ${Carbon_FRAMEWORKS}
257          ${CoreAudio_FRAMEWORKS}
258          ${AudioUnit_FRAMEWORKS}
259          ${AudioToolbox_FRAMEWORKS} )
260     vlc_module_add_link_libraries(mp4 ${IOKit_FRAMEWORKS} )
261     vlc_module_add_link_libraries(mkv ${IOKit_FRAMEWORKS} )
262
263     add_executable(VLC MACOSX_BUNDLE src/vlc.c)
264     target_link_libraries(VLC libvlc)
265     set( MacOS ${CMAKE_CURRENT_BINARY_DIR}/VLC.app/Contents/MacOS )
266     add_custom_command(
267         TARGET VLC
268         POST_BUILD
269         COMMAND rm -Rf ${CMAKE_CURRENT_BINARY_DIR}/tmp
270         COMMAND mkdir -p ${CMAKE_CURRENT_BINARY_DIR}/tmp/modules/gui/macosx
271         COMMAND mkdir -p ${CMAKE_CURRENT_BINARY_DIR}/tmp/extras/package/macosx
272         COMMAND for i in vlc.xcodeproj Resources README.MacOSX.rtf\; do cp -R ${CMAKE_CURRENT_SOURCE_DIR}/extras/package/macosx/$$i ${CMAKE_CURRENT_BINARY_DIR}/tmp/extras/package/macosx\; done
273         COMMAND for i in AUTHORS COPYING THANKS\;do cp ${CMAKE_CURRENT_SOURCE_DIR}/$$i ${CMAKE_CURRENT_BINARY_DIR}/tmp\; done
274         COMMAND for i in AppleRemote.h AppleRemote.m about.h about.m applescript.h applescript.m controls.h controls.m equalizer.h equalizer.m intf.h intf.m macosx.m misc.h misc.m open.h open.m output.h output.m playlist.h playlist.m playlistinfo.h playlistinfo.m prefs_widgets.h prefs_widgets.m prefs.h prefs.m vout.h voutqt.m voutgl.m wizard.h wizard.m extended.h extended.m bookmarks.h bookmarks.m sfilters.h sfilters.m update.h update.m interaction.h interaction.m embeddedwindow.h embeddedwindow.m fspanel.h fspanel.m vout.m\; do cp ${CMAKE_CURRENT_SOURCE_DIR}/modules/gui/macosx/$$i ${CMAKE_CURRENT_BINARY_DIR}/tmp/modules/gui/macosx\; done
275         COMMAND cd ${CMAKE_CURRENT_BINARY_DIR}/tmp/extras/package/macosx && xcodebuild -target vlc | grep -vE '^\([ \\t]|$$\)' && cd ../../../../ && cp ${CMAKE_CURRENT_BINARY_DIR}/tmp/extras/package/macosx/build/Default/VLC.bundle/Contents/Info.plist ${CMAKE_CURRENT_BINARY_DIR}/VLC.app/Contents && cp -R ${CMAKE_CURRENT_BINARY_DIR}/tmp/extras/package/macosx/build/Default/VLC.bundle/Contents/Resources/English.lproj ${CMAKE_CURRENT_BINARY_DIR}/VLC.app/Contents/Resources
276         COMMAND cp -r ${CMAKE_CURRENT_SOURCE_DIR}/extras/package/macosx/Resources ${CMAKE_CURRENT_BINARY_DIR}/VLC.app/Contents
277         COMMAND find -d ${CMAKE_CURRENT_BINARY_DIR}/VLC.app/Contents/Resources -type d -name \\.svn -exec rm -rf {} "\;"
278         COMMAND rm -rf ${MacOS}/modules ${MacOS}/locale ${MacOS}/share
279         COMMAND ln -s ${CMAKE_CURRENT_SOURCE_DIR}/share ${MacOS}/share
280         COMMAND ln -s ${CMAKE_CURRENT_BINARY_DIR}/modules ${MacOS}/modules
281         COMMAND find ${CMAKE_BINARY_DIR}/po -name *.gmo -exec sh -c \"mkdir -p ${MacOS}/locale/\\`basename {}|sed s/\\.gmo//\\`/LC_MESSAGES\; ln -s {} ${MacOS}/locale/\\`basename {}|sed s/\\.gmo//\\`/LC_MESSAGES/vlc.mo\" "\;"
282         COMMAND ln -sf VLC ${MacOS}/clivlc #useless?
283         COMMAND printf "APPLVLC#" > ${CMAKE_CURRENT_BINARY_DIR}/VLC.app/Contents/PkgInfo
284     )
285     set( MacOS )
286
287 endif(APPLE)
288
289 ###########################################################
290 # info
291 ###########################################################
292
293 macro(command_to_configvar command var)
294  execute_process(
295   COMMAND sh -c "${command}"
296   OUTPUT_VARIABLE ${var}
297   OUTPUT_STRIP_TRAILING_WHITESPACE)
298  string( REPLACE "\n" "\\n" ${var} "${${var}}")
299 endmacro(command_to_configvar)
300
301 command_to_configvar( "whoami" VLC_COMPILE_BY )
302 command_to_configvar( "hostname" VLC_COMPILE_HOST )
303 command_to_configvar( "hostname" VLC_COMPILE_DOMAIN )
304 command_to_configvar( "${CMAKE_C_COMPILER} --version" VLC_COMPILER )
305 # FIXME: WTF? this is not the configure line!
306 command_to_configvar( "${CMAKE_C_COMPILER} --version" CONFIGURE_LINE )
307 set( VLC_COMPILER "${CMAKE_C_COMPILER}" )
308
309
310 ###########################################################
311 # Modules: Following are all listed in options
312 ###########################################################
313
314 # This module will be enabled but user could disabled it
315 vlc_enable_modules(dummy logger memcpy)
316 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)
317 vlc_enable_modules(cvdsub svcdsub spudec subsdec subsusf t140 dvbsub cc mpeg_audio lpcm a52 dts cinepak flac)
318 vlc_enable_modules(deinterlace invert adjust transform wave ripple psychedelic gradient motionblur rv32 rotate noise grain extract sharpen seamcarving)
319 vlc_enable_modules(converter_fixed mono)
320 vlc_enable_modules(trivial_resampler ugly_resampler)
321 vlc_enable_modules(trivial_channel_mixer trivial_mixer)
322 vlc_enable_modules(playlist export nsc xtag)
323 vlc_enable_modules(i420_rgb grey_yuv rawvideo blend scale image logo magnify puzzle colorthres)
324 vlc_enable_modules(wav araw subtitle vobsub adpcm a52sys dtssys au ty voc xa nuv smf)
325 vlc_enable_modules(access_directory access_file access_udp access_tcp)
326 vlc_enable_modules(access_http access_mms access_ftp)
327 vlc_enable_modules(access_filter_bandwidth)
328 vlc_enable_modules(packetizer_mpegvideo packetizer_h264)
329 vlc_enable_modules(packetizer_mpeg4video packetizer_mpeg4audio)
330 vlc_enable_modules(packetizer_vc1)
331 vlc_enable_modules(spatializer)
332
333 if(NOT mingwce)
334    set(enabled ON)
335 endif(NOT mingwce)
336 vlc_register_modules(${enabled} access_fake access_filter_timeshift access_filter_record access_filter_dump)
337 vlc_register_modules(${enabled} gestures rc telnet hotkeys showintf marq podcast shout sap fake folder)
338 vlc_register_modules(${enabled} rss mosaic wall motiondetect clone crop erase bluescreen alphamask gaussianblur)
339 vlc_register_modules(${enabled} i420_yuy2 i422_yuy2 i420_ymga i422_i420 yuy2_i422 yuy2_i420 chroma_chain)
340 vlc_register_modules(${enabled} aout_file linear_resampler bandlimited_resampler)
341 vlc_register_modules(${enabled} float32_mixer spdif_mixer simple_channel_mixer)
342 vlc_register_modules(${enabled} dolby_surround_decoder headphone_channel_mixer normvol equalizer param_eq)
343 vlc_register_modules(${enabled} converter_float a52tospdif dtstospdif audio_format)
344 set(enabled)
345
346 if(NOT WIN32)
347    vlc_enable_modules(screensaver)
348 endif(NOT WIN32)
349
350 # Following modules will be disabled but listed in options
351
352 vlc_disable_modules(asf)
353
354 # This module is disabled because the CMakeList.txt which
355 # is generated isn't correct. We'll put that back
356 # when cmake will be accepted as default build system
357 vlc_disable_modules(motion)
358
359 ###########################################################
360 # libraries
361 ###########################################################
362 OPTION( ENABLE_CONTRIB "Attempt to use VLC contrib system to get the third-party libraries" ON )
363 if(ENABLE_CONTRIB)
364   set( CONTRIB_INCLUDE ${CMAKE_SOURCE_DIR}/extras/contrib/include)
365   set( CONTRIB_LIB ${CMAKE_SOURCE_DIR}/extras/contrib/lib)
366   set( CONTRIB_PROGRAM ${CMAKE_SOURCE_DIR}/extras/contrib/bin)
367   set( CMAKE_LIBRARY_PATH ${CONTRIB_LIB} ${CMAKE_LIBRARY_PATH} )
368   set( CMAKE_PROGRAM_PATH ${CONTRIB_PROGRAM} ${CMAKE_PROGRAM_PATH} )
369   set( CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} -L${CONTRIB_LIB}" )
370   set( CMAKE_CXX_LINK_FLAGS "${CMAKE_CXX_LINK_FLAGS} -L${CONTRIB_LIB}" )
371   set( CMAKE_SHARED_MODULE_CREATE_C_FLAGS "${CMAKE_SHARED_MODULE_CREATE_C_FLAGS} -L${CONTRIB_LIB}" )
372   set( CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS "${CMAKE_SHARED_MODULE_CREATE_CXX_FLAGS} -L${CONTRIB_LIB}" )
373   set( CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "${CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS} -L${CONTRIB_LIB}" )
374   set( CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS "${CMAKE_SHARED_LIBRARY_CREATE_CXX_FLAGS} -L${CONTRIB_LIB}" )
375   add_definitions(-I${CONTRIB_INCLUDE})
376 endif(ENABLE_CONTRIB)
377
378 set(CMAKE_REQUIRED_INCLUDES ${CONTRIB_INCLUDE})
379
380 #fixme: use find_package(cddb 0.9.5)
381 pkg_check_modules(LIBCDDB libcddb>=0.9.5)
382 if(${LIBCDDB_FOUND})
383   vlc_module_add_link_libraries(cdda ${LIBCDDB_LIBRARIES})
384   vlc_add_module_compile_flag(cdda ${LIBCDDB_CFLAGS} )
385 endif(${LIBCDDB_FOUND})
386
387 find_package(Dlopen)
388 set(HAVE_DL_DLOPEN ${Dlopen_FOUND})
389
390 # Advanced Linux Sound Architecture (ALSA)
391 pkg_check_modules(ALSA alsa>=1.0.0-rc4)
392 if (${ALSA_FOUND})
393   set (HAVE_ALSA_NEW_API "1")
394 else (${ALSA_FOUND})
395   pkg_check_modules(ALSA alsa)
396 endif (${ALSA_FOUND})
397
398 if (${ALSA_FOUND})
399   set (HAVE_ALSA "1")
400   vlc_enable_modules(alsa)
401   vlc_add_module_compile_flag(alsa ${ALSA_CFLAGS})
402   vlc_module_add_link_libraries(alsa ${ALSA_LIBRARIES})
403 endif (${ALSA_FOUND})
404
405 # Open Sound System (OSS)
406 # TODO
407
408 find_package(FFmpeg)
409 if(FFmpeg_FOUND)
410   vlc_check_include_files (ffmpeg/avcodec.h)
411   vlc_check_include_files (ffmpeg/avutil.h)
412   vlc_check_include_files (ffmpeg/swscale.h)
413   check_include_files ("stdint.h;postproc/postprocess.h" HAVE_POSTPROC_POSTPROCESS_H)
414   vlc_enable_modules(ffmpeg)
415   vlc_add_module_compile_flag(ffmpeg ${FFmpeg_CFLAGS} )
416   vlc_module_add_link_libraries(ffmpeg ${FFmpeg_LIBRARIES})
417 endif(FFmpeg_FOUND)
418
419 find_package(Lua)
420 if(Lua_FOUND)
421   set(HAVE_LUA TRUE)
422   vlc_enable_modules(lua)
423   vlc_check_include_files (lua.h lualib.h)
424   vlc_add_module_compile_flag(lua ${Lua_CFLAGS} )
425   vlc_module_add_link_libraries(lua ${Lua_LIBRARIES})
426 endif(Lua_FOUND)
427
428 find_package(Qt4)
429 if(QT4_FOUND)
430   set(HAVE_QT4 TRUE)
431   include_directories(${QT_INCLUDES})
432   vlc_check_include_files (qt.h)
433   vlc_enable_modules(qt4)
434   vlc_add_module_compile_flag(qt4 ${QT_CFLAGS} )
435   vlc_module_add_link_libraries(qt4 ${QT_LIBRARIES})
436
437   # Define our own qt4_wrap_ui macro to match wanted behaviour
438   MACRO (VLC_QT4_WRAP_UI outfiles )
439     FOREACH (it ${ARGN})
440      string(REPLACE ".ui" ".h" outfile "${it}")
441       GET_FILENAME_COMPONENT(infile ${it} ABSOLUTE)
442       SET(outfile ${CMAKE_CURRENT_BINARY_DIR}/${outfile})
443       ADD_CUSTOM_COMMAND(OUTPUT ${outfile}
444         COMMAND mkdir -p `dirname ${outfile}`
445         COMMAND ${QT_UIC_EXECUTABLE}
446         ARGS -o ${outfile} ${infile}
447         MAIN_DEPENDENCY ${infile})
448       SET(${outfiles} ${${outfiles}} ${outfile})
449     ENDFOREACH (it)
450   ENDMACRO (VLC_QT4_WRAP_UI)
451
452 endif(QT4_FOUND)
453
454 find_package(OpenGL)
455 if(OPENGL_FOUND)
456   vlc_enable_modules(opengl)
457   vlc_check_include_files (gl/gl.h)
458   vlc_check_include_files (gl/glu.h)
459   vlc_check_include_files (gl/glx.h)
460   vlc_add_module_compile_flag(opengl ${OPENGL_CFLAGS})
461   vlc_module_add_link_libraries(opengl ${OPENGL_LIBRARIES})
462 endif(OPENGL_FOUND)
463
464 find_package(Matroska 0.7.7)
465 if(Matroska_FOUND)
466   vlc_enable_modules(mkv)
467   vlc_check_include_files (matroska/KaxAttachments.h)
468   vlc_check_include_files (matroska/KaxVersion.h)
469   vlc_module_add_link_libraries(mkv ${Matroska_LIBRARIES})
470 endif(Matroska_FOUND)
471
472 find_package(Live555)
473 if(Live555_FOUND)
474   vlc_enable_modules(live555)
475   vlc_add_module_compile_flag(live555 ${Live555_CFLAGS})
476   vlc_module_add_link_libraries(live555 ${Live555_LIBRARIES})
477 endif(Live555_FOUND)
478
479 find_package(Curses)
480 if(CURSES_LIBRARIES)
481   vlc_enable_modules(ncurses)
482   vlc_module_add_link_libraries(ncurses ${CURSES_LIBRARIES})
483 endif(CURSES_LIBRARIES)
484
485 set(CMAKE_REQUIRED_INCLUDES)
486
487 ###########################################################
488 # Final configuration
489 ###########################################################
490 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/include/config.h)