summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoan Touzet <wohali@users.noreply.github.com>2020-12-14 18:50:44 -0500
committerGitHub <noreply@github.com>2020-12-14 18:50:44 -0500
commitb98dc4831fb27b0d1a5d28f6c2b5f3e40d52e1c5 (patch)
treeb9116ce496506fcab729cbacecb8152707066d3f
parent15c8243f3ba21bac8c05374293b79813f1461f96 (diff)
downloadcouchdb-b98dc4831fb27b0d1a5d28f6c2b5f3e40d52e1c5.tar.gz
2906 couchjs sm version (#2911) (#3297)
Closes #2906 * Added a suffix to the first line of couchjs with the (static) version number compiled * Update rebar.config.script * In couchjs -h replaced the link to jira with a link to github Co-authored-by: simon.klassen <simon.klassen> Co-authored-by: Jan Lehnardt <jan@apache.org Co-authored-by: Simon Klassen <6997477+sklassen@users.noreply.github.com>
-rw-r--r--src/couch/priv/couch_js/1.8.5/help.h2
-rw-r--r--src/couch/priv/couch_js/60/help.h2
-rw-r--r--src/couch/priv/couch_js/68/help.h2
-rw-r--r--src/couch/rebar.config.script2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/couch/priv/couch_js/1.8.5/help.h b/src/couch/priv/couch_js/1.8.5/help.h
index fa86a1ef6..3a19901f0 100644
--- a/src/couch/priv/couch_js/1.8.5/help.h
+++ b/src/couch/priv/couch_js/1.8.5/help.h
@@ -16,7 +16,7 @@
#include "config.h"
static const char VERSION_TEMPLATE[] =
- "%s - %s\n"
+ "%s - %s (SpiderMonkey 1.8.5)\n"
"\n"
"Licensed under the Apache License, Version 2.0 (the \"License\"); you may "
"not use\n"
diff --git a/src/couch/priv/couch_js/60/help.h b/src/couch/priv/couch_js/60/help.h
index fa86a1ef6..826babbba 100644
--- a/src/couch/priv/couch_js/60/help.h
+++ b/src/couch/priv/couch_js/60/help.h
@@ -16,7 +16,7 @@
#include "config.h"
static const char VERSION_TEMPLATE[] =
- "%s - %s\n"
+ "%s - %s (SpiderMonkey 60)\n"
"\n"
"Licensed under the Apache License, Version 2.0 (the \"License\"); you may "
"not use\n"
diff --git a/src/couch/priv/couch_js/68/help.h b/src/couch/priv/couch_js/68/help.h
index fa86a1ef6..7c7550cc2 100644
--- a/src/couch/priv/couch_js/68/help.h
+++ b/src/couch/priv/couch_js/68/help.h
@@ -16,7 +16,7 @@
#include "config.h"
static const char VERSION_TEMPLATE[] =
- "%s - %s\n"
+ "%s - %s (SpiderMonkey 68)\n"
"\n"
"Licensed under the Apache License, Version 2.0 (the \"License\"); you may "
"not use\n"
diff --git a/src/couch/rebar.config.script b/src/couch/rebar.config.script
index e749e401f..1638db4d1 100644
--- a/src/couch/rebar.config.script
+++ b/src/couch/rebar.config.script
@@ -76,7 +76,7 @@ ConfigH = [
{"JSSCRIPT_TYPE", "JSObject*"},
{"COUCHJS_NAME", "\"" ++ CouchJSName++ "\""},
{"PACKAGE", "\"apache-couchdb\""},
- {"PACKAGE_BUGREPORT", "\"https://issues.apache.org/jira/browse/COUCHDB\""},
+ {"PACKAGE_BUGREPORT", "\"https://github.com/apache/couchdb/issues\""},
{"PACKAGE_NAME", "\"Apache CouchDB\""},
{"PACKAGE_STRING", "\"Apache CouchDB " ++ Version ++ "\""},
{"PACKAGE_VERSION", "\"" ++ Version ++ "\""}