summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2008-11-19Update 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-17Replace configure test for PulseAudio version by cpp testMatthias 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-16Tell autoconf to expand PULSEAUDIO_{CFLAGS|LIBS}Matthias Ringwald
2008-09-20Don't convert unix-style / to windows-style \ on mingwMatthias 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-02Fix compilation for new auto*.Matthias Hopf
2008-08-17Bump version ready for the next release.Darren Salt
2008-08-13Allow (and prefer) use of external libfaad.Darren Salt
2008-07-13Adjust checking for libavcodec to match the new external ffmpeg default.Darren Salt
2008-07-13Switch to using external ffmpeg by default.Darren Salt
2008-07-11Fix xine_get_pluginroot (mingw32)Matthias Ringwald
xine_get_pluginroot now makes use of the XINE_REL_PLUGINROOT define
2008-07-09Fix 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-08Fix 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-02Bump version ready for the next release.Darren Salt
Hopefully, that's a while away yet :-)
2008-07-02Cope with missing strcasestr().Darren Salt
2008-07-02don't check for ioctl request type if oss audio is not availableMatthias 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-02fix pthread recursive mutex detection (for mingw32)Matthias Ringwald
2008-06-26Bump version.Darren Salt
2008-06-21Merge.Darren Salt
2008-06-21Partially revert fa7f53fb1656, which introduced some libtool-related problems.Darren Salt
With libtool 1.5, AC_LIBTOOL_SETUP was being called too early.
2008-06-17Fix 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-17Revert 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-17Require at least version 0.16.1 of gettext (Debian stable at the moment).Diego 'Flameeyes' Pettenò
2008-06-11Mark release as 1.1.13, not 1.1.12.1.Darren Salt
2008-05-29Define ARCH_{ALPHA,ARM} as needed; move one ARCH_SPARC which could be missed.Darren Salt
2008-05-23Check 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-20Add 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-12Bump the soname (ABI extension).Darren Salt
2008-05-09Cleanup 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-05Check for malloc attribute and define XINE_MALLOC for use in xineutils.h, ↵Diego 'Flameeyes' Pettenò
rather than just checking for GCC 3.
2008-05-03Run check for unused attribute.Diego 'Flameeyes' Pettenò
2008-05-03Add support for "deprecated" attribute.Darren Salt
2008-04-30Warn when using built-in ffmpeg rather than external ffmpeg.Darren Salt
2008-04-11Test for pulseaudio 0.9.7 to determine which muting method to use.Darren Salt
2008-04-08Bump version to 1.1.12; bump interface age due to the new video-out plugin.Darren Salt
--HG-- extra : transplant_source : %ED%E5%16J%82%ECe%85%7F%FA%95%1Dv%8D%88%EE%AC%FE%40%9E
2008-04-06Add a tool to list MIME types & filetype extns known to xine-lib plugins.Darren Salt
This is expected to see most use in updating MIME type lists in front ends' desktop files.
2008-04-04List OpenGL if detectedMatthias Ringwald
A typo in the tests prevents listing of " - OpenGL" as enabled output plugins if OpenGL & GLU but not GLUT is detected.
2008-03-30Release.xine-lib-1_1_11_1-release1.1.11.1Darren Salt
2008-03-18Move ffmpeg plugin code into src/combined/ffmpeg & adapt for current ffmpeg.Darren Salt
The source remains compilable with older ffmpeg, whether internal or external. --HG-- rename : src/libffmpeg/Makefile.am => src/combined/ffmpeg/Makefile.am rename : src/libffmpeg/ff_audio_decoder.c => src/combined/ffmpeg/ff_audio_decoder.c rename : src/libffmpeg/ff_dvaudio_decoder.c => src/combined/ffmpeg/ff_dvaudio_decoder.c rename : src/libffmpeg/ff_mpeg_parser.c => src/combined/ffmpeg/ff_mpeg_parser.c rename : src/libffmpeg/ff_mpeg_parser.h => src/combined/ffmpeg/ff_mpeg_parser.h rename : src/libffmpeg/ff_video_decoder.c => src/combined/ffmpeg/ff_video_decoder.c rename : src/libffmpeg/ffmpeg_decoder.c => src/combined/ffmpeg/ffmpeg_decoder.c rename : src/libffmpeg/ffmpeg_decoder.h => src/combined/ffmpeg/ffmpeg_decoder.h rename : src/libffmpeg/ffmpeg_encoder.c => src/combined/ffmpeg/ffmpeg_encoder.c
2008-03-04Cset 492257577b4d is an ABI extension: bump the soname. Add changelog entry.Darren Salt
2008-03-02Fix compilation with older external ffmpeg.Darren Salt
HAVE_FFMPEG_AVUTIL_H wasn't being defined, and there were some incorrect checks.
2008-03-01Support the new FFmpeg include layout. Now the same include directive should ↵Diego 'Flameeyes' Pettenò
work for both internal and external FFmpeg (with new layout).
2008-02-11Actually check for tzset.Darren Salt
2008-02-09Fix a configure test which was left out of the arch_x86 changes. (Affects MMX.)Darren Salt
2008-02-08Add automake conditionals ARCH_X86_32 and ARCH_X86_64.Darren Salt
2008-02-07Merge; mark 1.1.11.Darren Salt
2008-02-071.1.10.1, not 1.1.11.Darren Salt
2008-02-07Adjust some comments.Darren Salt
2008-02-07Keep the plugin dir name to x.y.z - x.y.z.a is inappropriate here.Darren Salt
2008-02-06Change from release numbering to ABI numbering for the plugin directory.Darren Salt
This is to avoid having to rebuild external plugins for each new release. --HG-- extra : transplant_source : %C2%3EF%0B%EF%16%40K%FD.%EB9%E07%CB%97GhU%98
2008-01-30Make sure that PKG_CONFIG_PATH is set properly by xine-config.Darren Salt
--HG-- rename : misc/xine-config => misc/xine-config.in