source: trunk/m4/ax_file_escapes.m4 @ 2112

Last change on this file since 2112 was 2112, checked in by Peter, 14 years ago

Note, this will likely break the Makefile; you need to run autoreconf -m.

Moving maintainer rules to an m4 autoconf macro to make it more
reusable. The macro creates an automake fragment file, which is
included in the top Makefile.am. The macro also searches a tool to
calculate md5sum. We prefer gmd5sum over md5, i.e., on Darwin we
prefer the GNU version installed by port.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Date
File size: 691 bytes
Line 
1# ===========================================================================
2#            http://autoconf-archive.cryp.to/ax_file_escapes.html
3# ===========================================================================
4#
5# SYNOPSIS
6#
7#   AX_FILE_ESCAPES
8#
9# DESCRIPTION
10#
11#   Writes the specified data to the specified file.
12#
13# LICENSE
14#
15#   Copyright (c) 2008 Tom Howard <tomhoward@users.sf.net>
16#
17#   Copying and distribution of this file, with or without modification, are
18#   permitted in any medium without royalty provided the copyright notice
19#   and this notice are preserved.
20
21AC_DEFUN([AX_FILE_ESCAPES],[
22AX_DOLLAR="\$"
23AX_SRB="\\135"
24AX_SLB="\\133"
25AX_BS="\\\\"
26AX_DQ="\""
27])
Note: See TracBrowser for help on using the repository browser.