summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2019-04-20 14:27:00 -0400
committerChet Ramey <chet.ramey@case.edu>2019-04-20 14:27:00 -0400
commitdfd2cc6ac5558e252af0a7cb829a9629bf782e17 (patch)
treed6e409d5d57ee0a536f54972d9efb5c31ee4aece
parent41f5420db7a911fb0833be693205f4db41f05434 (diff)
downloadbash-dfd2cc6ac5558e252af0a7cb829a9629bf782e17.tar.gz
Bash-5.0 patch 6: allow building with SYSLOG_HISTORY defined without defining SYSLOG_SHOPT
-rw-r--r--builtins/shopt.def2
-rw-r--r--patchlevel.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/builtins/shopt.def b/builtins/shopt.def
index f6dc6f97..1c485361 100644
--- a/builtins/shopt.def
+++ b/builtins/shopt.def
@@ -122,7 +122,7 @@ extern int assoc_expand_once;
extern int array_expand_once;
#endif
-#if defined (SYSLOG_HISTORY) && defined (SYSLOG_SHOPT)
+#if defined (SYSLOG_HISTORY)
extern int syslog_history;
#endif
diff --git a/patchlevel.h b/patchlevel.h
index 1bc098b8..14bff9fc 100644
--- a/patchlevel.h
+++ b/patchlevel.h
@@ -25,6 +25,6 @@
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
looks for to find the patch level (for the sccs version string). */
-#define PATCHLEVEL 5
+#define PATCHLEVEL 6
#endif /* _PATCHLEVEL_H_ */