diff options
-rw-r--r-- | validate/configure.ac | 8 | ||||
-rw-r--r-- | validate/launcher/config.py.in | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/validate/configure.ac b/validate/configure.ac index 2db82ba..1659ac1 100644 --- a/validate/configure.ac +++ b/validate/configure.ac @@ -5,6 +5,14 @@ dnl releases only do Wall, cvs and prerelease does Werror too AC_INIT(Gst-Validate, 1.5.2.1, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, gst-validate) + +dnl This is the version of the testsuite to use with the current version +dnl of gst-validate. During development it should be "master" +dnl during release cycle it should be the release version (1.6 in the 1.6 +dnl branch) +GST_VALIDATE_TESTSUITE_VERSION="master" +AS_AC_EXPAND(GST_VALIDATE_TESTSUITE_VERSION, $GST_VALIDATE_TESTSUITE_VERSION) + AG_GST_INIT dnl initialize automake diff --git a/validate/launcher/config.py.in b/validate/launcher/config.py.in index 5773522..5739c6e 100644 --- a/validate/launcher/config.py.in +++ b/validate/launcher/config.py.in @@ -19,3 +19,4 @@ LIBDIR = '@LIBDIR@' DATADIR = '@DATADIR@' +GST_VALIDATE_TESTSUITE_VERSION = '@GST_VALIDATE_TESTSUITE_VERSION@' |