Skip to content

Commit

Permalink
Prep for release 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cbyers0 committed Aug 1, 2024
1 parent e470bef commit 26c9778
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 10 deletions.
17 changes: 14 additions & 3 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,7 @@ infodir
docdir
oldincludedir
includedir
runstatedir
localstatedir
sharedstatedir
sysconfdir
Expand Down Expand Up @@ -819,6 +820,7 @@ datadir='${datarootdir}'
sysconfdir='${prefix}/etc'
sharedstatedir='${prefix}/com'
localstatedir='${prefix}/var'
runstatedir='${localstatedir}/run'
includedir='${prefix}/include'
oldincludedir='/usr/include'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
Expand Down Expand Up @@ -1071,6 +1073,15 @@ do
| -silent | --silent | --silen | --sile | --sil)
silent=yes ;;

-runstatedir | --runstatedir | --runstatedi | --runstated \
| --runstate | --runstat | --runsta | --runst | --runs \
| --run | --ru | --r)
ac_prev=runstatedir ;;
-runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
| --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
| --run=* | --ru=* | --r=*)
runstatedir=$ac_optarg ;;

-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
ac_prev=sbindir ;;
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
Expand Down Expand Up @@ -1208,7 +1219,7 @@ fi
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
datadir sysconfdir sharedstatedir localstatedir includedir \
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
libdir localedir mandir
libdir localedir mandir runstatedir
do
eval ac_val=\$$ac_var
# Remove trailing slashes.
Expand Down Expand Up @@ -2489,9 +2500,9 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
PKG_NAME=nrpe
PKG_VERSION="4.1.0"
PKG_VERSION="4.1.1"
PKG_HOME_URL="http://www.nagios.org/"
PKG_REL_DATE="2022-07-18"
PKG_REL_DATE="2024-08-01"
RPM_RELEASE=1
LANG=C
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ AC_CONFIG_AUX_DIR([build-aux])
AC_PREFIX_DEFAULT(/usr/local/nagios)

PKG_NAME=nrpe
PKG_VERSION="4.1.0"
PKG_VERSION="4.1.1"
PKG_HOME_URL="http://www.nagios.org/"
PKG_REL_DATE="2022-07-18"
PKG_REL_DATE="2024-08-01"
RPM_RELEASE=1

LANG=C
Expand Down
4 changes: 2 additions & 2 deletions include/common.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
# endif
#endif

#define PROGRAM_VERSION "4.1.0"
#define MODIFICATION_DATE "2022-07-18"
#define PROGRAM_VERSION "4.1.1"
#define MODIFICATION_DATE "2024-08-01"

#define OK 0
#define ERROR -1
Expand Down
2 changes: 1 addition & 1 deletion nrpe.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
%define _sysconfdir /etc/nagios

%define name @PACKAGE_NAME@
%define version 4.1.0
%define version 4.1.1
%define release @RPM_RELEASE@
%define nsusr @nrpe_user@
%define nsgrp @nrpe_group@
Expand Down
4 changes: 2 additions & 2 deletions update-version
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ else
fi

# Current version number
CURRENTVERSION=4.1.0
CURRENTVERSION=4.1.1

# Last date
LASTDATE=2022-07-18
LASTDATE=2024-08-01

if [ "x$1" = "x" ]
then
Expand Down

0 comments on commit 26c9778

Please sign in to comment.