Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / include / hpversion.h
1 /* $XConsortium: hpversion.h /main/5 1996/08/30 15:22:49 drk $ */
2 /* -*-C-*-
3 ****************************************************************
4 */
5 /* The following macro should be invoked once by each of the X11 components
6    to provide standard revision information. */
7 #ifndef lint
8 #define version_tag(FILE_VERSION) \
9 static char _hp_merge_version[] = "@(#)" FILE_VERSION;
10 #else   /* lint */
11 #define version_tag(FILE_VERSION)
12 #endif  /* lint */
13
14 /* Any revision information other than the standard 'hpversion' macro shoud
15    be conditionally compiled using the VERBOSE_REV_INFO constant so that it
16    can be excluded for official X11 releases. To set VERBOSE_REV_INFO, comment
17    out one of the following 2 blocks. */
18
19 /* This block turns on VERBOSE_REV_INFO */
20 /*
21 #ifndef lint
22 #define VERBOSE_REV_INFO  1
23 #else
24 #ifdef VERBOSE_REV_INFO
25 #undef VERBOSE_REV_INFO
26 #endif
27 #endif
28 */
29
30 /* This block turns off VERBOSE_REV_INFO */
31 #ifdef VERBOSE_REV_INFO         
32 #undef VERBOSE_REV_INFO
33 #endif