diff --git a/configure.ac b/configure.ac index 16b3c08..77082e5 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ dnl changes are made dnl --- JACK_MAJOR_VERSION=0 JACK_MINOR_VERSION=102 -JACK_MICRO_VERSION=13 +JACK_MICRO_VERSION=14 dnl --- dnl HOWTO: updating the jack protocol version @@ -120,7 +120,7 @@ if test "${libdir}" = '${exec_prefix}/lib'; then fi # system-dependent config.h values -test "x$JACK_THREAD_STACK_TOUCH" = "x" && JACK_THREAD_STACK_TOUCH=1000000 +test "x$JACK_THREAD_STACK_TOUCH" = "x" && JACK_THREAD_STACK_TOUCH=500000 AC_DEFINE_UNQUOTED(JACK_THREAD_STACK_TOUCH, [$JACK_THREAD_STACK_TOUCH], [Guaranteed size of realtime stack]) diff --git a/jackd/jackd.1.in b/jackd/jackd.1.in index 3bd98af..3cf957f 100644 --- a/jackd/jackd.1.in +++ b/jackd/jackd.1.in @@ -56,7 +56,7 @@ variable. It will be "default" if that is not defined. .TP \fB\-p, \-\-port\-max \fI n\fR Set the maximum number of ports the JACK server can manage. -The default value is 128. +The default value is 256. .TP \fB\-R, \-\-realtime\fR .br diff --git a/jackd/jackd.c b/jackd/jackd.c index fcb190b..2229d11 100644 --- a/jackd/jackd.c +++ b/jackd/jackd.c @@ -63,7 +63,7 @@ static int do_mlock = 1; static int temporary = 0; static int verbose = 0; static int client_timeout = 0; /* msecs; if zero, use period size. */ -static unsigned int port_max = 128; +static unsigned int port_max = 256; static int do_unlock = 0; static jack_nframes_t frame_time_offset = 0;