summaryrefslogtreecommitdiff
path: root/m4
AgeCommit message (Collapse)AuthorFilesLines
2011-07-28build-sys: Check for necessary programs in bootstrap.shMaarten Bosmans1-1/+0
Also use glib-gettextize instead of plain gettextize.
2011-06-26build-sys: Use AX_DEFINE_DIR macro instead of setting AM_CFLAGSMaarten Bosmans1-0/+49
This makes the compiler command line a bit shorter, useful for compiling with make V=1.
2011-06-26build-sys: Use ax_check_flag macros from autoconf archiveMaarten Bosmans2-311/+147
Those macros cover almost all functionality of attributes.m4 that was used, so that file can be removed. The CC_NOUNDEFINED macro is used directly in configure.ac.
2011-06-24build-sys: Update orc.m4 to latest upstream versionMaarten Bosmans1-4/+17
ORCC is now correctly set to orcc on build system instead of host for cross-compiling
2011-06-21build-sys: Use AX_PTHREAD macro from autoconf archiveMaarten Bosmans2-348/+302
2011-06-20build-sys: Use AX_CHECK_DEFINE macro from autoconf archiveMaarten Bosmans2-13/+92
It has no new functionality over the existing macro that is relevant for us, but it is good to have use a macro with a clearly defined upstream.
2011-06-20build-sys: Use AX_TLS macro from autoconf archiveMaarten Bosmans2-17/+76
It has no new functionality over the existing macro that is relevant for us, but it is good to have use a macro with a clearly defined upstream.
2011-06-20build-sys: Move acx_lirc.m4 contents to configure.acMaarten Bosmans1-6/+0
The file is so small, that it is clearer just to do it in the main file.
2010-09-23echo-cancel: orc-ify some bits for optimisationArun Raghavan1-0/+56
This uses Orc to optimise an inner loop in the core NLMS function of the Adrian echo canceller.
2009-06-29Update attributes.m4 file from xine-lib.Diego Elio 'Flameeyes' Pettenò1-3/+56
2009-06-22build-sys: dropo shave support, depend on automake's new silent build ↵Lennart Poettering1-77/+0
support instead
2009-04-24build-system: run make update-shaveLennart Poettering1-0/+4
2009-03-05Make sure to set 'no' on the variable cached.Diego Elio 'Flameeyes' Pettenò1-1/+1
2009-03-02run make update-shaveLennart Poettering1-23/+27
2009-02-24build: shave it!Marc-André Lureau1-0/+69
http://damien.lespiau.name/blog/2009/02/18/shave-making-the-autotools-output-sane/
2008-08-19update gitignoreLennart Poettering1-0/+9
2008-08-08Create a new macro for checking compiler support for TLS.Diego 'Flameeyes' Pettenò1-0/+17
Create a new macro that can be shared between projects to check for __thread support by the compiler. This macro might come useful for xine-lib too so I want to keep it separate for easier importing it over. Name the defined macro SUPPORT_TLS___THREAD to follow the same style as the checks from attributes.m4.
2008-08-08Replace the CFLAGS-checking code with a common macro from xine-lib.Diego 'Flameeyes' Pettenò1-0/+258
Instead of writing custom code to check for cflags checking, import a copy of attributes.m4 from xine-lib's repository and use the CC_CHECK_CFLAGS macro. The advantage lies not only in being able to reduce the custom code in configure.ac, but also in the fact that the CC_CHECK_CFLAGS macro caches the results, making ./configure -C quite faster on second run. Check for the CFLAGS for any compiler and not just GCC, if the compiler does support the flag it is better to u se it anyway, otherwise it will be skipped.
2008-08-08Create an m4 directory for common macros and use it.Diego 'Flameeyes' Pettenò5-0/+394
Split acinclude.m4 in multiple macro files. Let it be known to autoconf and aclocal to use the m4 directory. Ignore macro files copied or linked by libtool and intltool.