e72d0441
Merge pull request #68 from smiszym/master by
2015-04-15 21:56:32 +0200
f0ad74ed
Merge pull request #97 from olafhering/master by
2015-04-15 21:54:11 +0200
d0679708
Correct priority management for Windows. by
2015-04-13 12:08:48 +0200
b7354b39
Compiles again on Windows. by
2015-04-13 11:13:31 +0200
11a49a7d
Merge pull request #114 from lilrc/master by
2015-04-12 02:18:43 +0300
e869769b
(refs/pull/114/head)
add the --htmldir option and install HTML docs into it if given by
2015-04-12 00:26:34 +0200
aa118070
fix uninstall with doxygen by moving definition of share_dir and html_install_dir by
2015-04-11 23:54:17 +0200
ad5d803a
do not hardcode version in doxyfile.in, subst it from waf instead by
2015-04-11 23:48:20 +0200
66c37eb9
fix install with doxygen by generating doxyfile from doxyfile.in and letting waf do most of the process by
2015-04-11 23:42:45 +0200
5f85e973
rename the html_source_dir variable to html_build_dir (the directory contains built files, not sources) by
2015-04-11 22:15:34 +0200
55ccbaf5
rename html_docs_*_dir variables to the shorter and unambiguous html_*_dir by
2015-04-11 22:11:49 +0200
df149925
Merge pull request #113 from lilrc/master by
2015-04-11 18:41:27 +0300
47dea47c
More flexible RT priority setup on Windows. by
2015-04-10 21:50:16 +0200
8f83d5f3
Some 'jack_info' messages moved to 'jack_log' messages on Windows. by
2015-04-10 17:41:12 +0200
9b2ad3b0
(refs/pull/113/head)
add a custom check for readline/readline.h that works around the header's stdio.h dependeny by
2015-04-10 17:26:26 +0200
5a59aef9
add the --readline auto option by
2015-04-10 17:11:34 +0200
bac7cc77
add the --sndfile auto option and check sndfile availability with env['SNDFILE'] instead of is_defined('HAVE_SNDFILE') by
2015-04-10 17:02:30 +0200
ea43b15e
use pkg-config to find sndfile (drop explicit LIB_SNDFILE and HAVE_SNDFILE since check_cfg deals with it) by
2015-04-10 16:54:20 +0200
aef035ad
make sndfile dependency optional by
2015-04-10 16:50:48 +0200
7a5793d9
add the --samplerate auto option and use pkg-config to find samplerate (the AutoOption class takes care of defining env['SAMPLERATE'] and HAVE_SAMPLERATE) by
2015-04-10 16:39:39 +0200
94efc64f
use conf.env['SAMPLERATE'] to determine wether samplerate is available instead of conf.is_defined('HAVE_SAMPLERATE') by
2015-04-10 16:28:05 +0200
ad24b255
move check for samplerate.h to before conf.sub_config('common') and remove the duplicate check in common by
2015-04-10 16:21:55 +0200
7f2bc7f0
add the --opus auto option by
2015-04-10 16:16:49 +0200
66cdd357
remove extra and unnecessary celt check in example-clients by
2015-04-10 15:57:02 +0200
170c0d5f
add the --celt auto option and rewrite the celt check using a smaller loop (drop conf.define('HAVE_CELT', ...) since the AutoOption class handles this) by
2015-04-10 15:54:00 +0200
31331f73
(refs/pull/88/merge)
Merge 0fe0d5e719 into 5ed57785df by
2015-04-10 13:14:56 +0000
b0c4633a
make build option --winmme an auto option and use mmsystem.h and windows.h to check if winmme can be built by
2015-04-10 12:40:38 +0200
fcec68f9
make build option --portaudio an auto option by
2015-04-10 12:35:01 +0200
b77fa414
make build option --iio an auto option by
2015-04-10 12:20:39 +0200
5586a5b8
make build option --freebob an auto option by
2015-04-10 12:05:16 +0200
1b27e134
make build option --firewire an auto option by
2015-04-10 11:51:10 +0200
97499df9
make build option --alsa an auto option by
2015-04-10 11:24:15 +0200
61421de4
fix a typo in _configure_error in the AutoOption class by
2015-04-10 11:16:22 +0200
b8b68cad
do not share the private AutoOption lists and results between different instances of the class by
2015-04-10 11:14:23 +0200
bcc742b6
respect the DOXYGEN environment variable when building docs by
2015-04-10 10:47:00 +0200
a31f352e
make the --doxygen option an auto option by
2015-04-10 10:36:49 +0200
e4006fba
in the AutoOption class, make the set_check_hook documentation string more precise by
2015-04-10 10:28:07 +0200
f98fdba3
rename the check_hook function to set_check_hook in the AutoOption class to prevent name clash by
2015-04-10 10:27:02 +0200
6a90ffca
implement build system auto options by
2015-04-10 10:13:44 +0200
5ed57785
Merge pull request #111 from lilrc/master by
2015-04-09 01:08:28 +0300
c412d838
(refs/pull/111/head)
replace WARNING with ERROR in configure messages by
2015-04-08 23:53:54 +0200
8accf653
add mandatory=False to dbus-1 check so that the custom error message is shown if dbus-1 is missing by
2015-04-08 23:51:49 +0200
213f3ba2
drop unnecessary conf.is_defined('HAVE_DBUS_1') since it is the same as conf.check_cfg(package='dbus-1', ...) by
2015-04-08 23:48:48 +0200
f1c308e4
use pkg-config to find expat and drop explicit HAVE_EXPAT and LIB_EXPAT since they are set by check_cfg by
2015-04-08 23:44:14 +0200
ca66dd1c
specify mandatory=False when checking for expat so that the expat error message can be reached if expat is not found by
2015-04-08 23:35:07 +0200
71f0a180
reorder configuration options by
2015-04-08 22:05:37 +0200
421166ca
(refs/pull/110/merge)
Merge cae6fb7630 into 70c920ba69 by
2015-04-03 12:14:29 +0000
cae6fb76
(refs/pull/110/head)
Add a --no-samplerate build option to not build against libsamplerate even if available and use pkg-config to find libsamplerate. by
2015-04-03 13:51:36 +0200
70c920ba
Correct CoreAudio devices aggregation code. by
2015-03-30 11:56:47 +0200
4ea2e204
Merge pull request #107 from KimJeongYeon/master by
2015-03-16 16:46:27 +0100
7676ac7a
(refs/pull/107/head)
eliminate duplicated examples. by
2015-03-16 22:56:58 +0900
e38a2768
Merge pull request #101 from 4c0n/bugfix/fix-status by
2015-02-20 18:39:43 +0100
0b661636
(refs/pull/101/head)
Preserving original status by
2015-02-20 16:35:12 +0100
e4c47090
(refs/pull/97/head)
Correct date/version ordering in jackd1 by
2015-02-02 13:52:52 +0100
668851ef
(refs/pull/89/merge)
Merge 942e430912 into 3225446e98 by
2015-01-20 02:33:39 +0000
3225446e
Merge pull request #92 from x42/master by
2015-01-14 10:54:53 +0100
886a64e0
(refs/pull/92/head)
support [unescaped] double-quotes in jackdrc by
2015-01-13 22:40:14 +0100
81c129c1
Alexandru Costache patch for memory allocation failure. by
2015-01-07 16:56:46 +0100
0fe0d5e7
(refs/pull/88/head)
Use dll names corresponding to the code on Windows by
2014-12-25 16:34:34 +0000
942e4309
(refs/pull/89/head)
reintroduced tools into build process by
2014-12-25 16:34:39 +0100
8f6183ec
untangle global jack tools by
2014-12-25 16:13:11 +0100
042b6aaf
Fix build without portaudio by
2014-12-24 16:31:20 +0000
abad658b
Merge pull request #86 from mseeber/array-to-short-2014-012-14 by
2014-12-18 19:23:12 +0100
f806d263
Merge pull request #87 from mseeber/warning-pointer-target-signedness-2014-12-18 by
2014-12-18 19:22:35 +0100
27535708
(refs/pull/87/head)
fix warning for unsigned/signed pointer target by
2014-12-18 18:54:21 +0100
e1935e63
(refs/pull/86/head)
increase size of array to fit initializer string by
2014-12-15 19:06:29 +0100
7477bc2b
Merge pull request #83 from mseeber/unused-label-warn-1 by
2014-12-05 18:17:55 +0100
f67f7b0f
(refs/pull/83/head)
Add curly brackets by
2014-12-05 16:19:06 +0100
cccecf79
(refs/pull/82/merge)
Merge 1f1478c263 into 9087f53edf by
2014-12-05 15:15:27 +0000
1f1478c2
(refs/pull/82/head)
better error messages by
2014-11-30 18:55:39 +0100
a66fe88a
fix warning about unused label on non win32 build by
2014-11-30 17:40:53 +0100
9087f53e
Merge pull request #79 from mseeber/linebreaks by
2014-11-30 17:11:06 +0200
1122d373
(refs/pull/79/head)
Changed inconsistent lineendings to UNIX format by
2014-11-30 14:42:56 +0100
2cd23353
Improve documentation. by
2014-11-20 16:27:11 +0100
a450cdcc
Allow skipping of audio reservation API by
2014-10-04 16:58:15 +0200
55219a48
Merge pull request #76 from ricardocrudo/master by
2014-10-28 07:33:33 +0100
9e70b86c
(refs/pull/76/head)
including S24_LE/BE formats to linux alsa driver by
2014-10-27 21:09:50 -0200
c2981130
Merge pull request #75 from mseeber/build by
2014-10-16 14:43:17 +0300
d6db80c9
(refs/pull/75/head)
fix bug on building under path with whitespaces by
2014-10-15 22:45:00 +0200
9159e9f8
Merge remote-tracking branch 'upstream/master' by
2014-10-05 14:48:05 +0200
3260d467
Robin Gareus patch for Windows JackRouter. by
2014-10-05 14:46:52 +0200
d3c8e2d8
Fix FTBFS with clang++ by
2014-09-18 18:29:23 +0200
a9a2ad16
Improve net.h documentation(2). by
2014-09-17 12:23:06 +0300
7e9ef34f
Improve net.h documentation. by
2014-09-17 12:09:54 +0300
54ada6e5
Correct NetJack2 SyncSend. by
2014-08-29 13:13:45 +0200
45074567
Correct NetJack2 init code. by
2014-08-28 16:39:19 +0200
a0c47206
(refs/pull/68/head)
Fix indentation by
2014-07-27 10:11:29 +0200
ab603e43
Fix indentation by
2014-07-27 10:07:26 +0200
ce825c6a
Version 1.9.11 started. by
2014-07-20 15:58:51 +0200
3eb0ae6a
(tag: v1.9.10)
Update changelog. by
2014-07-19 15:34:15 +0200
d5973baf
Merge pull request #67 from Igevorse/jack_transport_reposition_fix by
2014-07-06 16:08:31 +0200
4e8101eb
(refs/pull/67/head)
jack_transport_reposition linkage fix by
2014-07-06 18:08:17 +0500
a48fea3c
Correct JackWinMMEDriver and JackALSARawMidiDriver creation. by
2014-07-03 16:48:09 +0200
e24717e3
README updated. by
2014-07-03 14:49:01 +0200
16c810d6
Merge pull request #66 from KimJeongYeon/master by
2014-06-19 17:15:45 +0200
695bbaeb
(refs/pull/66/head)
up-to-date jack2_android from OSRC(SM-G9008W_CHN). by
2014-06-19 22:45:22 +0900
97e0e80b
Merge pull request #65 from falkTX/master by
2014-06-08 15:53:21 +0200
5fb7e2a1
(refs/pull/65/head)
Fix jack_port_uuid by
2014-06-08 14:50:13 +0100
eb860f55
Merge pull request #64 from mojofunk/fixmingw by
2014-06-06 15:37:05 +0200
9e415ea8
(refs/pull/64/head)
Add missing version of windows wscript file by
2014-06-06 22:51:25 +1000