blob: b38f8c4e7e026955bfa8f0312154eb2a1a079c1b (
plain)
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
|
#!awk
# awk script which fetches libgd version number and string from input file
# and writes them to STDOUT. Here you can get an awk version for Win32:
# http://www.gknw.net/development/prgtools/awk.zip
# $Id$
#
BEGIN {
while ((getline < ARGV[1]) > 0) {
if (match ($0, /^GDLIB_MAJOR=([0-9]*)$/)) {
split($1, t, "=");
v_maj = t[2];
}
if (match ($0, /^GDLIB_MINOR=([0-9]*)$/)) {
split($1, t, "=");
v_min = t[2];
}
if (match ($0, /^GDLIB_REVISION=([0-9]*)$/)) {
split($1, t, "=");
v_rev = t[2];
}
}
libgd_ver = v_maj "," v_min "," v_rev;
libgd_ver_str = v_maj "." v_min "." v_rev;
print "LIBGD_VERSION = " libgd_ver "";
print "LIBGD_VERSION_STR = " libgd_ver_str "";
}
|