1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl   Copyright (C) 2021-2024 Free Software Foundation, Inc.
4dnl
5dnl This file is free software; you can redistribute it and/or modify
6dnl it under the terms of the GNU General Public License as published by
7dnl the Free Software Foundation; either version 3 of the License, or
8dnl (at your option) any later version.
9dnl
10dnl This program is distributed in the hope that it will be useful,
11dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13dnl GNU General Public License for more details.
14dnl
15dnl You should have received a copy of the GNU General Public License
16dnl along with this program; see the file COPYING3.  If not see
17dnl <http://www.gnu.org/licenses/>.
18
19m4_include([../../bfd/version.m4])
20AC_INIT([gprofng], BFD_VERSION)
21AC_CONFIG_MACRO_DIRS([../../config ../..])
22AC_CONFIG_AUX_DIR(../..)
23AC_CANONICAL_TARGET
24AM_INIT_AUTOMAKE
25AM_MAINTAINER_MODE
26
27AC_CONFIG_SRCDIR(libcol_util.c)
28
29AC_USE_SYSTEM_EXTENSIONS
30AC_PROG_CC
31AC_PROG_CXX
32AC_PROG_INSTALL
33AC_PROG_RANLIB
34AM_PROG_AR
35
36LT_INIT
37AC_ENABLE_SHARED
38AC_DISABLE_STATIC
39
40if test "$enable_shared" != "yes"; then
41  AC_MSG_WARN([Cannot set --enable-shared for gprofng/libcollector. Profiling will be unavailable.])
42fi
43
44ACX_PROG_CC_WARNING_OPTS([-Wno-nonnull-compare], [GPROFNG_NO_NONNULL_COMPARE_CFLAGS])
45AC_SUBST(GPROFNG_NO_NONNULL_COMPARE_CFLAGS)
46
47AC_CONFIG_FILES([Makefile])
48AC_CONFIG_HEADERS([lib-config.h:../common/lib-config.h.in])
49
50AC_OUTPUT
51
52