"Fossies" - the Fresh Open Source Software Archive

Member "tin-2.6.2/pcre/version.sh" (23 Aug 2021, 395 Bytes) of package /linux/misc/tin-2.6.2.tar.xz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 #! /bin/sh
    2 #
    3 # Provide the current PCRE version information. Do not use numbers
    4 # with leading zeros for the minor version, as they end up in a C
    5 # macro, and may be treated as octal constants. Stick to single
    6 # digits for minor numbers less than 10. There are unlikely to be
    7 # that many releases anyway.
    8 
    9 PCRE_MAJOR=7
   10 PCRE_MINOR=0
   11 PCRE_DATE=18-Dec-2006
   12 PCRE_VERSION=${PCRE_MAJOR}.${PCRE_MINOR}