~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to gui/GraphLib/libsrc/uimxR5/include/version.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* @(#)version.h        17.1 (ESO-IPG) 01/25/02 17:26:06 */
 
2
/*-------------------------------------------------------------------------
 
3
 * $Date: 2003-06-04 14:49:18 $         $Revision: 1.1.1.1 $
 
4
 *------------------------------------------------------------------------
 
5
 *             Copyright (c) 1992, Visual Edge Software Ltd.
 
6
 *
 
7
 * ALL RIGHTS RESERVED.  This notice is  intended  as  a  precaution
 
8
 * against  inadvertent publication, and shall not be deemed to con-
 
9
 * stitute an acknowledgment that publication has  occurred  nor  to
 
10
 * imply  any  waiver  of confidentiality.  The year included in the
 
11
 * notice is the year of the creation of the work.
 
12
 *------------------------------------------------------------------------
 
13
 * This file contains macro definitions used to create SCCS version
 
14
 * control strings.
 
15
 * Note:  must be compiled with an ANSI C compiler.
 
16
 *------------------------------------------------------------------------*/
 
17
#ifndef _UX_VERSION_H_
 
18
#define _UX_VERSION_H_
 
19
 
 
20
/*--- include files ---*/
 
21
 
 
22
/*--- macro symbolic constants ---*/
 
23
 
 
24
#ifndef UXLIBNAME
 
25
#       define UXLIBNAME        ""
 
26
#endif /* UXLIBNAME */
 
27
 
 
28
#ifndef UXEXECNAME
 
29
#       define UXEXECNAME       ""
 
30
#endif /* UXEXECNAME */
 
31
 
 
32
/*--- macro functions ---*/
 
33
 
 
34
/*---------------------------------------------------------------
 
35
 * Version string for executables.
 
36
 *---------------------------------------------------------------*/
 
37
#if !(defined(sun))
 
38
#define M_EXEC_VERSION(a,b) static char *ux_exec_version="@(#)"UX_PRODNAME" ["UX_VERSION"] "PATCH_ID" - "a" "b;
 
39
#else
 
40
#define M_EXEC_VERSION(a,b)
 
41
#endif
 
42
 
 
43
/*---------------------------------------------------------------
 
44
 * Version string for libs.
 
45
 *---------------------------------------------------------------*/
 
46
#if !(defined(sun))
 
47
#define M_LIB_VERSION(a,b) static char *ux_lib_version="@(#)"UX_PRODNAME" ["UX_VERSION"] "PATCH_ID" - "a" "b;
 
48
#else
 
49
#define M_LIB_VERSION(a,b)
 
50
#endif
 
51
 
 
52
/*---------------------------------------------------------------
 
53
 * The libraries and executable created in the overnight makes 
 
54
 * will contain the version strings for all source files by
 
55
 * defining in the top level Makefile LOCAL_VERSION.
 
56
 *---------------------------------------------------------------*/
 
57
#if !(defined(sun))
 
58
#ifdef LOCAL_VERSION
 
59
#  define M_FILE_VERSION(a) static char *ux_file_version="@(#)"UX_PRODNAME" ["UX_VERSION"] "a;
 
60
#else
 
61
#  define M_FILE_VERSION(a) 
 
62
#endif /* LOCAL_VERSION */
 
63
#else /* sun */
 
64
#  define M_FILE_VERSION(a)
 
65
#endif /* sun */
 
66
 
 
67
/*--- types ---*/
 
68
 
 
69
/*--- external functions ---*/
 
70
 
 
71
/*--- external variables ---*/
 
72
 
 
73
#endif /* _UX_VERSION_H_ */
 
74
/*--- end of file ---*/
 
75