Change libraries name on Windows, update installer.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2902 0c269be4-1314-0410-8aa9-9f06e86f4224
This commit is contained in:
sletz 2008-09-09 15:14:47 +00:00 committed by Filipe Coelho
parent bf75279198
commit 6b43c40944
1 changed files with 57 additions and 60 deletions

View File

@ -25,26 +25,23 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include <windows.h>
#ifdef __MINGW32__
#include <stdint.h>
#include <stdint.h>
#include <sys/types.h>
#else
#define __inline__ inline
#define vsnprintf _vsnprintf
#define __inline__ inline
#define vsnprintf _vsnprintf
#define snprintf _snprintf
typedef char int8_t;
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef long int32_t;
typedef unsigned long uint32_t;
typedef LONGLONG int64_t;
typedef ULONGLONG uint64_t;
typedef char int8_t;
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef long int32_t;
typedef unsigned long uint32_t;
typedef LONGLONG int64_t;
typedef ULONGLONG uint64_t;
#endif
typedef HANDLE pthread_t;
typedef HANDLE pthread_t;
typedef int64_t _jack_time_t;
#endif // WIN32 */
#if defined(__APPLE__) || defined(__linux__)