summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* build-sys: bump sonamev0.9.23stable-queueColin Guthrie2011-06-231-1/+1
|
* build-sys: Add echo-cancel dummy MakefileColin Guthrie2011-06-231-0/+1
|
* x11: More XCB fixes.Arnaud Fontaine2011-05-071-1/+1
| | | | | | | | | | Commit 65ef80b fixed building with xcb-util >= 0.3.8, but the reply is never checked (possible SIGSEGV if the reply is NULL) nor freed (memory leak at each call of the functions). Also, remove include and dependencies on xcb-atom, as it was only meaningful for xcb_atom_get() and STRING, and depend instead on xcb >= 1.6 for XCB_ATOM_STRING.
* build-sys: Make --disable-dbus actually work.Colin Guthrie2011-01-111-30/+41
| | | | | | | | | | | | | Previously this argument passed to configure only worked if --disable-hal and --disable-bluez was also passed which wasn't immediately obvious to the untrained compiler. This change simply makes --disable-dbus disable the other two as well and errors out of specific, incompatible --enable/--disable flags are provided. The summary table is also adjusted and intended to try and show the dependency relationship a little.
* build-sys: Mention dbus support in the summaryColin Guthrie2011-01-111-0/+6
|
* build-sys: Put in specific warnings when there is no udev or DBUS supportColin Guthrie2011-01-111-0/+24
| | | | | | | | | | Users have often come to me when their build doesn't work and typically this is when they do not have dev headers for DBUS and udev installed when building. Put in some specific warnings about these optional, but critical, elements. This will likely display this message on platforms where they are not available, so patches welcome to hide them in a semi-intelligent way.
* build-sys: Replace dummy Makefiles with proper Makefile.am'sColin Guthrie2010-12-041-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | This is needed to better support out of tree builds (including distcheck) and to ensure the necessary folders are created in the build tree on configure and also works around an intl-tools bug (https://bugs.launchpad.net/intltool/+bug/605826) The Makefile.am's used are minimal (and in some cases completely blank). At present they do not include anything interesting with the majority of the real work still done by the monolitic src/Makefile.am It may make sense to start splitting out src/Makefile.am into smaller chunks but this commit makes the minimum changes to address the issues that result from using make distcheck and other out of tree builds. Note: This 'breaks' the ability to type make in e.g. the src/modules folder and have all of PA rebuilt accordingly (this is because the static Makefiles previously present just did a "make -C ..") which was purportedly for use in emacs. But I'm sure there will be a better and more robust way to configure emacs to do your builds properly if this behaviour is still desirable.
* volume: Add explicit checks for ARMv6 instructionsArun Raghavan2010-11-281-1/+32
| | | | | | | This ensures that the build does not fail if the ssat and pkhbt instructions are not available (armv5te and below). Fixes: http://www.pulseaudio.org/ticket/790
* build-sys: bump sonameLennart Poettering2010-11-261-1/+1
|
* Add a configure option to change 'udevrulesdir'Arun Raghavan2010-09-211-0/+7
| | | | | | | | | | | This patch serves two purposes: 1) Allows something other than the de-facto standard udev rules dir or /lib/udev/rules.d to be used (the udev build system allows you to customise this) 2) Allows a prefixed, non-root install (right now, the /lib/... path is hard-coded into the build system
* x11: Partially convert to XCB.Colin Guthrie2010-08-151-1/+1
| | | | | | This commit mostly converts the X11 handling to XCB. There are still some uses of XLib to deal with the X11 session handling modules, however all client-side code should now be free of XLib and thus this should fix Bug #799
* core-util: ensure that we chmod only the dir we ourselves createdKees Cook2010-03-041-1/+1
|
* build-sys: add gobject to build dependenciesLennart Poettering2010-02-161-1/+1
| | | | | Since we call g_object_unref() we need to link against gobject in compliance of the new Fedora implicit DSO linking policy.
* bump sonamev0.9.21Lennart Poettering2009-11-231-1/+1
|
* build-sys: bump sonameLennart Poettering2009-11-111-1/+1
|
* build-sys: bump sonamev0.9.19Lennart Poettering2009-09-301-1/+1
|
* build-sys: bump soname for releasev0.9.18Lennart Poettering2009-09-191-1/+1
|
* build-sys: increase library versionLennart Poettering2009-09-111-1/+1
|
* Get rid of liboilWim Taymans2009-08-201-6/+0
| | | | | | | Get rid of the liboil dependency and reimplement the liboil functions with an equivalent C implementation. Note that most of these functions are deprecated in liboil and that none of them had any optimisations. We can further specialize our handrolled versions for some extra speedups.
* database: simple hashmap based database implementationJuho Hämäläinen2009-08-151-2/+21
|
* udev: drop definition of LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGELennart Poettering2009-08-111-2/+0
| | | | | We depend on udev 143 anyway, where this definition is not necessary anymore.
* hal: add stub module that loads module-udev-detect instead of module-hal-detectLennart Poettering2009-08-111-0/+28
| | | | | | | | | This adds module-hal-detect-compat.c which when enabled will be compiled into a module module-hal-detect which simply loads module-udev-detect. The purpose of this is to allow easy upgrading without breaking default.pa. Distributions are recommended to enable this to easy upgrades from HAL versions of PA to udev versions.
* Revert "build-sys: drop libcap checks, since we don't use caps anymore"Lennart Poettering2009-08-101-0/+19
| | | | This reverts commit 9ade13604e98378e68a82b82ba260869714474b4.
* Update the end-of-configuration summary for OSS output/wrapper split.Diego Elio 'Flameeyes' Pettenò2009-08-081-3/+10
|
* Split OSS support in output and wrapper.Diego Elio 'Flameeyes' Pettenò2009-08-081-11/+27
| | | | | | | Since Fedora does not enable OSS output support at all, but still uses padsp, and in Gentoo we could also make use of padsp without OSS output support, split the two things in two parameters, although they both check for sys/soundcard.h once.
* build-sys: drop libcap checks, since we don't use caps anymoreLennart Poettering2009-08-081-19/+0
|
* simple: bump libpulse-simple library revisionv0.9.16-test4Lennart Poettering2009-08-051-1/+1
|
* build-sys: bump binary versionv0.9.16-test3Lennart Poettering2009-07-281-1/+1
|
* Also request Darwin extensions, as they are needed for stuff like NSIG.Diego Elio 'Flameeyes' Pettenò2009-07-171-0/+1
| | | | | Without this definition, non-POSIX interfaces (which are needed) are hidden by the _POSIX_C_SOURCE request (for clock_gettime).
* Request explicitly POSIX.1-2001 for clock_gettime.Diego Elio 'Flameeyes' Pettenò2009-07-171-0/+3
| | | | This might actually call for a rewrite of system extensions handling.
* Check for support of -z nodelete LD flag, don't use it unconditionally.Diego Elio 'Flameeyes' Pettenò2009-07-171-0/+9
| | | | | | | On non-GNU, non-Sun linkers, the -z option is often not understood; make sure that the -z nodelete option is usable before making use of it. Unbreaks build on Mac OS X.
* Remove exploitable LD_BIND_NOW hack (CVE-2009-1894).Diego Elio 'Flameeyes' Pettenò2009-07-161-0/+6
| | | | | | | | Instead of trying to re-execute pulseaudio itself with LD_BIND_NOW set, just find the correct flag for the linker to request immediate bindings (all ELF files support that option), and use that when linking the daemon. Reduce the amount of compiled and executed code as well.
* Check for the library containing the backtrace() function.Diego Elio 'Flameeyes' Pettenò2009-07-041-0/+1
| | | | | | | | | On FreeBSD the backtrace() function as well as the execinfo.h headers are provided by libexecinfo (an optional package). PulseAudio “automagically” identifies execinfo.h and proceeds to use it, but then will fail to link against the library. Thanks to Alexis Ballier for reporting.
* Use the new CC_CHECK_CFLAGS_APPEND macro instead of a manual for.Diego Elio 'Flameeyes' Pettenò2009-06-291-5/+1
|
* Check for and use flags to reject undefined symbols in libraries.Diego Elio 'Flameeyes' Pettenò2009-06-291-0/+5
| | | | | | Make sure that all the PulseAudio modules are built properly without outstanding undefined symbols: if the undefined symbols are found, reject link.
* Make it more clear that PulseAudio needs libtool 2.2.Diego Elio 'Flameeyes' Pettenò2009-06-291-1/+1
| | | | | | The error message was way too generic, as it was very possible that libltdl _is_ in the system but is not found because too old. Disambiguate this by explicitly stating that the version 2 of the library is not found.
* build-sys: properly drop '-' from major/minor/micro stringsLennart Poettering2009-06-231-3/+3
|
* build-sys: use pax tar format to allow longer file namesLennart Poettering2009-06-231-1/+1
|
* builds-sys: work around automake 1.11 borkageLennart Poettering2009-06-231-2/+2
| | | | | | As suggested on: http://lists.gnu.org/archive/html/automake/2009-06/msg00059.html
* build-sys: bump udev revision to pull in new rules filesLennart Poettering2009-06-231-1/+1
|
* build-sys: dropo shave support, depend on automake's new silent build ↵Lennart Poettering2009-06-221-4/+3
| | | | support instead
* mergoLennart Poettering2009-06-191-54/+0
|
* libpulse: implement client side for sink/source port selection commandsLennart Poettering2009-06-171-1/+1
|
* build-sys: bump libsndfile dependencyLennart Poettering2009-06-061-1/+1
|
* Use the _ONCE variation of AC_CHECKs where applicable.Diego Elio 'Flameeyes' Pettenò2009-05-171-19/+19
| | | | | | | | | | | When we're unconditionally looking for a function, or an header file, without particular libraries set, or with found/not-found conditional code, we can save ~1K lines in the final configure script by using the _ONCE variant. This makes sure that for each header of function, the check is done exactly once and never more, reducing the amount of code that has to be generated and executed.
* Don't use == for comparison in tests. Fix build with non-bash shells.Diego Elio 'Flameeyes' Pettenò2009-05-151-5/+5
|
* database: port restore modules to new database APILennart Poettering2009-05-141-3/+71
|
* build: there is no such thing as SHAVE_OUTPUT anymoreMarc-André Lureau2009-04-231-1/+0
|
* build: generate git tarball using git describeMarc-André Lureau2009-04-231-5/+6
|
* bump version for final 0.9.15 releaseLennart Poettering2009-04-141-1/+1
|