/usr/include/xview/xv_version.h is in xviewg-dev 3.2p1.4-28.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef lint
#ifdef sccs
static char sccsid[] = "@(#)xv_version.h 1.23 93/06/29";
#endif
#endif
/*
* (c) Copyright 1989 Sun Microsystems, Inc. Sun design patents
* pending in the U.S. and foreign countries. See LEGAL NOTICE
* file for terms of the license.
*/
#ifndef xview_xv_version_DEFINED
#define xview_xv_version_DEFINED
/*
* XView version number:
*
* thousands digit signifies major release number
* hundreds digit signifies minor release number
* tens digit signifies dotdot release number
* ones digit signifies patch or specials release number
*
*/
/* For compatibility with old version variables */
#define xv_version_number xview_version
#define xv_version_string xv_version
/* REMIND: this will need to be bumped with each release of XView */
#define XV_VERSION_NUMBER 3200
#define XV_VERSION_STRING "XView Version 3.2 FCS - Patch 01"
/*
* Patch 01 fixes:
* file chooser goto field should not expand links
* Copy and Paste does not work with R5
*/
extern unsigned short xview_version;
extern char *xv_version;
#endif /* ~xview_xv_version_DEFINED */
|