~ubuntu-branches/ubuntu/saucy/nspr/saucy-updates

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/tests/vercheck.c

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
#include <stdlib.h>
53
53
 
54
54
/*
55
 
 * This release (4.7.4) is backward compatible with the
56
 
 * 4.0.x, 4.1.x, 4.2.x, 4.3.x, 4.4.x, 4.5.x, 4.6.x, 4.7,
57
 
 * 4.7.1, 4.7.2, and 4.7.3 releases.  It, of course, is
58
 
 * compatible with itself.
 
55
 * This release (4.8) is backward compatible with the
 
56
 * 4.0.x, 4.1.x, 4.2.x, 4.3.x, 4.4.x, 4.5.x, 4.6.x, and
 
57
 * 4.7.x releases.  It, of course, is compatible with
 
58
 * itself.
59
59
 */
60
60
static char *compatible_version[] = {
61
61
    "4.0", "4.0.1", "4.1", "4.1.1", "4.1.2", "4.1.3",
63
63
    "4.5", "4.5.1",
64
64
    "4.6", "4.6.1", "4.6.2", "4.6.3", "4.6.4", "4.6.5",
65
65
    "4.6.6", "4.6.7", "4.6.8",
66
 
    "4.7", "4.7.1", "4.7.2", "4.7.3", "4.7.4", PR_VERSION
 
66
    "4.7", "4.7.1", "4.7.2", "4.7.3", PR_VERSION
67
67
};
68
68
 
69
69
/*
78
78
    "3.0", "3.0.1",
79
79
    "3.1", "3.1.1", "3.1.2", "3.1.3",
80
80
    "3.5", "3.5.1",
81
 
    "4.7.9",
82
 
    "4.8", "4.8.1",
 
81
    "4.8.9",
 
82
    "4.9", "4.9.1",
83
83
    "10.0", "11.1", "12.14.20"
84
84
};
85
85
 
86
 
int main()
 
86
int main(int argc, char **argv)
87
87
{
88
88
    int idx;
89
89
    int num_compatible = sizeof(compatible_version) / sizeof(char *);