~m-grant-prg/server-dependency/trunk

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Mark Grant
  • Date: 2019-04-21 09:05:12 UTC
  • mfrom: (1.1.8)
  • Revision ID: m.grant.prg@gmail.com-20190421090512-gy4chomdkt3z3phx
New upstream development release.
Remove bsdutils build-depends as logger is not required during build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
# 28/09/2018    MG      1.0.1   Initial release.                        #
43
43
# 21/04/2019    MG      1.0.2   Remove preceding v from version.        #
44
44
#                               Re-vamp to new standard layout.         #
 
45
# 21/04/2019    MG      1.0.3   Change logger program check to warn.    #
45
46
#                                                                       #
46
47
#########################################################################
47
48
 
52
53
#                                       #
53
54
#########################################
54
55
 
55
 
AC_REVISION([$Revision: 1.0.2 $])
 
56
AC_REVISION([$Revision: 1.0.3 $])
56
57
 
57
58
AC_PREREQ([2.69])
58
59
 
61
62
# can be used by ac output and / or the sed setup below to substitute bookmarks
62
63
# in source files.
63
64
#
64
 
AC_INIT([Dependency On Server At Boot Project], [1.0.4+rc1],
 
65
AC_INIT([Dependency On Server At Boot Project], [1.0.4+rc2],
65
66
        [m.grant.prg@gmail.com], [server-dependency])
66
67
 
67
68
AC_MSG_NOTICE(initialisation and setup)
202
203
 
203
204
AC_CHECK_PROG([LOGGER], [logger], [yes], [no])
204
205
if test "x$LOGGER" = "xno" ; then
205
 
        AC_MSG_ERROR([logger not found])
 
206
        AC_MSG_WARN([logger not found])
206
207
fi
207
208
 
208
209