summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-src/netware/get_ver.awk
blob: f533efed88e7a7c8cde0afc6483a0bf0d2a92436 (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
27
28
#!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 "";
}