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