File: aclocal.m4

package info (click to toggle)
eperl 2.2.14-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,164 kB
  • ctags: 348
  • sloc: ansic: 4,680; sh: 1,425; perl: 551; makefile: 378
file content (35 lines) | stat: -rw-r--r-- 928 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
dnl #
dnl #  aclocal.m4 -- Local M4 functions for GNU autoconf
dnl #  Copyright (c) Ralf S. Engelschall, <rse@engelschall.com>
dnl #
dnl #  NOTICE:
dnl #      all defined macros are named AC_*
dnl #      all defined and used variables are named acl-*
dnl #
dnl
define(AC_CONFIGURE_PART,[dnl
AC_MSG_RESULT()
AC_MSG_RESULT(${TERM_BOLD}$1${TERM_NORM})
])dnl
dnl
dnl ##########################################################
dnl ##
dnl ##  Built Environment
dnl ##
dnl ##########################################################
dnl
define(AC_BUILD_USER,[dnl
AC_MSG_CHECKING(for build user)
build_user="`$shtool echo -n -e %u@%h%d`"
AC_SUBST(build_user)
AC_MSG_RESULT($build_user)
])dnl
define(AC_BUILD_TIME,[dnl
AC_MSG_CHECKING(for build time)
build_time_ctime="`date | sed -e 's/\n$//'`"
build_time_iso="`$shtool echo -n -e '%D-%m-%Y'`"
AC_MSG_RESULT($build_time_iso)
AC_SUBST(build_time_ctime)
AC_SUBST(build_time_iso)
])dnl
dnl