~m-grant-prg/agmaint/stretch-trunk

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Mark Grant
  • Date: 2021-03-15 10:38:57 UTC
  • mfrom: (1.1.29)
  • Revision ID: m.grant.prg@gmail.com-20210315103857-fi2cf0v8f52xiz5l
Merge new upstream development release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#########################################################################
2
2
#                                                                       #
3
3
# Script ID: ./configure.ac                                             #
4
 
# Author: Copyright (C) 2014-2020  Mark Grant                           #
 
4
# Author: Copyright (C) 2014-2021  Mark Grant                           #
5
5
#                                                                       #
6
6
# Released under the GPLv3 only.                                        #
7
7
# SPDX-License-Identifier: GPL-3.0                                      #
78
78
#                               substitution.                           #
79
79
#                               Add sysconfdir and pkgdatadir support.  #
80
80
# 14/06/2020    MG      1.1.2   Correct program checks.                 #
 
81
# 14/03/2021    MG      1.1.3   Add wget check.                         #
81
82
#                                                                       #
82
83
#########################################################################
83
84
 
88
89
#                                       #
89
90
#########################################
90
91
 
91
 
AC_REVISION([$Revision: 1.1.2 $])
 
92
AC_REVISION([$Revision: 1.1.3 $])
92
93
 
93
94
AC_PREREQ([2.69])
94
95
 
97
98
# can be used by ac output and / or the sed setup below to substitute bookmarks
98
99
# in source files.
99
100
#
100
 
AC_INIT(apt-get Maintenance Scripts, 1.1.3, m.grant.prg@gmail.com, agmaint)
 
101
AC_INIT(apt-get Maintenance Scripts, 1.1.3+rc2, m.grant.prg@gmail.com, agmaint)
101
102
 
102
103
AC_MSG_NOTICE(initialisation and setup)
103
104
 
220
221
        AC_MSG_WARN(printf not found - needed at run time)
221
222
fi
222
223
 
 
224
AC_CHECK_PROG(WGET, wget, yes, no)
 
225
if test "x$WGET" = "xno" ; then
 
226
        AC_MSG_WARN(wget not found - needed at run time)
 
227
fi
 
228
 
223
229
 
224
230
#################################################
225
231
#                                               #