~m-grant-prg/swoc/focal

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Mark Grant
  • Date: 2020-05-01 06:41:25 UTC
  • mfrom: (1.1.6)
  • Revision ID: m.grant.prg@gmail.com-20200501064125-7nxermhx0hdb5o6r
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) 2015-2019  Mark Grant                           #
 
4
# Author: Copyright (C) 2015-2020  Mark Grant                           #
5
5
#                                                                       #
6
6
# Released under the GPLv3 only.                                        #
7
7
# SPDX-License-Identifier: GPL-3.0                                      #
148
148
# 06/11/2019    MG      1.2.3   Add enable-distcheckfake option.        #
149
149
#                               Add enable option descriptions in this  #
150
150
#                               file's header.                          #
 
151
# 10/03/2020    MG      1.2.4   Add check for arpa/inet.h for use with  #
 
152
#                               inet_ntop().                            #
151
153
#                                                                       #
152
154
#########################################################################
153
155
 
158
160
#                                       #
159
161
#########################################
160
162
 
161
 
AC_REVISION($Revision: 1.2.3 $)
 
163
AC_REVISION($Revision: 1.2.4 $)
162
164
 
163
165
AC_PREREQ(2.69)
164
166
 
166
168
# The following macros set all top level versioning for this project. All
167
169
# information can be propagated via AC_CONFIG_HEADERS and AC_CONFIG_FILES.
168
170
#
169
 
AC_INIT(Server Wait On Client Package, 1.4.0, m.grant.prg@gmail.com, swoc)
 
171
AC_INIT(Server Wait On Client Package, 1.4.0+rc2, m.grant.prg@gmail.com, swoc)
170
172
 
171
173
AC_MSG_NOTICE(initialisation and setup)
172
174
 
514
516
AC_CHECK_HEADERS(netinet/in.h, [], AC_MSG_ERROR(header not found))
515
517
AC_CHECK_HEADERS(netdb.h, [], AC_MSG_ERROR(header not found))
516
518
AC_CHECK_HEADERS(sys/socket.h, [], AC_MSG_ERROR(header not found))
 
519
AC_CHECK_HEADERS(arpa/inet.h, [], AC_MSG_ERROR(header not found))
517
520
AC_CHECK_HEADERS(sys/stat.h, [], AC_MSG_ERROR(header not found))
518
521
AC_CHECK_HEADERS(sys/types.h, [], AC_MSG_ERROR(header not found))
519
522
AC_CHECK_HEADERS(string.h, [], AC_MSG_ERROR(header not found))