fluid-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [fluid-dev] Compiling FS - getting errors


From: Graham Goode
Subject: Re: [fluid-dev] Compiling FS - getting errors
Date: Sat, 27 Oct 2012 12:05:51 +0200

Hi,

@Antoine, PortAudio is for Linux, OS-X and Windows... and I have built
fluidsynth for Windows with PortAudio (ASIO/WDM-KS/WASAPI) in the
past.

@Bernd,

I had to create my own definition of 'bzero'

#define bzero(b,len) (memset((b), '\0', (len)), (void) 0);

And I think that this is the unistd.h that I used:

-------------------------

#ifndef _UNISTD_H
#define _UNISTD_H    1

/* This file intended to serve as a drop-in replacement for
 *  unistd.h on Windows
 *  Please add functionality as neeeded
 */

#include <stdlib.h>
#include <io.h>
#include <getopt.h> /* getopt from: http://www.pwilson.net/sample.html. */
#include <process.h> /* for getpid() and the exec..() family */

#define srandom srand
#define random rand

/* Values for the second argument to access.
   These may be OR'd together.  */
#define R_OK    4       /* Test for read permission.  */
#define W_OK    2       /* Test for write permission.  */
//#define   X_OK    1       /* execute permission - unsupported in windows*/
#define F_OK    0       /* Test for existence.  */

#define access _access
#define ftruncate _chsize

#define ssize_t int

#define STDIN_FILENO 0
#define STDOUT_FILENO 1
#define STDERR_FILENO 2
/* should be in some equivalent to <sys/types.h> */
typedef __int8            int8_t;
typedef __int16           int16_t;
typedef __int32           int32_t;
typedef __int64           int64_t;
typedef unsigned __int8   uint8_t;
typedef unsigned __int16  uint16_t;
typedef unsigned __int32  uint32_t;
typedef unsigned __int64  uint64_t;

#endif /* unistd.h  */

_____________________

Hope that helps,
GrahamG



reply via email to

[Prev in Thread] Current Thread [Next in Thread]