Skip to content

Commit addf19b

Browse files
committed
Support Bash 5.3
1 parent 0c7fc59 commit addf19b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
/.python-version
33
/ChangeLog
44
/ChangeLog-spell-corrected
5+
/ChangeLog.orig
56
/Makefile
67
/Makefile.in
78
/aclocal.m4
89
/auto*.log
910
/autom4te.cache
1011
/bashdb
11-
/bashdb-5.*.tar.bz2
12-
/bashdb-5.*.tar.gz
12+
/bashdb-5.*
1313
/bashdb-main.inc
1414
/bashdb-trace
1515
/builtin

configure.ac

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
dnl Process this file with autoconf to produce a configure script.
33

44
# Copyright (C) 2002-2012,
5-
# 2014-2019, 2023-2024 Rocky Bernstein <rocky@gnu.org>
5+
# 2014-2019, 2023-2025 Rocky Bernstein <rocky@gnu.org>
66

77
# This program is free software; you can redistribute it and/or modify
88
# it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@ dnl Process this file with autoconf to produce a configure script.
2121

2222
define(DEBUGGER, bashdb)
2323
define(POSIXSHELL, bash)
24-
define(OK_BASH_VERS, 5.2)
24+
define(OK_BASH_VERS, 5.3)
2525
define(relstatus, 1.2.0)
2626

2727
AC_INIT([bashdb],[OK_BASH_VERS-relstatus],[https://sourceforge.net/p/bashdb/bugs/new/])
@@ -103,12 +103,12 @@ bash_version=`$SH_PROG --version`
103103
[bash_minor=`$SH_PROG -c 'echo ${BASH_VERSINFO[1]}'`]
104104
bash_5_or_greater=no
105105
case "${bash_major}.${bash_minor}" in
106-
'OK_BASH_VERS' | '5.0' | '5.1')
106+
'OK_BASH_VERS')
107107
bash_5_or_greater=yes
108108
;;
109109
*)
110110
AC_MSG_WARN([You have Bash $bash_version installed.])
111-
AC_MSG_ERROR([This package is only known to work with Bash 5.0 or 5.1])
111+
AC_MSG_ERROR([This package is only known to work with Bash 5.3])
112112
;;
113113
esac
114114

0 commit comments

Comments
 (0)