summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2008-01-26Fix font installation (broken by the xine-config backport).Darren Salt
2008-01-23Finish the backport of libxine.pc.in; do xine-config (now requires pkg-config).Darren Salt
Remove the "deprecated" warnings since xine-config is not deprecated in 1.1.x. --skindir no longer works. --HG-- rename : misc/xine-config.in => misc/xine-config
2008-01-22Patch version missing from xine-config, libxine.pcVille Skyttä
The possible patch digit is missing from "xine-lib --version" and "pkg-config --modversion libxine", as witnessed in 1.1.9.1. --HG-- extra : transplant_source : %3C%0E%E4%28%F3%AD%C5%7F%8F%13%D7%1Ck%10tAQ%85Oh
2008-01-13Bump version no. ready for what I expect to be the next release.Darren Salt
--HG-- extra : transplant_source : q%B3q%EEC%D4p%E7%7F%8Eb%BE%F8%81%D3c%F6%C8%1AF
2008-01-09Allow for patch-level numbering; initialise to ".1".Darren Salt
2008-01-04Protect against multiple inclusion of include/configure.h.Darren Salt
2007-12-31Convert XML parser ABI breakage into ABI extension. Bump the soname accordingly.Darren Salt
2007-11-24Add option to disable Nosefart/NSF plugin building.Diego 'Flameeyes' Pettenò
This way you can get a safer build for binary redistribution.
2007-11-19add support for GNU/kFreeBSDPetr Salinger ext:(%20)
It changes some "defined (__FreeBSD__)" into "defined (__FreeBSD_kernel__)" and "__FreeBSD_version" into "__FreeBSD_kernel_version". The changes are performed on places, where feature of kernel is tested. On some other places, feature of userland/libc is tested, on them "defined (__FreeBSD__)" remains. As proposed, include/configure.h cause __FreeBSD_kernel__ be defined if __FreeBSD__ is defined. --HG-- extra : transplant_source : %25%96K%05%E4Y%B15%94%60%15%FE1%8Ah%26Xy%8C/
2007-09-03Bump version info, ready for an eventual 1.1.9 release.Darren Salt
2007-08-12Extend config key translation to allow front ends to provide an additional list.Darren Salt
Intent is to allow front ends to rename their old, badly-named, config items.
2007-06-14Disable mediaLib support by default.Diego 'Flameeyes' Pettenò
The licenses probably disallow the distribution of xine binaries built against mediaLib. And on non-VIS capable boxes is probably worse than our own code.
2007-06-13Backport the memmem() replacement from 1.2 series.Diego 'Flameeyes' Pettenò
2007-06-10Update version information.Diego 'Flameeyes' Pettenò
2007-06-08Fix build issues on systems which need our internal asprintf.Darren Salt
config.h is now include/configure.h and no longer #includes os_internals.h. A new file, include/config.h, #includes both; this breaks a #include loop. Other files are updated accordingly.
2007-06-05Disable aRTs output plugin by default, it's deprecated and will be removed ↵Diego 'Flameeyes' Pettenò
in 1.2 series.
2007-06-02Bump libtool revision number.Darren Salt
2007-05-05Merge Bastien Nocera's changes.Darren Salt
2007-05-05Up the version number in HG so we can check for the _x_io_select fixhadess@cookie.hadess.net
2007-05-04Fix building of CDDA input on FreeBSD, the NetBSD patch broke it as ↵Diego 'Flameeyes' Pettenò
sys/scsiio.h is not present on FreeBSD.
2007-04-15autoconf 2.59 mishandles AC_DEFINE([ASMALIGN(ZEROBITS)], ...). Work around it.Darren Salt
2007-04-13Bump version no.Darren Salt
2007-04-13Change the dev version suffix from cvs to hg; fix .cvsversion detection.Darren Salt
2007-04-12Set xv_path before rewriting X_LIBS if we're not using pkg-config to ↵Diego 'Flameeyes' Pettenò
discover X libraries.
2007-04-10Have configure option --enable-debug turn on debug code.Reinhard Nißl
2007-04-07Add a missing test call.Diego 'Flameeyes' Pettenò
2007-04-07Use CC_ATTRIBUTE_FORMAT; replace __attribute((format(printf, ...))) accordingly.Darren Salt
2007-04-04Move the Speex decoder from libspeex to libxineadec, as it's a single file.Diego 'Flameeyes' Pettenò
--HG-- rename : src/libspeex/xine_decoder.c => src/libxineadec/xine_speex_decoder.c
2007-04-04Move the Theora decoder from libtheora to libxinevdec, as it's a single file.Diego 'Flameeyes' Pettenò
--HG-- rename : src/libtheora/xine_decoder.c => src/libxinevdec/xine_theora_decoder.c
2007-04-04Move the Vorbis decoder from libvorbis to libxineadec, as it's a single file.Diego 'Flameeyes' Pettenò
--HG-- rename : src/libvorbis/xine_decoder.c => src/libxineadec/xine_vorbis_decoder.c
2007-04-04Move the linear pcm decoder from liblpcm to libxineadec, as it's a single file.Diego 'Flameeyes' Pettenò
--HG-- rename : src/liblpcm/xine_decoder.c => src/libxineadec/xine_lpcm_decoder.c
2007-04-04Move the flac plugins sources into the combined directory, like wavpack.Diego 'Flameeyes' Pettenò
--HG-- rename : src/libflac/decoder_flac.c => src/combined/decoder_flac.c rename : src/libflac/demux_flac.c => src/combined/demux_flac.c rename : src/libflac/demux_flac.h => src/combined/demux_flac.h
2007-04-04Remove duplicate wavpack line.Diego 'Flameeyes' Pettenò
2007-04-04Check for sys/dvdio.h, and use that if found, rather than having a check for ↵Diego 'Flameeyes' Pettenò
the BSDs. Thanks to Pascal S. de Kloe for pointing at this.
2007-04-04Check for audio_info_t.output_muted member, rather than assuming it's not ↵Diego 'Flameeyes' Pettenò
available on NetBSD only. With this, it's not needed to check for OpenBSD too. Thanks to Pascal S. de Kloe for pointing at it.
2007-04-02Don't rely on AC_PROG_OBJC presence.Diego 'Flameeyes' Pettenò
When the macro is not present (so we're using autoconf 2.59), use a different path, by checking for the proper gcc command as OBJC, and substitute it in Makefiles together with OBJCFLAGS. This completes support for autoconf 2.59 by itself.
2007-04-02Decrease the prerequisites to autoconf 2.59 (even if the code hasn't been ↵Diego 'Flameeyes' Pettenò
made compatible yet).
2007-04-01Define CONFIG_DARWIN when building for Darwin (i.e.: Mac OS X).Diego 'Flameeyes' Pettenò
Patch thanks to Matt Messier. CVS patchset: 8783 CVS date: 2007/04/01 22:05:27
2007-03-29Replace obsolete macros (processing done by autoupdate).Darren Salt
Some tests were rearranged (AC_TRY_LINK moved out of AC_TRY_RUN cross-compilation case, with arrangements to maintain the semantics) to avoid autoupdate errors. Factored out common (duplicate) code in aa.m4. Tested with autoconf 2.61; needs testing with 2.60. CVS patchset: 8767 CVS date: 2007/03/29 18:23:36
2007-03-26Use AS_HELP_STRING instead of the deprecated AC_HELP_STRING.Darren Salt
CVS patchset: 8751 CVS date: 2007/03/26 14:21:10
2007-03-26Send an event when the amp value or amp mute change. Patch by reinhard ↵Diego 'Flameeyes' Pettenò
Nissl. Also bump the libtool version info. CVS patchset: 8749 CVS date: 2007/03/26 11:48:00
2007-03-24Improve tests for visibility attribute support; Mach-O supports default ↵Diego 'Flameeyes' Pettenò
visibility but not protected (as the default is actually kinda like protected), thanks to Matt Messier in bug #1686194 for pointing me at that. CVS patchset: 8744 CVS date: 2007/03/24 02:36:52
2007-03-22Instead of defining HAVE_ASMALIGN_POT during configure and then creating the ↵Diego 'Flameeyes' Pettenò
macro ASMALIGN(ZEROBITS) in ffmpeg's code, define it directly at configure, this way it can be used for the planar postplugin, that will then build with Apple's AS. CVS patchset: 8742 CVS date: 2007/03/22 23:32:05
2007-03-22Move handling of Win32 codecs all in a single point of configure.ac rather ↵Diego 'Flameeyes' Pettenò
than split in two. Check for GNU as (macro adapted from libtool's check for GNU ld), as for instance Apple's assembler is not going to compile the Win32 wrappers. When GNU as is not found and user hasn't requested win32 codecs support explicitely, skip over it; if user requested win32 codecs and GNU as is not found, bail out. CVS patchset: 8740 CVS date: 2007/03/22 22:31:48
2007-03-22Fix crosscompile to use build and host definition from autoconf, rather than ↵Diego 'Flameeyes' Pettenò
using hacksaround. Also replace the whole pthread check with an improved macro originally written for XCB, this way it's not going to try linking the fake -lpthread on Darwin, and it also does not force a -I/usr/local/include on FreeBSD. The new macro respects the same variables set by ports, so that it's even more transparent to FreeBSD users. CVS patchset: 8739 CVS date: 2007/03/22 20:44:58
2007-03-22Try to reorganize the first tests so that the conditional macros are tested ↵Diego 'Flameeyes' Pettenò
together, and that the programs are checked. This way all the compilers and flags variables are grouped together on the --help output. CVS patchset: 8738 CVS date: 2007/03/22 18:21:16
2007-03-22As the code as it is requires autoconf 2.60, at least state it so. If we ↵Diego 'Flameeyes' Pettenò
decide to push back to support 2.59 again, then the AC_PREREQ should be changed too. Leaving 2.53 is out of question for sure. CVS patchset: 8736 CVS date: 2007/03/22 14:32:56
2007-03-20Missing 'test'.Darren Salt
CVS patchset: 8735 CVS date: 2007/03/20 14:10:49
2007-03-20Oops, I copied it wrong from his paste, this should do it.Diego 'Flameeyes' Pettenò
CVS patchset: 8732 CVS date: 2007/03/20 01:25:03
2007-03-20On Darwin we also have to enable explicitly the text relocations. Thanks to ↵Diego 'Flameeyes' Pettenò
Emanuele Giaquinta for pointing me at the right LDFLAG. CVS patchset: 8731 CVS date: 2007/03/20 01:18:51