OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:VERSION
(Results
1 - 25
of
40
) sorted by relevancy
1
2
/xsrc/external/mit/MesaLib/dist/bin/
gen_calendar_entries.py
63
VERSION
= _ROOT / '
VERSION
'
101
with
VERSION
.open('r') as f:
102
version
= f.read().rstrip('-devel')
103
major, minor, _ =
version
.split('.')
/xsrc/external/mit/bdftopcf/dist/
config.h
40
/* Define to the full name and
version
of this package. */
49
/* Define to the
version
of this package. */
52
/* Major
version
of this package */
55
/* Minor
version
of this package */
58
/* Patch
version
of this package */
66
/*
Version
number of package */
67
#define
VERSION
"1.1.2"
/xsrc/external/mit/imake/include/
config.h
43
/* Define to the full name and
version
of this package. */
52
/* Define to the
version
of this package. */
55
/* Major
version
of this package */
58
/* Minor
version
of this package */
61
/* Patch
version
of this package */
67
/*
Version
number of package */
68
#define
VERSION
"1.0.10"
/xsrc/external/mit/libXcursor/include/
config.h
50
/* Define to the full name and
version
of this package. */
59
/* Define to the
version
of this package. */
62
/* Major
version
of this package */
65
/* Minor
version
of this package */
68
/* Patch
version
of this package */
76
/*
Version
number of package */
77
#define
VERSION
"1.2.3"
/xsrc/external/mit/xbiff/include/
config.h
46
/* Define to the full name and
version
of this package. */
55
/* Define to the
version
of this package. */
58
/* Major
version
of this package */
61
/* Minor
version
of this package */
64
/* Patch
version
of this package */
70
/*
Version
number of package */
71
#define
VERSION
"1.0.5"
/xsrc/external/mit/xf86-input-elographics/include/
config.h
45
/* Define to the full name and
version
of this package. */
51
/* Define to the
version
of this package. */
54
/* Major
version
of this package */
57
/* Minor
version
of this package */
60
/* Patch
version
of this package */
66
/*
Version
number of package */
67
#define
VERSION
"1.4.4"
/xsrc/external/mit/xf86-input-synaptics/include/
config.h
65
/* Define to the full name and
version
of this package. */
74
/* Define to the
version
of this package. */
77
/* Major
version
of this package */
80
/* Minor
version
of this package */
83
/* Patch
version
of this package */
89
/*
Version
number of package */
90
#define
VERSION
"1.7.1"
/xsrc/external/mit/xf86-input-ws/include/
config.h
45
/* Define to the full name and
version
of this package. */
51
/* Define to the
version
of this package. */
54
/* Major
version
of this package */
57
/* Minor
version
of this package */
60
/* Patch
version
of this package */
66
/*
Version
number of package */
67
#define
VERSION
"1.3.0"
/xsrc/external/mit/xf86-video-glint/include/
config.h
55
/* Define to the full name and
version
of this package. */
64
/* Define to the
version
of this package. */
67
/* Major
version
of this package */
70
/* Minor
version
of this package */
73
/* Patch
version
of this package */
79
/*
Version
number of package */
80
#define
VERSION
"1.2.9"
/xsrc/external/mit/xf86-video-sis/include/
config.h
57
/* Define to the full name and
version
of this package. */
67
/* Define to the
version
of this package. */
70
/* Major
version
of this package */
73
/* Minor
version
of this package */
76
/* Patch
version
of this package */
91
/*
Version
number of package */
92
#define
VERSION
"0.12.0"
/xsrc/external/mit/xf86-video-tseng/include/
config.h
55
/* Define to the full name and
version
of this package. */
61
/* Define to the
version
of this package. */
64
/* Major
version
of this package */
67
/* Minor
version
of this package */
70
/* Patch
version
of this package */
76
/*
Version
number of package */
77
#define
VERSION
"1.2.5"
/xsrc/external/mit/xf86-video-vboxvideo/include/
config.h
54
/* Define to the full name and
version
of this package. */
63
/* Define to the
version
of this package. */
66
/* Major
version
of this package */
69
/* Minor
version
of this package */
72
/* Patch
version
of this package */
78
/*
Version
number of package */
79
#define
VERSION
"1.0.1"
/xsrc/external/mit/xf86-video-wsfb/include/
config.h
51
/* Define to the full name and
version
of this package. */
57
/* Define to the
version
of this package. */
60
/* Major
version
of this package */
63
/* Minor
version
of this package */
66
/* Patch
version
of this package */
72
/*
Version
number of package */
73
#define
VERSION
"0.4.0"
/xsrc/external/mit/xmh/include/
config.h
40
/* Define to the full name and
version
of this package. */
49
/* Define to the
version
of this package. */
52
/* Major
version
of this package */
55
/* Minor
version
of this package */
58
/* Patch
version
of this package */
64
/*
Version
number of package */
65
#define
VERSION
"1.0.5"
/xsrc/external/mit/xprop/include/
config.h
49
/* Define to the full name and
version
of this package. */
58
/* Define to the
version
of this package. */
61
/* Major
version
of this package */
64
/* Minor
version
of this package */
67
/* Patch
version
of this package */
73
/*
Version
number of package */
74
#define
VERSION
"1.2.8"
/xsrc/external/mit/brotli/dist/
setup.py
27
""" Return BROTLI_VERSION string as defined in 'common/
version
.h' file. """
28
version_file_path = os.path.join(CURR_DIR, 'c', 'common', '
version
.h')
29
version
= 0
34
version
= int(m.group(1), 16)
35
if
version
== 0:
37
# Semantic
version
is calculated as (MAJOR << 24) | (MINOR << 12) | PATCH.
38
major =
version
>> 24
39
minor = (
version
>> 12) & 0xFFF
40
patch =
version
& 0xFFF
137
VERSION
= get_version(
283
version
=VERSION,
variable in class:BuildExt
[
all
...]
/xsrc/external/mit/libepoxy/include/
config.h
75
/* Define to the full name and
version
of this package. */
84
/* Define to the
version
of this package. */
87
/* Major
version
of this package */
90
/* Minor
version
of this package */
93
/* Patch
version
of this package */
99
/*
Version
number of package */
100
#define
VERSION
"1.5.4"
/xsrc/external/mit/libpthread-stubs/include/
config.h
92
/* Define to the full name and
version
of this package. */
101
/* Define to the
version
of this package. */
110
/*
Version
number of package */
111
#define
VERSION
"0.3"
/xsrc/external/mit/sessreg/include/
config.h
61
/* Define to the full name and
version
of this package. */
70
/* Define to the
version
of this package. */
73
/* Major
version
of this package */
76
/* Minor
version
of this package */
79
/* Patch
version
of this package */
107
/*
Version
number of package */
108
#define
VERSION
"1.1.4"
/xsrc/external/mit/xdpyinfo/include/
config.h
97
/* Define to the full name and
version
of this package. */
106
/* Define to the
version
of this package. */
109
/* Major
version
of this package */
112
/* Minor
version
of this package */
115
/* Patch
version
of this package */
123
/*
Version
number of package */
124
#define
VERSION
"1.3.4"
/xsrc/external/mit/xf86-video-amdgpu/include/
config.h
90
/* Define to the full name and
version
of this package. */
99
/* Define to the
version
of this package. */
102
/* Major
version
of this package */
105
/* Minor
version
of this package */
108
/* Patch
version
of this package */
120
/*
Version
number of package */
121
#define
VERSION
"23.0.0"
/xsrc/external/mit/xf86-video-ati/include/
config.h
88
/* Define to the full name and
version
of this package. */
97
/* Define to the
version
of this package. */
100
/* Major
version
of this package */
103
/* Minor
version
of this package */
106
/* Patch
version
of this package */
126
/*
Version
number of package */
127
#define
VERSION
"6.14.6"
/xsrc/external/mit/xf86-video-ati-kms/include/
config.h
87
/* Define to the full name and
version
of this package. */
96
/* Define to the
version
of this package. */
99
/* Major
version
of this package */
102
/* Minor
version
of this package */
105
/* Patch
version
of this package */
117
/*
Version
number of package */
118
#define
VERSION
"22.0.0"
/xsrc/external/mit/xf86-video-openchrome/include/
config.h
78
/* Define to the full name and
version
of this package. */
87
/* Define to the
version
of this package. */
96
/*
Version
number of package */
97
#define
VERSION
"0.6.0"
99
/* Major
version
*/
102
/* Minor
version
*/
105
/* Patch
version
*/
/xsrc/external/mit/xf86-video-vmware/include/
config.h
15
/* Has
version
2.4.38 or greater of libdrm */
18
/* Has
version
2.4.74 or greater of libdrm */
21
/* Has
version
2.4.96 or greater of libdrm */
48
/* Has
version
2 of XA */
51
/* Has
version
1.12.0 or greater of the Xserver */
54
/* Has
version
1.1.0 or greater of the Xserver */
57
/* Has
version
1.2.0 or greater of the Xserver */
60
/* Has
version
1.5.0 or greater of the Xserver */
63
/* Has
version
1.7.0 or greater of the Xserver */
81
/* Define to the full name and
version
of this package. *
[
all
...]
Completed in 21 milliseconds
1
2
Indexes created Fri Jul 03 00:25:33 UTC 2026