mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
d09907238d
unix/unix.cpp to build, especially when the Makefile does not have it defined. Also, along with this, split the patches out into the customary one-file-per-patch chunks. I'm not ${MAINTAINER}, but nacai does not mind my working on the port :)
41 lines
860 B
Plaintext
41 lines
860 B
Plaintext
diff -ru ../../work/release/port.h ./port.h
|
|
--- ../../work/release/port.h Thu Sep 23 19:56:48 1999
|
|
+++ ./port.h Wed Dec 29 01:54:04 1999
|
|
@@ -56,17 +56,17 @@
|
|
|
|
#ifndef snes9x_types_defined
|
|
#define snes9x_types_defined
|
|
-typedef unsigned char uint8;
|
|
-typedef unsigned short uint16;
|
|
-typedef unsigned long uint32;
|
|
-typedef unsigned char bool8;
|
|
-typedef signed char int8;
|
|
-typedef short int16;
|
|
-typedef int int32;
|
|
+typedef u_int8_t uint8;
|
|
+typedef u_int16_t uint16;
|
|
+typedef u_int32_t uint32;
|
|
+typedef u_int8_t bool8;
|
|
+typedef int8_t int8;
|
|
+typedef int16_t int16;
|
|
+typedef int32_t int32;
|
|
#ifndef _WIN32
|
|
typedef long long int64;
|
|
#else
|
|
-typedef __int64 int64;
|
|
+typedef u_int64_t int64;
|
|
#endif
|
|
#endif
|
|
|
|
@@ -156,6 +156,10 @@
|
|
|
|
#ifdef __linux
|
|
#define TITLE "Snes9X: Linux"
|
|
+#endif
|
|
+
|
|
+#ifdef __FreeBSD__
|
|
+#define TITLE "Snes9X: FreeBSD"
|
|
#endif
|
|
|
|
#ifndef TITLE
|