~attente/glib/gicon-upstream

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Package Import Robot
  • Author(s): Iain Lane, Josselin Mouette, Iain Lane
  • Date: 2012-10-17 11:51:14 UTC
  • mfrom: (172.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20121017115114-gqog9lavags5afi1
Tags: 2.34.1-1
[ Josselin Mouette ]
* Require libelfg0-dev, not libelf-dev which has nothing to do with 
  it.

[ Iain Lane ]
* New upstream release
  + GTimeZone support for zoneinfo version 1
  + Leak in glib-compile-resources
  + g_settings_bind: use canonical property name
  + Port gio tests from pygobject to pygi
* Switch python-gobject-2 BD to python-gi, folowing porting of tests. 
* debian/patches/50_git_gmenuexporter_allow_null_bus_on_name_vanished.patch:
  Cherry-pick upstream patch to fix crash when GBusNameVanishedCallback is
  called with a NULL GDBusConnection. (LP: #1044322)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
If you have problems, you may need to regenerate the build system entirely.
20
20
To do so, use the procedure documented by the package, typically 'autoreconf'.])])
21
21
 
 
22
# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
 
23
# serial 1 (pkg-config-0.24)
 
24
 
25
# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
 
26
#
 
27
# This program is free software; you can redistribute it and/or modify
 
28
# it under the terms of the GNU General Public License as published by
 
29
# the Free Software Foundation; either version 2 of the License, or
 
30
# (at your option) any later version.
 
31
#
 
32
# This program is distributed in the hope that it will be useful, but
 
33
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
34
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
35
# General Public License for more details.
 
36
#
 
37
# You should have received a copy of the GNU General Public License
 
38
# along with this program; if not, write to the Free Software
 
39
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
40
#
 
41
# As a special exception to the GNU General Public License, if you
 
42
# distribute this file as part of a program that contains a
 
43
# configuration script generated by Autoconf, you may include it under
 
44
# the same distribution terms that you use for the rest of that program.
 
45
 
 
46
# PKG_PROG_PKG_CONFIG([MIN-VERSION])
 
47
# ----------------------------------
 
48
AC_DEFUN([PKG_PROG_PKG_CONFIG],
 
49
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
 
50
m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
 
51
m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
 
52
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
 
53
AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
 
54
AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
 
55
 
 
56
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
 
57
        AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
 
58
fi
 
59
if test -n "$PKG_CONFIG"; then
 
60
        _pkg_min_version=m4_default([$1], [0.9.0])
 
61
        AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
 
62
        if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
 
63
                AC_MSG_RESULT([yes])
 
64
        else
 
65
                AC_MSG_RESULT([no])
 
66
                PKG_CONFIG=""
 
67
        fi
 
68
fi[]dnl
 
69
])# PKG_PROG_PKG_CONFIG
 
70
 
 
71
# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
 
72
#
 
73
# Check to see whether a particular set of modules exists.  Similar
 
74
# to PKG_CHECK_MODULES(), but does not set variables or print errors.
 
75
#
 
76
# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
 
77
# only at the first occurence in configure.ac, so if the first place
 
78
# it's called might be skipped (such as if it is within an "if", you
 
79
# have to call PKG_CHECK_EXISTS manually
 
80
# --------------------------------------------------------------
 
81
AC_DEFUN([PKG_CHECK_EXISTS],
 
82
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 
83
if test -n "$PKG_CONFIG" && \
 
84
    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
 
85
  m4_default([$2], [:])
 
86
m4_ifvaln([$3], [else
 
87
  $3])dnl
 
88
fi])
 
89
 
 
90
# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
 
91
# ---------------------------------------------
 
92
m4_define([_PKG_CONFIG],
 
93
[if test -n "$$1"; then
 
94
    pkg_cv_[]$1="$$1"
 
95
 elif test -n "$PKG_CONFIG"; then
 
96
    PKG_CHECK_EXISTS([$3],
 
97
                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
 
98
                      test "x$?" != "x0" && pkg_failed=yes ],
 
99
                     [pkg_failed=yes])
 
100
 else
 
101
    pkg_failed=untried
 
102
fi[]dnl
 
103
])# _PKG_CONFIG
 
104
 
 
105
# _PKG_SHORT_ERRORS_SUPPORTED
 
106
# -----------------------------
 
107
AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
 
108
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
 
109
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
110
        _pkg_short_errors_supported=yes
 
111
else
 
112
        _pkg_short_errors_supported=no
 
113
fi[]dnl
 
114
])# _PKG_SHORT_ERRORS_SUPPORTED
 
115
 
 
116
 
 
117
# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
 
118
# [ACTION-IF-NOT-FOUND])
 
119
#
 
120
#
 
121
# Note that if there is a possibility the first call to
 
122
# PKG_CHECK_MODULES might not happen, you should be sure to include an
 
123
# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
 
124
#
 
125
#
 
126
# --------------------------------------------------------------
 
127
AC_DEFUN([PKG_CHECK_MODULES],
 
128
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 
129
AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
 
130
AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
 
131
 
 
132
pkg_failed=no
 
133
AC_MSG_CHECKING([for $1])
 
134
 
 
135
_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
 
136
_PKG_CONFIG([$1][_LIBS], [libs], [$2])
 
137
 
 
138
m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
 
139
and $1[]_LIBS to avoid the need to call pkg-config.
 
140
See the pkg-config man page for more details.])
 
141
 
 
142
if test $pkg_failed = yes; then
 
143
        AC_MSG_RESULT([no])
 
144
        _PKG_SHORT_ERRORS_SUPPORTED
 
145
        if test $_pkg_short_errors_supported = yes; then
 
146
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
 
147
        else 
 
148
                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
 
149
        fi
 
150
        # Put the nasty error message in config.log where it belongs
 
151
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
 
152
 
 
153
        m4_default([$4], [AC_MSG_ERROR(
 
154
[Package requirements ($2) were not met:
 
155
 
 
156
$$1_PKG_ERRORS
 
157
 
 
158
Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
159
installed software in a non-standard prefix.
 
160
 
 
161
_PKG_TEXT])[]dnl
 
162
        ])
 
163
elif test $pkg_failed = untried; then
 
164
        AC_MSG_RESULT([no])
 
165
        m4_default([$4], [AC_MSG_FAILURE(
 
166
[The pkg-config script could not be found or is too old.  Make sure it
 
167
is in your PATH or set the PKG_CONFIG environment variable to the full
 
168
path to pkg-config.
 
169
 
 
170
_PKG_TEXT
 
171
 
 
172
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
 
173
        ])
 
174
else
 
175
        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
 
176
        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
 
177
        AC_MSG_RESULT([yes])
 
178
        $3
 
179
fi[]dnl
 
180
])# PKG_CHECK_MODULES
 
181
 
 
182
 
 
183
# PKG_INSTALLDIR(DIRECTORY)
 
184
# -------------------------
 
185
# Substitutes the variable pkgconfigdir as the location where a module
 
186
# should install pkg-config .pc files. By default the directory is
 
187
# $libdir/pkgconfig, but the default can be changed by passing
 
188
# DIRECTORY. The user can override through the --with-pkgconfigdir
 
189
# parameter.
 
190
AC_DEFUN([PKG_INSTALLDIR],
 
191
[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
 
192
m4_pushdef([pkg_description],
 
193
    [pkg-config installation directory @<:@]pkg_default[@:>@])
 
194
AC_ARG_WITH([pkgconfigdir],
 
195
    [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
 
196
    [with_pkgconfigdir=]pkg_default)
 
197
AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
 
198
m4_popdef([pkg_default])
 
199
m4_popdef([pkg_description])
 
200
]) dnl PKG_INSTALLDIR
 
201
 
 
202
 
 
203
# PKG_NOARCH_INSTALLDIR(DIRECTORY)
 
204
# -------------------------
 
205
# Substitutes the variable noarch_pkgconfigdir as the location where a
 
206
# module should install arch-independent pkg-config .pc files. By
 
207
# default the directory is $datadir/pkgconfig, but the default can be
 
208
# changed by passing DIRECTORY. The user can override through the
 
209
# --with-noarch-pkgconfigdir parameter.
 
210
AC_DEFUN([PKG_NOARCH_INSTALLDIR],
 
211
[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
 
212
m4_pushdef([pkg_description],
 
213
    [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
 
214
AC_ARG_WITH([noarch-pkgconfigdir],
 
215
    [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
 
216
    [with_noarch_pkgconfigdir=]pkg_default)
 
217
AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
 
218
m4_popdef([pkg_default])
 
219
m4_popdef([pkg_description])
 
220
]) dnl PKG_NOARCH_INSTALLDIR
 
221
 
22
222
# Copyright (C) 2002-2012 Free Software Foundation, Inc.
23
223
#
24
224
# This file is free software; the Free Software Foundation
1351
1551
AC_SUBST([am__untar])
1352
1552
]) # _AM_PROG_TAR
1353
1553
 
1354
 
# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
1355
 
# serial 1 (pkg-config-0.24)
1356
 
1357
 
# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
1358
 
#
1359
 
# This program is free software; you can redistribute it and/or modify
1360
 
# it under the terms of the GNU General Public License as published by
1361
 
# the Free Software Foundation; either version 2 of the License, or
1362
 
# (at your option) any later version.
1363
 
#
1364
 
# This program is distributed in the hope that it will be useful, but
1365
 
# WITHOUT ANY WARRANTY; without even the implied warranty of
1366
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1367
 
# General Public License for more details.
1368
 
#
1369
 
# You should have received a copy of the GNU General Public License
1370
 
# along with this program; if not, write to the Free Software
1371
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
1372
 
#
1373
 
# As a special exception to the GNU General Public License, if you
1374
 
# distribute this file as part of a program that contains a
1375
 
# configuration script generated by Autoconf, you may include it under
1376
 
# the same distribution terms that you use for the rest of that program.
1377
 
 
1378
 
# PKG_PROG_PKG_CONFIG([MIN-VERSION])
1379
 
# ----------------------------------
1380
 
AC_DEFUN([PKG_PROG_PKG_CONFIG],
1381
 
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
1382
 
m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
1383
 
m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
1384
 
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
1385
 
AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
1386
 
AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
1387
 
 
1388
 
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
1389
 
        AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
1390
 
fi
1391
 
if test -n "$PKG_CONFIG"; then
1392
 
        _pkg_min_version=m4_default([$1], [0.9.0])
1393
 
        AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
1394
 
        if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
1395
 
                AC_MSG_RESULT([yes])
1396
 
        else
1397
 
                AC_MSG_RESULT([no])
1398
 
                PKG_CONFIG=""
1399
 
        fi
1400
 
fi[]dnl
1401
 
])# PKG_PROG_PKG_CONFIG
1402
 
 
1403
 
# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
1404
 
#
1405
 
# Check to see whether a particular set of modules exists.  Similar
1406
 
# to PKG_CHECK_MODULES(), but does not set variables or print errors.
1407
 
#
1408
 
# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
1409
 
# only at the first occurence in configure.ac, so if the first place
1410
 
# it's called might be skipped (such as if it is within an "if", you
1411
 
# have to call PKG_CHECK_EXISTS manually
1412
 
# --------------------------------------------------------------
1413
 
AC_DEFUN([PKG_CHECK_EXISTS],
1414
 
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
1415
 
if test -n "$PKG_CONFIG" && \
1416
 
    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
1417
 
  m4_default([$2], [:])
1418
 
m4_ifvaln([$3], [else
1419
 
  $3])dnl
1420
 
fi])
1421
 
 
1422
 
# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
1423
 
# ---------------------------------------------
1424
 
m4_define([_PKG_CONFIG],
1425
 
[if test -n "$$1"; then
1426
 
    pkg_cv_[]$1="$$1"
1427
 
 elif test -n "$PKG_CONFIG"; then
1428
 
    PKG_CHECK_EXISTS([$3],
1429
 
                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
1430
 
                      test "x$?" != "x0" && pkg_failed=yes ],
1431
 
                     [pkg_failed=yes])
1432
 
 else
1433
 
    pkg_failed=untried
1434
 
fi[]dnl
1435
 
])# _PKG_CONFIG
1436
 
 
1437
 
# _PKG_SHORT_ERRORS_SUPPORTED
1438
 
# -----------------------------
1439
 
AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
1440
 
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
1441
 
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
1442
 
        _pkg_short_errors_supported=yes
1443
 
else
1444
 
        _pkg_short_errors_supported=no
1445
 
fi[]dnl
1446
 
])# _PKG_SHORT_ERRORS_SUPPORTED
1447
 
 
1448
 
 
1449
 
# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
1450
 
# [ACTION-IF-NOT-FOUND])
1451
 
#
1452
 
#
1453
 
# Note that if there is a possibility the first call to
1454
 
# PKG_CHECK_MODULES might not happen, you should be sure to include an
1455
 
# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
1456
 
#
1457
 
#
1458
 
# --------------------------------------------------------------
1459
 
AC_DEFUN([PKG_CHECK_MODULES],
1460
 
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
1461
 
AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
1462
 
AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
1463
 
 
1464
 
pkg_failed=no
1465
 
AC_MSG_CHECKING([for $1])
1466
 
 
1467
 
_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
1468
 
_PKG_CONFIG([$1][_LIBS], [libs], [$2])
1469
 
 
1470
 
m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
1471
 
and $1[]_LIBS to avoid the need to call pkg-config.
1472
 
See the pkg-config man page for more details.])
1473
 
 
1474
 
if test $pkg_failed = yes; then
1475
 
        AC_MSG_RESULT([no])
1476
 
        _PKG_SHORT_ERRORS_SUPPORTED
1477
 
        if test $_pkg_short_errors_supported = yes; then
1478
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
1479
 
        else 
1480
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
1481
 
        fi
1482
 
        # Put the nasty error message in config.log where it belongs
1483
 
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
1484
 
 
1485
 
        m4_default([$4], [AC_MSG_ERROR(
1486
 
[Package requirements ($2) were not met:
1487
 
 
1488
 
$$1_PKG_ERRORS
1489
 
 
1490
 
Consider adjusting the PKG_CONFIG_PATH environment variable if you
1491
 
installed software in a non-standard prefix.
1492
 
 
1493
 
_PKG_TEXT])[]dnl
1494
 
        ])
1495
 
elif test $pkg_failed = untried; then
1496
 
        AC_MSG_RESULT([no])
1497
 
        m4_default([$4], [AC_MSG_FAILURE(
1498
 
[The pkg-config script could not be found or is too old.  Make sure it
1499
 
is in your PATH or set the PKG_CONFIG environment variable to the full
1500
 
path to pkg-config.
1501
 
 
1502
 
_PKG_TEXT
1503
 
 
1504
 
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
1505
 
        ])
1506
 
else
1507
 
        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
1508
 
        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
1509
 
        AC_MSG_RESULT([yes])
1510
 
        $3
1511
 
fi[]dnl
1512
 
])# PKG_CHECK_MODULES
1513
 
 
1514
 
 
1515
 
# PKG_INSTALLDIR(DIRECTORY)
1516
 
# -------------------------
1517
 
# Substitutes the variable pkgconfigdir as the location where a module
1518
 
# should install pkg-config .pc files. By default the directory is
1519
 
# $libdir/pkgconfig, but the default can be changed by passing
1520
 
# DIRECTORY. The user can override through the --with-pkgconfigdir
1521
 
# parameter.
1522
 
AC_DEFUN([PKG_INSTALLDIR],
1523
 
[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
1524
 
m4_pushdef([pkg_description],
1525
 
    [pkg-config installation directory @<:@]pkg_default[@:>@])
1526
 
AC_ARG_WITH([pkgconfigdir],
1527
 
    [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
1528
 
    [with_pkgconfigdir=]pkg_default)
1529
 
AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
1530
 
m4_popdef([pkg_default])
1531
 
m4_popdef([pkg_description])
1532
 
]) dnl PKG_INSTALLDIR
1533
 
 
1534
 
 
1535
 
# PKG_NOARCH_INSTALLDIR(DIRECTORY)
1536
 
# -------------------------
1537
 
# Substitutes the variable noarch_pkgconfigdir as the location where a
1538
 
# module should install arch-independent pkg-config .pc files. By
1539
 
# default the directory is $datadir/pkgconfig, but the default can be
1540
 
# changed by passing DIRECTORY. The user can override through the
1541
 
# --with-noarch-pkgconfigdir parameter.
1542
 
AC_DEFUN([PKG_NOARCH_INSTALLDIR],
1543
 
[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
1544
 
m4_pushdef([pkg_description],
1545
 
    [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
1546
 
AC_ARG_WITH([noarch-pkgconfigdir],
1547
 
    [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
1548
 
    [with_noarch_pkgconfigdir=]pkg_default)
1549
 
AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
1550
 
m4_popdef([pkg_default])
1551
 
m4_popdef([pkg_description])
1552
 
]) dnl PKG_NOARCH_INSTALLDIR
1553
 
 
1554
1554
m4_include([m4macros/gtk-doc.m4])
1555
1555
m4_include([m4macros/libtool.m4])
1556
1556
m4_include([m4macros/ltoptions.m4])