summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Version 0.1.130.1.13Olivier Crête2015-04-281-3/+3
|
* Version 0.1.12.1Olivier Crête2015-04-221-2/+2
|
* Version 0.1.120.1.12Olivier Crête2015-04-221-3/+3
|
* Version 0.1.11.1Olivier Crête2015-04-201-2/+2
|
* Version 0.1.110.1.11Olivier Crête2015-04-201-5/+5
|
* configure.ac: Fix error when GUPnP is requested and not availableJose Antonio Santos Cadenas2015-04-201-1/+1
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=90010
* configure: On Solaris, library is libnsl, not libnlsOlivier Crête2015-03-271-1/+1
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=73042
* configure: Disable static by default, and add win32 DLL supportNirbheek Chauhan2015-03-271-1/+2
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=85962
* nicesink: Add test for buffer list supportJose Antonio Santos Cadenas2015-03-271-1/+14
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=89609
* Version 0.1.10.1Olivier Crête2015-01-281-2/+2
|
* Version 0.1.100.1.10Olivier Crête2015-01-281-2/+2
|
* configure: Add "subdir-objects" automake optionOlivier Crête2015-01-281-1/+1
| | | | | Automake now warns that it will be the only behavior in the future. So quell the warning by adding it.
* Version 0.1.9.1Olivier Crête2015-01-281-2/+2
|
* Version 0.1.90.1.9Olivier Crête2015-01-281-3/+3
|
* docs: Use gtk-doc no-tmpl modePhilip Withnall2015-01-021-1/+1
| | | | | | | | | Templated mode has been deprecated for a long time and will be removed in future versions of gtk-doc. Switch to no-tmpl mode for faster documentation builds and future-proofness. This does not bump our gtk-doc dependency, since gtk-doc 1.9 supported no-tmpl mode.
* Add ability to build static GST pluginsNicolas Dufresne2014-11-051-0/+18
| | | | | | Note that this only works for 1.0 plugin. https://bugs.freedesktop.org/show_bug.cgi?id=85929
* Version 0.1.8.1Olivier Crête2014-10-091-2/+2
|
* Version 0.1.80.1.8Olivier Crête2014-10-091-5/+5
|
* agent: Avoid leaking UPnP mappings between streamsOlivier Crête2014-10-091-1/+1
| | | | Clean up the UPnP mappings of each stream when closing it
* agent: Print libnice debug messages when setting G_MESSAGES_DEBUG appropriatelyOlivier Crête2014-07-241-0/+1
| | | | | | | This way all the debug can be controlled from one place. Also disable -Wsuggest-attribute=format with -Werror because gcc 4.8.3 erroneously suggested it.
* agent: Use AC_CHECK_HEADERS to check for netdb.hPhilip Withnall2014-07-161-1/+1
| | | | Rather than assuming it is not available on Windows.
* build: Add GObject introspection supportPhilip Withnall2014-07-071-2/+6
| | | | | | | | | | | | | This bumps our autoconf requirement to 2.62 (from 2.59c) and disables automake portability warnings. It does not introduce a hard dependency on gobject-introspection; but if available, it requires version 1.30.0. Support can be enabled with --enable-introspection, and is required to make distcheck. The generated introspection file has not been checked thoroughly, and may expose internal symbols. A lot of new annotations are needed to make many of the symbols usable.
* nice: Expose UPnP support in nice.pc.inPhilip Withnall2014-07-071-0/+2
| | | | | | | It might be useful for dependent packages to check whether libnice was compiled with UPnP support, so expose that as a variable in the pkg-config file, set to ‘true’ if supported, and the empty string otherwise.
* nice: Auto-substitute pkg-config requirements in nice.pc.inPhilip Withnall2014-07-071-7/+22
| | | | | | The requirements in the pkg-config file were outdated and incomplete. It makes a lot more sense to automatically substitute them in from the checks in configure.ac.
* Require automake 1.12Olivier Crête2014-06-271-6/+3
| | | | We use macros from 1.12 anyway.
* Version 0.1.7.1Olivier Crête2014-05-051-2/+2
|
* Version 0.1.70.1.7Olivier Crête2014-05-051-3/+3
|
* Version 0.1.6.1Olivier Crête2014-04-281-2/+2
|
* Version 0.1.60.1.6Olivier Crête2014-04-281-4/+4
|
* build: Check for [s]size_t before redefining them on MinGWPhilip Withnall2014-04-031-0/+1
| | | | | | MinGW defines size_t and ssize_t for us, so we should not unconditionally redefine them in stun/win32_common.h. Add an AC_CHECK_TYPES configure check to avoid this.
* Version 0.1.5.1Olivier Crête2014-03-061-1/+1
|
* Version 0.1.50.1.5Olivier Crête2014-03-061-3/+3
|
* configure: Remove -Wunsafe-loop-optimizations, it causes false warningsOlivier Crête2014-03-061-1/+0
|
* agent: Fix compiler warningsOlivier Crête2014-02-131-1/+0
|
* configure: Add newline ignoringOlivier Crête2014-02-051-2/+2
| | | | Otherwise it ran the "yes" command
* configure: Move -Werror=unsafe-loop-optimizations to the maximum levelOlivier Crête2014-02-041-1/+1
| | | | It tends to cause false warnings
* agent: Only change pseudotcp clock if the new timeout is soonerOlivier Crête2014-01-311-1/+1
| | | | | Destroying and creating GSources is expensive, so also don't destroy and re-create if possible, instead lets use the new g_source_set_ready_time()
* build: Add various compiler warnings to --enable-compile-warningsPhilip Withnall2014-01-311-15/+45
| | | | | | | | | | Add various compiler warnings to the different levels of --enable-compile-warnings. No particular scheme has been used to assign different warnings to different levels, other than that more critical ones are typically enabled at lower levels upwards. All code in libnice except the tests currently compiles with --enable-compile-warnings=error.
* build: Don’t unconditionally enable -Werror for non-release buildsPhilip Withnall2014-01-071-18/+35
| | | | | | | | | | Do not unconditionally enable -Werror, since that breaks the build for people who have stricter compilation warnings enabled. Instead, add an --enable-compile-warnings configure flag which enables -Werror when passed as --enable-compile-warnings=error. This mimics the flag in gnome-common, for consistency. But we enable errors by default on non-released versions.
* configure: Verify that the compiler understands warning cflagsOlivier Crête2013-12-261-0/+19
| | | | Older compilers don't understand all of the flags
* build: Update AC_CONFIG_HEADERS instead of AC_CONFIG_HEADERPhilip Withnall2013-12-181-1/+1
| | | | The latter is deprecated.
* Add special case to make it compile on SolarisTim Mooney2013-10-291-0/+11
|
* Silence aclocal warning by changing the order of the macrosOlivier Crête2013-10-291-1/+1
|
* build: Update configure.ac according to autoupdatePhilip Withnall2013-10-291-7/+7
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=70965
* build: Add AM_PROG_AR to configure.acPhilip Withnall2013-10-291-0/+1
| | | | | | | This shuts up an automake warning about needing it when using a non-POSIX archiver. https://bugs.freedesktop.org/show_bug.cgi?id=70965
* Set the minimum GLib version to 2.30 to disable deprecated warnings on newer ↵Rohan Garg2013-04-031-5/+8
| | | | | | GLib versions and make sure the maximum allowed GLib version is 2.32 Also actually require 2.30
* version 0.1.4.1Youness Alaoui2013-02-221-2/+2
|
* Version 0.1.40.1.4Youness Alaoui2013-02-221-4/+4
|
* Add a simple example to showcase the API thanks to Bryce AllenYouness Alaoui2013-02-011-0/+1
|
* version 0.1.3.1Olivier Crête2012-09-141-2/+2
|