Browse Source

Raise default port number to 1024.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3370 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/1.9.2
sletz 16 years ago
parent
commit
03f536673c
3 changed files with 7 additions and 3 deletions
  1. +4
    -0
      ChangeLog
  2. +1
    -1
      common/JackConstants.h
  3. +2
    -2
      wscript

+ 4
- 0
ChangeLog View File

@@ -23,6 +23,10 @@ Michael Voigt
Jackdmp changes log
---------------------------

2009-03-01 Stephane Letz <letz@grame.fr>
* Raise default port number to 1024.

2009-02-27 Stephane Letz <letz@grame.fr>
* Improve generated gnuplot files for adapting code.


+ 1
- 1
common/JackConstants.h View File

@@ -34,7 +34,7 @@
#define JACK_CLIENT_NAME_SIZE 64

#ifndef PORT_NUM
#define PORT_NUM 512
#define PORT_NUM 1024
#endif

#define DRIVER_PORT_NUM 256


+ 2
- 2
wscript View File

@@ -65,9 +65,9 @@ def set_options(opt):
opt.add_option('--doxygen', action='store_true', default=False, help='Enable build of doxygen documentation')
opt.add_option('--profile', action='store_true', default=False, help='Build with engine profiling')
opt.add_option('--clients', default=64, type="int", dest="clients", help='Maximum number of JACK clients')
opt.add_option('--ports', default=512, type="int", dest="ports", help='Maximum number of ports')
opt.add_option('--ports', default=1024, type="int", dest="ports", help='Maximum number of ports')
opt.add_option('--clients', default=64, type="int", dest="clients", help='Maximum number of JACK clients')
opt.add_option('--ports', default=512, type="int", dest="ports", help='Maximum number of ports')
opt.add_option('--ports', default=1024, type="int", dest="ports", help='Maximum number of ports')
opt.sub_options('dbus')

def configure(conf):


Loading…
Cancel
Save