8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 06:03:02 +01:00
This commit is contained in:
asfernandes 2008-01-20 23:51:21 +00:00
parent e7f90eb9a6
commit 61b51855a8
3 changed files with 6 additions and 6 deletions

View File

@ -122,12 +122,12 @@
#ifdef DARWIN
#if defined(i386) || defined(__x86_64__)
#define FB_PLATFORM "UI" /* Darwin/Intel */
#define FB_PLATFORM "UI" /* Darwin/Intel */
#endif
#endif
#if defined(DARWIN) && defined(_powerpc_)
#if defined(_powerpc_)
#define FB_PLATFORM "UP" /* Darwin/PowerPC */
#endif
#endif // DARWIN
#ifndef FB_VERSION
#define FB_VERSION FB_PLATFORM "-" FB_BUILD_TYPE FB_MAJOR_VER "." FB_MINOR_VER "." FB_REV_NO "." FB_BUILD_NO " " FB_BUILD_SUFFIX

View File

@ -320,7 +320,7 @@ const SSHORT CLASS = CLASS_DARWIN_X64;
#ifdef powerpc
const SSHORT CLASS = CLASS_DARWIN_PPC;
#endif
#endif
#endif // DARWIN
static const char* const SCRATCH = "fb_table_";
static const int MIN_EXTEND_BYTES = 128 * 1024; // 128KB

View File

@ -145,9 +145,9 @@ typedef enum
arch_linux = 36,
arch_freebsd = 37,
arch_netbsd = 38,
arch_darwin_ppc = 39,
arch_darwin_ppc = 39,
arch_winnt_64 = 40,
arch_darwin_64 = 41,
arch_darwin_64 = 41,
arch_max = 42 /* Keep this at the end */
} P_ARCH;