2022-11-22 Fred Gleason <fredg@paravelsystems.com>

* Changed the 'python3-mysql' dependency to 'python3-mysqlclient'
	in the RPM package for RHEL9 and above.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-11-22 14:35:02 -05:00
parent 9dfa9c84eb
commit 3f08f96299
2 changed files with 8 additions and 1 deletions

View File

@@ -23712,3 +23712,6 @@
2022-11-21 Fred Gleason <fredg@paravelsystems.com> 2022-11-21 Fred Gleason <fredg@paravelsystems.com>
* Modified build system to use pkg-config(1) to detect ALSA and * Modified build system to use pkg-config(1) to detect ALSA and
JACK support elements in 'configure'. JACK support elements in 'configure'.
2022-11-22 Fred Gleason <fredg@paravelsystems.com>
* Changed the 'python3-mysql' dependency to 'python3-mysqlclient'
in the RPM package for RHEL9 and above.

View File

@@ -215,7 +215,11 @@ case "$ar_distro_id" in
if test $ar_distro_major -lt 8 ; then if test $ar_distro_major -lt 8 ; then
AC_SUBST(PYPAD_DEPS,"python36 python36-pycurl python36-requests python36-pyserial python36-mysql python36-urllib3") AC_SUBST(PYPAD_DEPS,"python36 python36-pycurl python36-requests python36-pyserial python36-mysql python36-urllib3")
else else
AC_SUBST(PYPAD_DEPS,"python3 python3-pycurl python3-requests python3-pyserial python3-mysql python3-urllib3") if test $ar_distro_major -lt 9 ; then
AC_SUBST(PYPAD_DEPS,"python3 python3-pycurl python3-requests python3-pyserial python3-mysql python3-urllib3")
else
AC_SUBST(PYPAD_DEPS,"python3 python3-pycurl python3-requests python3-pyserial python3-mysqlclient python3-urllib3")
fi
fi fi
AC_SUBST(RIVENDELL_PAM_FILE,"rivendell-rhel.pam") AC_SUBST(RIVENDELL_PAM_FILE,"rivendell-rhel.pam")
;; ;;