configure.ac 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. dnl Process this file with autoconf to produce a configure script.
  2. dnl
  3. dnl Copyright (C) 2012-2022 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. dnl
  19. m4_include([../bfd/version.m4])
  20. AC_INIT([gprof], BFD_VERSION)
  21. AC_CONFIG_SRCDIR([gprof.c])
  22. AC_CANONICAL_TARGET([])
  23. AM_INIT_AUTOMAKE
  24. AM_SILENT_RULES([yes])
  25. dnl For simplicity, we use the BFD configuration file for most
  26. dnl things. However, we also need our own configuration file for
  27. dnl the automake PACKAGE and VERSION macros. We don't name it
  28. dnl config.h, to avoid any possible confusion with the bfd config.h.
  29. AC_CONFIG_HEADERS([gconfig.h:gconfig.in])
  30. AC_PROG_CC
  31. AC_GNU_SOURCE
  32. AC_USE_SYSTEM_EXTENSIONS
  33. AC_PROG_INSTALL
  34. LT_INIT
  35. ACX_LARGEFILE
  36. # These are in addition to what is made available in bfd/.
  37. AC_CHECK_HEADERS(sys/time.h)
  38. AC_CHECK_FUNCS(setitimer)
  39. ALL_LINGUAS="bg da de eo es fi fr ga hu id it ja ms nl pt_BR ro ru rw sr sv tr uk vi"
  40. ZW_GNU_GETTEXT_SISTER_DIR
  41. AM_PO_SUBDIRS
  42. AM_MAINTAINER_MODE
  43. AM_CONDITIONAL(GENINSRC_NEVER, false)
  44. AC_EXEEXT
  45. AC_CHECK_HEADERS(sys/gmon_out.h)
  46. AC_MSG_CHECKING(for a known getopt prototype in unistd.h)
  47. AC_CACHE_VAL(gprof_cv_decl_getopt_unistd_h,
  48. [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);])],
  49. gprof_cv_decl_getopt_unistd_h=yes, gprof_cv_decl_getopt_unistd_h=no)])
  50. AC_MSG_RESULT($gprof_cv_decl_getopt_unistd_h)
  51. if test $gprof_cv_decl_getopt_unistd_h = yes; then
  52. AC_DEFINE([HAVE_DECL_GETOPT], 1,
  53. [Is the prototype for getopt in <unistd.h> in the expected format?])
  54. fi
  55. # Some systems have fabs only in -lm, not in -lc.
  56. AC_SEARCH_LIBS(fabs, m)
  57. AM_BINUTILS_WARNINGS
  58. dnl Required by html, pdf, install-pdf and install-html
  59. AC_SUBST(datarootdir)
  60. AC_SUBST(docdir)
  61. AC_SUBST(htmldir)
  62. AC_SUBST(pdfdir)
  63. AC_CONFIG_FILES([Makefile po/Makefile.in:po/Make-in])
  64. AC_OUTPUT
  65. GNU_MAKE_JOBSERVER