Browse Source

Fix for Solaris.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3458 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/v1.9.3
sletz 17 years ago
parent
commit
9f711ac754
2 changed files with 3 additions and 1 deletions
  1. +2
    -0
      example-clients/wscript
  2. +1
    -1
      posix/JackSocket.h

+ 2
- 0
example-clients/wscript View File

@@ -100,6 +100,8 @@ def build(bld):
prog.uselib = 'SNDFILE'
if bld.env['IS_LINUX']:
prog.uselib = 'RT SNDFILE'
if bld.env['IS_SUN']:
prog.uselib = 'RT SNDFILE'
prog.uselib_local = 'clientlib'
prog.target = 'jack_rec'



+ 1
- 1
posix/JackSocket.h View File

@@ -20,8 +20,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#ifndef __JackSocket__
#define __JackSocket__

#include <sys/un.h>
#include <sys/types.h>
#include <sys/un.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/time.h>


Loading…
Cancel
Save