summaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeFilesLines
* Remove MEncoderUoti Urpala2010-11-021-8/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Disable MEncoder compilation and remove files used by MEncoder only. There's no attempt to remove all references to MEncoder from the build system, documentation etc at this point. Removed files: (muxers, audio/video encoders, misc) mencoder.c cfg-mencoder.h parser-mecmd.[ch] xvid_vbr.[ch] libmpdemux/muxer* libmpcodecs/ae* libmpcodecs/ve* libmpcodecs/native/rtjpegn.[ch] libmpcodecs/native/mmx.h // was used by rtjpegn only Rationale: MEncoder is still useful for some people, but there's not much potential for further development; in the long run almost all use cases can be handled better by solutions based on something else (for example using FFmpeg or encoding MPlayer output). FFmpeg is already getting video filtering support which should work for some common MEncoder uses. Keeping MEncoder working takes extra work that is away from player development. While that amount of work is not huge (mostly MEncoder can be just ignored), it's not completely insignificant either. MEncoder is still maintained to some degree in the svn tree, so if necessary it's possible to use it from there for now. This tree has never had major improvements for the MEncoder side, so using svn MEncoder instead should be no major loss.
* configure: change Apple remote test to just compile, not rundiego2010-11-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32175 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: remove duplicated CFLAGS from DEPFLAGSUoti Urpala2010-11-021-1/+1
| | | | | | The DEPFLAGS definition included the CFLAGS variable. All uses of DEPFLAGS in Makefile use CFLAGS too, so this resulted in duplicated options. Make DEPFLAGS contain "-MD -MP" only.
* configure: Separate compiler warning flags from other flagsdiego2010-11-021-13/+19
| | | | | | | | | | This allows setting some warning flags for C but not for C++ and fixes a bunch of warnings that resulted from compiling C++ files with C-only warning flags. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32173 b3059339-0415-0410-9bf9-f77b7e298cf2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32227 b3059339-0415-0410-9bf9-f77b7e298cf2
* enable vo_mga, vo_xmga, vf_palette, vf_halfpackUoti Urpala2010-11-021-18/+4
| | | | | | Nothing should depend on libswscale internals any more, so re-enable everything. vf_palette and vf_halfpack were actually fixed earlier but were not properly enabled.
* configure: Add a hack to work with BeOS/Haiku libsdlreimar2010-11-021-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32045 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Attempt to fix compilation with FreeBSD's dvdio.hreimar2010-11-021-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32039 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: make libarts check verify linkingreimar2010-11-021-1/+2
| | | | | | | Fix arts check to actually check linking so it doesn't get enabled when e.g. cross-compiling under Linux for Windows. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32024 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Fix documentation language variables in summary outputdiego2010-11-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31981 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: avoid unsupported options with clang on Darwin/PPCdiego2010-11-021-1/+4
| | | | | | | Suppress unsupported compiler options when building with clang on Darwin/PPC. patch by Rowan James, rowanj@phere.net git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31910 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Add -Wno-parentheses to CFLAGSdiego2010-11-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31909 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: fix OpenBSD default for CD-ROM devicediego2010-11-021-1/+1
| | | | | | | The default CD-ROM device on OpenBSD is /dev/rcd0c, not /dev/rcd0a. patch by Edd Barrett, vext01 gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31908 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Default to -O2 optimization level for the clang compilerdiego2010-11-021-0/+2
| | | | | | patch by Rowan James, rowanj phere net git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31880 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: add header_check_broken, use for cdioreimar2010-11-021-2/+18
| | | | | | | | | | | | | | | | | | | | Make the sys/cdio.h header test work by explictly including sys/types.h before. Broken headers are a Solaris and BSD tradition, hoping for them to get their act together is hopeless, so we work around it (for now at least). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31855 b3059339-0415-0410-9bf9-f77b7e298cf2 Add a special header_check_broken to be used for broken system headers taht do not include all dependencies and use it for the Solaris uscsi header. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31856 b3059339-0415-0410-9bf9-f77b7e298cf2 Use header_check_broken to simplify cdio.h check. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31857 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Rename "network" variable and option to "networking"diego2010-11-021-18/+20
| | | | | | This avoids conflicts with the FFmpeg variable of the same name. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31749 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Fix LADSPA test variable initializationdiego2010-11-021-1/+1
| | | | | | Don't use NULL (which would required stddef.h). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31748 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: use correct arguments in signal handler testsdiego2010-11-021-2/+2
| | | | | | | | Give signal handler function in test programs correct argument list. This avoids a number of warnings from those test programs. patch by Giorgio, mywing81 gmail com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31735 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Move PIC test out of the x86 sectiondiego2010-11-021-12/+15
| | | | | | It is not only required on x86. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31729 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Move EBX availability #define within config.hdiego2010-11-021-1/+1
| | | | | | It is not FFmpeg-specific. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31667 b3059339-0415-0410-9bf9-f77b7e298cf2
* stream_bluray: add unencrypted Blu-ray playbackben2010-11-021-1/+31
| | | | | | | Support for unencrypted Blu-ray playback through libbluray. Use it through: mplayer br:////path/to/disc git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31631 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Add return statement to function_check test program.diego2010-11-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31617 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: use cflag_check function for more casesdiego2010-11-021-28/+19
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31616 b3059339-0415-0410-9bf9-f77b7e298cf2 Use cflag_check utility function in cross-compilation check. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31618 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Separate dependency flags from general CFLAGSdiego2010-11-021-1/+2
| | | | | | | | | | Before, there was an unfortunate interaction with 'make checkheaders': Compiling a .h file would generate a .d dependency information file for that .h file as a sideeffect of compilation. Unfortunately this would clobber the .d files of the .c files with the same basename, resulting in broken dependency information when running plain make. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31614 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: add function to check compiler flags directlydiego2010-11-021-50/+33
| | | | | | | Add a convenience function to check for compiler flags directly without specifying a test program, and modify tests to use it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31613 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Rename _warn_CFLAGS variable to warn_cflags.diego2010-11-021-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31612 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Add function to check for particular function in headerdiego2010-11-021-0/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31593 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Place temporary files in a subdirectory of their owndiego2010-11-021-8/+10
| | | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31592 b3059339-0415-0410-9bf9-f77b7e298cf2 Fix variable name for tmpdir selection iterator. Temporary directories should now be properly created on Linux. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31594 b3059339-0415-0410-9bf9-f77b7e298cf2 config.log belongs into mplayer's root directory, not into the tmp directory git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31596 b3059339-0415-0410-9bf9-f77b7e298cf2
* ad_mpg123: add MP3 decoding through libmpg123diego2010-11-021-0/+25
| | | | | | patch by Thomas Orgis, thomas-forum orgis org git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31590 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Fix detection of SDL backend for vo_gl on OS Xastrange2010-11-021-1/+1
| | | | | | | | | SDL overrides main, and provides a prototype for SDL_main which uses argc and argv. Since the prototype didn't match the main() in the test program, it failed to compile, making the test fail when it should have worked. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31589 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Fix indentationreimar2010-11-021-16/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31572 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Experimental support for clang compiler.reimar2010-11-021-2/+11
| | | | | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31569 b3059339-0415-0410-9bf9-f77b7e298cf2 clang also does not support -march=native. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31570 b3059339-0415-0410-9bf9-f77b7e298cf2 Simplify clang version extraction. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31571 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Fix catch() callback function declaration in two compile testsdiego2010-11-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31548 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: whitespace cosmeticsdiego2010-11-021-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31547 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Remove unnecessary #includes from libnut test.diego2010-11-021-3/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31546 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Replace manual header checks by header_check functiondiego2010-11-021-152/+36
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31545 b3059339-0415-0410-9bf9-f77b7e298cf2 Fix arpa/inet.h configure check. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31563 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Remove some unnecessary #includes from testsdiego2010-11-021-20/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31526 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Simplify fribidi check - console output is not necessarydiego2010-11-021-4/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31457 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Add header_check convenience functiondiego2010-11-021-0/+9
| | | | | | Used to check for header availability. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31436 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: change gettimeofday() test function parametersdiego2010-11-021-1/+1
| | | | | | | Use a struct timezone as second parameter for gettimeofday in the function test. This works around (broken?) systems where just git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31433 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Remove some unnecessary #includes from compilation testsdiego2010-11-021-3/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31431 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: Drop linux-devfs configure option.diego2010-11-021-28/+19
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31416 b3059339-0415-0410-9bf9-f77b7e298cf2 cosmetics: Reindent after last commit. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31417 b3059339-0415-0410-9bf9-f77b7e298cf2
* build: Rename configure.log file to config.logdiego2010-11-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31415 b3059339-0415-0410-9bf9-f77b7e298cf2
* configure: make gif test check linking tooreimar2010-11-021-1/+1
| | | | | | Add QuantizeBuffer function call to gif test to actually test linking. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31373 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Drop leading underscore from configuration variable.diego2010-11-021-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31351 b3059339-0415-0410-9bf9-f77b7e298cf2
* Merge svn changes r31306, r31307Uoti Urpala2010-06-051-1/+4
|\
| * Add the -march fallback for amdfam10 also to the x86_64 case.reimar2010-06-021-0/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31307 b3059339-0415-0410-9bf9-f77b7e298cf2
| * libavcodec/libx264.c requires x264 0.98 since r23430.cehoyos2010-06-021-1/+1
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31306 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Fix compilation without librtmp.cehoyos2010-05-301-0/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31285 b3059339-0415-0410-9bf9-f77b7e298cf2
* | configure: fix disabling of (x)mga without swscale internalsUoti Urpala2010-06-041-1/+3
| | | | | | | | | | | | The _mga/_xmga variables weren't changed to "no", causing a build failure if mga/xmga support would have been otherwise enabled but was only switched off because of the swscale test.
* | Merge svn changes up to r31284Uoti Urpala2010-06-021-3/+5
|\|
| * Change compiler argument order for compile_check to avoid incorrect linkingreimar2010-05-301-3/+5
| | | | | | | | | | | | | | errors during detection with static libraries (in particular OpenGL + static SDL). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31282 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add librtmp supporthyc2010-05-301-2/+30
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31277 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove obsolete may_alias-related defines, lavu handles this nowreimar2010-05-291-2/+0
| | | | | | | | | | | | | | directly with compiler-version checks. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31267 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Actually run a detection whether external libass exists, insteadreimar2010-05-291-2/+17
| | | | | | | | | | | | | | of just assuming it does when internal libass is disabled. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31266 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31265Uoti Urpala2010-06-021-21/+24
|\|
| * Fix compilation if the compiler does not support -march=amdfam10reimar2010-05-291-0/+3
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31265 b3059339-0415-0410-9bf9-f77b7e298cf2
| * cosmetics: Drop leading '_' from noinputmodules variable.diego2010-05-291-21/+21
| | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31264 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Add support for decoding VP8 through libvpx wrapper in FFmpeg.diego2010-05-251-0/+28
| | | | | | | | | | | | | | patch by James Zern, jzern google com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31220 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31211Uoti Urpala2010-05-301-8/+3
|\| | | | | | | | | The merged cache2.c changes are known to have problems. Will merge further fixes to them before merging this to the master branch.
| * support linking to fribidi without pkg-configsiretart2010-05-241-2/+8
| | | | | | | | | | | | | | | | reintroduce the logic that was removed with the previous commit. In case the naive approach to link fails, try again with pkg-config. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31210 b3059339-0415-0410-9bf9-f77b7e298cf2
| * make configure use pkg-config for fribidi checkssiretart2010-05-241-13/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | fribidi upstream has dropped fribidi-config in favor of pkg-config now: http://lists.freedesktop.org/archives/fribidi/2008-May/000532.html This commit fixes: http://bugzilla.mplayerhq.hu/show_bug.cgi?id=1675 https://launchpad.net/bugs/556200 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=582784 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31209 b3059339-0415-0410-9bf9-f77b7e298cf2
| * vf_zr requires the lavc MJPEG encoder even when MEncoder has been disabled.diego2010-05-141-1/+3
| | | | | | | | | | | | | | This fixes compilation with vo_zr enabled and MEncoder disabled. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31178 b3059339-0415-0410-9bf9-f77b7e298cf2
| * Remove duplicate and nonsense libavencoders #define for OpenCORE AMR-WB.diego2010-05-141-1/+0
| | | | | | | | | | | | | | OpenCORE AMR-WB only has a decoder, no encoder. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31177 b3059339-0415-0410-9bf9-f77b7e298cf2
* | Merge svn changes up to r31176Uoti Urpala2010-05-301-1/+1
|\|
| * Check for termios.h before sys/termios.h.diego2010-05-141-1/+1