Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-03 | 1.1.16.3.xine-lib-1_1_16_3-release1.1.16.3 | Darren Salt | |
2009-03-15 | Complain if both <ffmpeg/avutil.h> and <libavutil/avutil.h> are present. | Darren Salt | |
(Should have done this ages ago...) | |||
2009-03-08 | Enable libmpeg2new only if configured with --enable-libmpeg2new. | Darren Salt | |
2009-02-17 | Fix XINE_BUILD_DATE in the autoconf script. | Brad Smith | |
2009-02-10 | Restart 1.1.17 (again); revert changes made specifically for the release. | Darren Salt | |
2009-02-10 | 1.1.16.2; back out release changes intended for 1.1.17.xine-lib-1_1_16_2-release1.1.16.2 | Darren Salt | |
2009-02-10 | Disable libmpeg2new for release. | Darren Salt | |
2009-01-17 | Avoid libtool running ldconfig (where not needed) at install time. | Darren Salt | |
2009-01-16 | Rework ffmpeg codecs lists creation. | Darren Salt | |
This is intended to make it easier to add new codecs without breaking compilation with older ffmpeg and to see which codecs need to be added. | |||
2009-01-15 | Bump the API age and update the version number. | Darren Salt | |
2008-11-29 | Newer ImageMagick has GraphicsMagickWand.pc, not Wand.pc | Darren Salt | |
(Reported by Loïc Minier.) | |||
2009-01-12 | Enable libmpeg2new & clean it up. libmpeg2 remains preferred. | Darren Salt | |
2009-01-12 | Simplify using xine directories in configure, remove unnedded stuff. | František Dvořák | |
Fixed font installation for Windows platforms. | |||
2009-01-11 | xine-lib 1.1.16.1.xine-lib-1_1_16_1-release1.1.16.1 | Darren Salt | |
2009-01-09 | Works fine with libcaca 0.99beta14. Also fix up check output. | Darren Salt | |
2009-01-09 | libcaca version 0.99beta15 required (new dithering feature). | František Dvořák | |
Fixes bug #194. | |||
2008-09-17 | Mingw+MSys: NLS support, --enable-stdcall-fixup | Carlo Bramini | |
It was not possible to compile some parts of XINE-LIB with NLS enabled. It's also a good idea to explicitely enable --enable-stdcall-fixup for solving a huge amount of warnings. Attached patch fixes these problems. | |||
2008-12-20 | Ignore warnings about pointer signedness since we have signed read functions ↵ | Diego E. 'Flameeyes' Pettenò | |
in our plugins (for now). | |||
2008-11-22 | Fix linkage failure caused by the av_free() changes in the ffmpeg decoders. | Darren Salt | |
2008-11-19 | Enable basic warnings even when optimisations are disabled. | Diego E. 'Flameeyes' Pettenò | |
We don't want to have warnings conditional to extreme optimisations: if the compiler supports them, they should be enabled. The reason why they were conditional is that the code testing for GCC presence enabled both warnings and optimisations, and the warnings were carried over when the optimisations were made optional. | |||
2008-11-19 | Create a new macro CC_NOUNDEFINED to check for the -z defs flag or | Diego E. 'Flameeyes' Pettenò | |
equivalent. I wanted this because I'm going to reuse attribute.m4 with that macro for a couple other projects. This also removes AC_TRY_LDFLAGS since it's not used any longer (replaced by CC_CHECK_LDFLAGS, which also caches results). | |||
2008-11-19 | Update the CFLAGS checks to use the new CC_CHECK_CFLAGS_APPEND macros. | Diego E. 'Flameeyes' Pettenò | |
This should make it more readable, and avoid a few extra test. Also check for the -Werror= style for GCC 4.3 instead of the old -Werror-implicit-function-declaration. | |||
2008-10-17 | Replace configure test for PulseAudio version by cpp test | Matthias Ringwald | |
Version 0.9.6 has PA_PROTOCOL_VERSION 10, version 0.9.7 has 11. This simplifies configure and limits the knowledge about PA versions to the audio output plug-in. This time, the patch includes configure.ac, too. | |||
2008-10-16 | Tell autoconf to expand PULSEAUDIO_{CFLAGS|LIBS} | Matthias Ringwald | |
2008-09-20 | Don't convert unix-style / to windows-style \ on mingw | Matthias Ringwald | |
cygwin and msys are both happy with normal slashes and both per default use standard unix slashes, e.g., pwd reports '/'. the previous conversion in configure.ac lead to mixed stye paths which caused problems like bug #133 on some system. not converting to \ should solve those and make everything more consistent. | |||
2008-10-02 | Fix compilation for new auto*. | Matthias Hopf | |
2008-08-17 | Bump version ready for the next release. | Darren Salt | |
2008-08-13 | Allow (and prefer) use of external libfaad. | Darren Salt | |
2008-07-13 | Adjust checking for libavcodec to match the new external ffmpeg default. | Darren Salt | |
2008-07-13 | Switch to using external ffmpeg by default. | Darren Salt | |
2008-07-11 | Fix xine_get_pluginroot (mingw32) | Matthias Ringwald | |
xine_get_pluginroot now makes use of the XINE_REL_PLUGINROOT define | |||
2008-07-09 | Fix MIN, MAX macro replacement (mingw32 fix) | Matthias Ringwald | |
xine was already checking for MIN/MAX macros but the replacement does not work (at least not on mingw32). This change defines HAVE_[MIN|MAX]_MACRO and if missing, providedes them in lib/os_internal.h | |||
2008-07-08 | Fix compilation for pthread support provided by PTHREAD_{CFLAGS+LIBS} | Matthias Ringwald | |
<xine-internals.h> includes <xine-utils/refcounter.h> which includes <pthread.h>. As all xine sources include <xine-internal.h>, the PTHREAD_CFLAGS are always needed. This patch removed it from two Makefile.am and adds them to CPPFLAGS | |||
2008-07-02 | Bump version ready for the next release. | Darren Salt | |
Hopefully, that's a while away yet :-) | |||
2008-07-02 | Cope with missing strcasestr(). | Darren Salt | |
2008-07-02 | don't check for ioctl request type if oss audio is not available | Matthias Ringwald | |
on mingw32, ioctl does not exist and the AC_IOCTL_REQUEST macro breaks configure As this test is only needed for OSS audio (otherwise it should be somewhere else), it's now only called if OSS audio is actually available | |||
2008-07-02 | fix pthread recursive mutex detection (for mingw32) | Matthias Ringwald | |
2008-06-26 | Bump version. | Darren Salt | |
2008-06-21 | Merge. | Darren Salt | |
2008-06-21 | Partially revert fa7f53fb1656, which introduced some libtool-related problems. | Darren Salt | |
With libtool 1.5, AC_LIBTOOL_SETUP was being called too early. | |||
2008-06-17 | Fix support for libtool 2.2. | Diego 'Flameeyes' Pettenò | |
- add AC_CONFIG_MACRO_DIR so that all the libtool macros are added to the m4 directory rather than the toplevel one; - check for libtool before checking for dlopen and other things; - remove Fortran macro undefining hack, libtool 2.2 handle that properly. | |||
2008-06-17 | Revert xine customisations of po/Makefile.in.in, use Makevars for the rest. | Diego 'Flameeyes' Pettenò | |
Move all the customisations to po/Makefile.in.in to po/Makevars, and create a new SUBST-parsed Makevars.extra.in file to get the LIBNAME variable. | |||
2008-06-17 | Require at least version 0.16.1 of gettext (Debian stable at the moment). | Diego 'Flameeyes' Pettenò | |
2008-06-11 | Mark release as 1.1.13, not 1.1.12.1. | Darren Salt | |
2008-05-29 | Define ARCH_{ALPHA,ARM} as needed; move one ARCH_SPARC which could be missed. | Darren Salt | |
2008-05-23 | Check for MIN/MAX macro and include the header for them if found. | Diego 'Flameeyes' Pettenò | |
The MIN/MAX macro are quite often used on the source code to find the minimum or maximum value between two, instead of defining it per-unit, check if the system provides them include the right header, otherwise define them during configure run. | |||
2008-05-20 | Add check for const attribute (for mathematical functions). | Diego 'Flameeyes' Pettenò | |
Add CC_ATTRIBUTE_CONST macro to the attributes.h. Run CC_ATTRIBUTE_CONST in configure. Define SUPPORT_ATTRIBUTE_CONST for GCC 3. Define XINE_CONST to __attribute__((__const__)) if supported. --HG-- extra : transplant_source : /26%26%DF%C0%3C%AC%27%5C%B7%B1y%FEQ%8Ay%EE%F1%BD | |||
2008-05-12 | Bump the soname (ABI extension). | Darren Salt | |
2008-05-09 | Cleanup handling of packed attribute. | Diego 'Flameeyes' Pettenò | |
- Add a configure test for the attribute, during xine build process. - Define the attribute as supported when using GCC 2.95 or later outside xine build process. - Use the new XINE_PACKED define instead of the attribute directly. - Check for SUPPORT_ATTRIBUTE_PACKED rather than doing strange subdefines. | |||
2008-05-05 | Check for malloc attribute and define XINE_MALLOC for use in xineutils.h, ↵ | Diego 'Flameeyes' Pettenò | |
rather than just checking for GCC 3. |