1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
* Copyright(c) 1995-1998 by Gennady B. Sorokopud (gena@NetVision.net.il)
*
* This software can be freely redistributed and modified for
* non-commercial purposes as long as above copyright
* message and this permission notice appear in all
* copies of distributed source code and included as separate file
* in binary distribution.
*
* Any commercial use of this software requires author's permission.
*
* This software is provided "as is" without expressed or implied
* warranty of any kind.
* Under no circumstances is the author responsible for the proper
* functioning of this software, nor does the author assume any
* responsibility for damages incurred with its use.
*
*/
/* $Id: version.src,v 1.7 1999/12/05 06:06:16 xfmail Exp $
*/
#include <config.h>
#define VERSION "1.4.4"
#define DEBUGVERSION ""
#define XFDATE "@XFDATE@"
#define XFCOMPBY "@XFCOMPBY@"
#define XFHOST "@XFHOST@"
#define COMPILED "@XFDATE@ by @XFCOMPBY@@@XFHOST@"
#ifdef __FreeBSD__
#define XF_OS "FreeBSD"
#endif
#ifdef __NetBSD__
#define XF_OS "NetBSD"
#endif
#ifdef __linux__
#define XF_OS "Linux"
#endif
#if defined(sun) && !defined(SVR4)
#define XF_OS "SunOS"
#endif
#if defined(sun) && defined(SVR4)
#define XF_OS "Solaris"
#endif
#ifdef hpux
#define XF_OS "HPUX"
#endif
#ifdef _AIX
#define XF_OS "AIX"
#endif
#ifdef sgi
#define XF_OS "IRIX"
#endif
#ifdef __osf__
#define XF_OS "OSF1"
#endif
#if defined(SVR4) && !defined(DGUX) && !defined(XF_OS)
#define XF_OS "SVR4"
#endif
#ifdef UNIXWARE
#define XF_OS "UnixWare"
#endif
#ifdef BSDI
#define XF_OS "BSDI"
#endif
#ifdef DGUX
#define XF_OS "DGUX"
#endif
#ifdef __EMX__
#define XF_OS "OS/2 with EMX"
#endif
#ifdef SCO
#define XF_OS "SCO"
#endif
#ifndef XF_OS
#define XF_OS "@XFOS@ (unknown)"
#endif
|