Use Gnulib's `getaddrinfo' module.
[bpt/guile.git] / m4 / autobuild.m4
CommitLineData
ac47b09a 1# autobuild.m4 serial 7
61cd9dc9
LC
2dnl Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
3dnl Inc.
ac47b09a
LC
4dnl This file is free software; the Free Software Foundation
5dnl gives unlimited permission to copy and/or distribute it,
6dnl with or without modifications, as long as this notice is preserved.
7
8dnl From Simon Josefsson
9
10# Usage: AB_INIT([MODE]).
11AC_DEFUN([AB_INIT],
12[
13 AC_REQUIRE([AC_CANONICAL_BUILD])
14 AC_REQUIRE([AC_CANONICAL_HOST])
15
16 if test -z "$AB_PACKAGE"; then
17 AB_PACKAGE=${PACKAGE_NAME:-$PACKAGE}
18 fi
19 AC_MSG_NOTICE([autobuild project... $AB_PACKAGE])
20
21 if test -z "$AB_VERSION"; then
22 AB_VERSION=${PACKAGE_VERSION:-$VERSION}
23 fi
24 AC_MSG_NOTICE([autobuild revision... $AB_VERSION])
25
26 hostname=`hostname`
27 if test "$hostname"; then
28 AC_MSG_NOTICE([autobuild hostname... $hostname])
29 fi
30
31 ifelse([$1],[],,[AC_MSG_NOTICE([autobuild mode... $1])])
32
33 date=`TZ=UTC0 date +%Y%m%dT%H%M%SZ`
34 if test "$?" != 0; then
35 date=`date`
36 fi
37 if test "$date"; then
38 AC_MSG_NOTICE([autobuild timestamp... $date])
39 fi
40])