freebsd-ports/net/vls/files/patch-src-core-common.h
Dirk Meyer 98b9a79877 - update to 0.5.4
- install documentation
- preserve configuration
- honor CFLAGS
- add multimedia in CATEGORIES
- new option WITHOUT_DVD
- Fix build for 64bit
- Fix linker warnings in STABLE
2003-12-28 05:30:05 +00:00

26 lines
593 B
C

--- src/core/common.h.orig Fri Nov 28 22:54:22 2003
+++ src/core/common.h Sat Dec 27 18:47:34 2003
@@ -75,19 +75,23 @@
typedef signed char s8;
typedef signed short s16;
typedef signed int s32;
+#ifndef __FreeBSD__
#ifdef _WIN32
typedef __int64 s64;
#else
typedef signed long long s64;
#endif
+#endif
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
+#ifndef __FreeBSD__
#ifdef _WIN32
typedef unsigned __int64 u64;
#else
typedef unsigned long long u64;
+#endif
#endif
// Byte type