mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 20:43:02 +01:00
152 lines
4.4 KiB
C
152 lines
4.4 KiB
C
/*
|
|
* PROGRAM: JRD Access Method
|
|
* MODULE: license.h
|
|
* DESCRIPTION: Internal licensing parameters
|
|
*
|
|
* The contents of this file are subject to the Interbase Public
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
*
|
|
* Software distributed under the License is distributed on an
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
* or implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code was created by Inprise Corporation
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
* Copyright (C) Inprise Corporation.
|
|
*
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________.
|
|
*
|
|
* Revision 1.5 2000/12/08 16:18:21 fsg
|
|
* Preliminary changes to get IB_BUILD_NO automatically
|
|
* increased on commits.
|
|
*
|
|
* setup_dirs will create 'jrd/build_no.h' by a call to
|
|
* a slightly modified 'builds_win32/original/build_no.ksh'
|
|
* that gets IB_BUILD_NO from 'this_build', that hopefully
|
|
* will be increased automatically in the near future :-)
|
|
*
|
|
* I have changed 'jrd/iblicense.h' to use IB_BUILD_TYPE
|
|
* from 'jrd/build_no.h'.
|
|
* So all changes to version numbers, build types etc. can
|
|
* now be done in 'builds_win32/original/build_no.ksh'.
|
|
*
|
|
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "MAC" port
|
|
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "EPSON" port
|
|
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "XENIX" port
|
|
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "DELTA" port
|
|
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "IMP" port
|
|
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "NCR3000" port
|
|
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "M88K" port
|
|
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "HP9000 s300" port
|
|
*
|
|
* 2002.10.27 Sean Leyne - Completed removal of obsolete "DG_X86" port
|
|
* 2002.10.27 Sean Leyne - Code Cleanup, removed obsolete "UNIXWARE" port
|
|
* 2002.10.27 Sean Leyne - Code Cleanup, removed obsolete "Ultrix" port
|
|
* 2002.10.27 Sean Leyne - Code Cleanup, removed obsolete "Ultrix/MIPS" port
|
|
* 2002.10.27 Sean Leyne - Code Cleanup, removed obsolete "ALPHA_NT" port
|
|
*
|
|
* 2002.10.28 Sean Leyne - Completed removal of obsolete "DGUX" port
|
|
* 2002.10.28 Sean Leyne - Code cleanup, removed obsolete "DecOSF" port
|
|
* 2002.10.28 Sean Leyne - Code cleanup, removed obsolete "SGI" port
|
|
* 2002.10.28 Sean Leyne - Completed removal of obsolete "HP700" port
|
|
*
|
|
* 2002.10.29 Sean Leyne - Removed obsolete "Netware" port
|
|
*
|
|
* 2002.10.30 Sean Leyne - Removed support for obsolete "PC_PLATFORM" define
|
|
* 2002.10.30 Sean Leyne - Code Cleanup, removed obsolete "SUN3_3" port
|
|
*
|
|
*/
|
|
|
|
#ifndef JRD_LICENSE_H
|
|
#define JRD_LICENSE_H
|
|
|
|
#include "../jrd/build_no.h"
|
|
#include "../jrd/isc_version.h"
|
|
|
|
#ifdef HPUX
|
|
#define FB_PLATFORM "HU"
|
|
#endif
|
|
|
|
#ifdef __sun
|
|
#ifdef sparc
|
|
#ifdef SOLARIS
|
|
#define FB_PLATFORM "SO"
|
|
#else
|
|
#define FB_PLATFORM "S4"
|
|
#endif // Solaris
|
|
#endif // Sparc
|
|
#ifdef i386
|
|
#define FB_PLATFORM "SI"
|
|
#endif // i386
|
|
#ifdef AMD64
|
|
#define FB_PLATFORM "SI"
|
|
#endif
|
|
#ifndef FB_PLATFORM
|
|
#define FB_PLATFORM "S3"
|
|
#endif
|
|
#endif // __sun
|
|
|
|
#ifdef AIX
|
|
#ifdef AIX_PPC
|
|
#define FB_PLATFORM "PA"
|
|
#else
|
|
#define FB_PLATFORM "IA"
|
|
#endif
|
|
#endif // aix
|
|
|
|
#ifdef WIN_NT
|
|
#ifdef i386
|
|
#define FB_PLATFORM "WI"
|
|
#else
|
|
#define FB_PLATFORM "NP"
|
|
#endif // i386
|
|
#endif
|
|
|
|
#ifdef LINUX
|
|
#if defined(__loongarch__)
|
|
#define FB_PLATFORM "LL" // Linux/LoongArch
|
|
#else
|
|
#define FB_PLATFORM "LI" // Linux on Intel
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef FREEBSD
|
|
#define FB_PLATFORM "FB" // FreeBSD/i386
|
|
#endif
|
|
|
|
#ifdef NETBSD
|
|
#define FB_PLATFORM "NB" // NetBSD
|
|
#endif
|
|
|
|
#ifdef DARWIN
|
|
#if defined(i386) || defined(__x86_64__)
|
|
#define FB_PLATFORM "UI" // Darwin/Intel
|
|
#endif
|
|
#if defined(__ppc__) || defined(__ppc64__)
|
|
#define FB_PLATFORM "UP" // Darwin/PowerPC
|
|
#endif
|
|
#if defined(ARM) || defined(__aarch64__)
|
|
#define FB_PLATFORM "UA" // Darwin/ARM
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef DEV_BUILD
|
|
#define FB_DEV_VERSION "-dev"
|
|
#else
|
|
#define FB_DEV_VERSION ""
|
|
#endif
|
|
|
|
#ifndef FB_VERSION
|
|
#define FB_VERSION FB_PLATFORM "-" FB_BUILD_TYPE FB_MAJOR_VER "." FB_MINOR_VER "." FB_REV_NO "." FB_BUILD_NO FB_DEV_VERSION " " FB_BUILD_SUFFIX
|
|
#endif
|
|
|
|
#ifndef ISC_VERSION
|
|
#define ISC_VERSION FB_PLATFORM "-" FB_BUILD_TYPE ISC_MAJOR_VER "." ISC_MINOR_VER "." FB_REV_NO "." FB_BUILD_NO " " FB_BUILD_SUFFIX
|
|
#endif
|
|
|
|
#endif // JRD_LICENSE_H
|