summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Klassen <6997477+sklassen@users.noreply.github.com>2020-05-31 07:50:19 +0800
committerGitHub <noreply@github.com>2020-05-30 19:50:19 -0400
commit0be139a8e20d1be0cf63e611159015b8bc6c6e1a (patch)
tree12e18df82713b3dab8fcedb7508cfcc6ddb13968
parent4e64f5b492990b03f7f58a47ec173d048a3f381f (diff)
downloadcouchdb-0be139a8e20d1be0cf63e611159015b8bc6c6e1a.tar.gz
2906 couchjs sm version (#2911)
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
-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 678651fd3..335935ed0 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 678651fd3..ffb6eb40a 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 678651fd3..c5cb83285 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 320584b59..4a5ef36e7 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 ++ "\""}