search for: __mwerks__

Displaying 8 results from an estimated 8 matches for "__mwerks__".

2002 Apr 11
3
getting OpenSSH/OpenSSL to utilize /dev/random
I've installed Sun's SUNWski package on Solaris 8 (32-bit) that provides a /dev/random interface. It appears to as cat'ing it gives me a bunch of well, random data. However, when I ran my configure, it gives me the WARNING.RND message to the effect that I'm using the built-in. I've seen allusions on this list to building openssl with to get random support, so I rebuilt it
2000 Aug 14
2
macOS9 patches committed
I finally got around to committing Chris Hanson's MacOS9 patches. Just though you should know. Monty --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/
2006 Oct 09
1
Vorbis primitive API examples (LONG)
...n tremor. */ #include <stdio.h> #include <stdlib.h> #include <math.h> #include "ivorbiscodec.h" #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */ #include <io.h> #include <fcntl.h> #endif #if defined(__MACOS__) && defined(__MWERKS__) #include <console.h> /* CodeWarrior's Mac "command-line" support */ #endif #define dprintf(...) fprintf(stderr, __VA_ARGS__) #define BCHUNKSIZE 8192 static long bytesConsumed = 0; // FIXME: This is one of the places that can throw errors int grabData(ogg_sync_state *oy...
2002 Aug 06
0
Getting a GUI to work with Vorbis code
...t; #include <stdlib.h> #include <math.h> #include <vorbis/codec.h> /* NB vorbisfile.h not included - GK */ #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */ #include <io.h> #include <fcntl.h> #endif #if defined(macintosh) && defined(__MWERKS__) #include <console.h> /* CodeWarrior's Mac "command-line" support */ #endif ogg_int16_t convbuffer[4096]; /* take 8k out of the data segment, not the stack */ int convsize=4096; <p>//************************************************************************** * <p...
2015 Jun 03
5
[PATCH 1/1] Updated opus_types.h to correctly support 8 and 64 bit types.
...char opus_int8; + typedef unsigned char opus_uint8; typedef short opus_int16; typedef unsigned short opus_uint16; typedef int opus_int32; typedef unsigned int opus_uint32; + typedef long long opus_int64; + typedef unsigned long long opus_uint64; # elif defined(__MWERKS__) - typedef int opus_int32; - typedef unsigned int opus_uint32; + typedef char opus_int8; + typedef unsigned char opus_uint8; typedef short opus_int16; typedef unsigned short opus_uint16; + typedef int opus_int32; + typedef unsigned int opus_uint32; + typedef...
2002 Jan 30
1
Patch: update zlib/* to 1.1.3
.../* Allow compilation with ANSI keywords only enabled */ void _Cdecl farfree( void *block ); @@ -115,13 +115,12 @@ #if defined(MACOS) || defined(TARGET_OS_MAC) # define OS_CODE 0x07 -# ifndef fdopen -# define fdopen(fd,mode) NULL /* No fdopen() */ -# endif -#endif -#if defined(__MWERKS__) && !defined(fdopen) -# if __dest_os != __be_os && __dest_os != __win32_os -# define fdopen(fd,mode) NULL +# if defined(__MWERKS__) && __dest_os != __be_os && __dest_os != __win32_os +# include <unix.h> /* for fdopen */ +# else +# ifndef fdopen +#...
2005 May 25
3
Speex on TI C6x, Problem with TI C5x Patch
...ef _G_uint16_t spx_uint16_t; # elif defined(__MINGW32__) typedef short spx_int16_t; typedef unsigned short spx_uint16_t; typedef int spx_int32_t; typedef unsigned int spx_uint32_t; typedef long long spx_int64_t; typedef unsigned long long spx_uint64_t; # elif defined(__MWERKS__) typedef long long spx_int64_t; typedef int spx_int32_t; typedef unsigned int spx_uint32_t; typedef short spx_int16_t; typedef unsigned short spx_uint16_t; # else /* MSVC/Borland */ typedef __int64 spx_int64_t; typedef __int32 spx_int32_t; typedef unsig...
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello, the following patches should get multidisk access working. The syntax accepted is the following: (hdx,y)/path/to/file where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk. the other accepted syntax is using MBR's 32 bits disk signature so for example: (mbr:0x12345678,2)/foo/bar would address