annotate m4/base64.m4 @ 12765:2614b91f7908

Avoid duplicate -lm.
author Bruno Haible <bruno@clisp.org>
date Wed, 20 Jan 2010 11:55:20 +0100
parents c2cbabec01dd
children 97fc9a21a8fb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7100
1401e9cfcacd Remove the 'restrict' module, and modify everybody to use AC_C_RESTRICT
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
1 # base64.m4 serial 3
12559
c2cbabec01dd update nearly all FSF copyright year lists to include 2010
Jim Meyering <meyering@redhat.com>
parents: 12518
diff changeset
2 dnl Copyright (C) 2004, 2006, 2009, 2010 Free Software Foundation, Inc.
5611
87c42e194f4a Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5498
diff changeset
3 dnl This file is free software; the Free Software Foundation
87c42e194f4a Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5498
diff changeset
4 dnl gives unlimited permission to copy and/or distribute it,
87c42e194f4a Use an all-permissive copyright notice, recommended by RMS.
Paul Eggert <eggert@cs.ucla.edu>
parents: 5498
diff changeset
5 dnl with or without modifications, as long as this notice is preserved.
5498
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents:
diff changeset
6
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents:
diff changeset
7 AC_DEFUN([gl_FUNC_BASE64],
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents:
diff changeset
8 [
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents:
diff changeset
9 gl_PREREQ_BASE64
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents:
diff changeset
10 ])
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents:
diff changeset
11
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents:
diff changeset
12 # Prerequisites of lib/base64.c.
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents:
diff changeset
13 AC_DEFUN([gl_PREREQ_BASE64], [
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents:
diff changeset
14 AC_REQUIRE([AC_C_INLINE])
7100
1401e9cfcacd Remove the 'restrict' module, and modify everybody to use AC_C_RESTRICT
Paul Eggert <eggert@cs.ucla.edu>
parents: 5611
diff changeset
15 AC_REQUIRE([AC_C_RESTRICT])
5498
ac6438eb46c6 Add base64.
Simon Josefsson <simon@josefsson.org>
parents:
diff changeset
16 ])