configure.ac 371 B

1234567891011121314151617181920
  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_PREREQ(2.59)
  3. AC_INIT(glbindify, [0.5.1])
  4. AC_CANONICAL_SYSTEM
  5. AM_INIT_AUTOMAKE([foreign])
  6. AC_CHECK_PROG(GPERF,gperf,yes,no)
  7. AC_PROG_CXX
  8. if [test x$GPERF == xyes]; then
  9. AC_DEFINE([HAVE_GPERF], 1, [Set if gperf is available])
  10. fi
  11. AC_CONFIG_HEADERS([config.h])
  12. AC_CONFIG_FILES([Makefile])
  13. AC_OUTPUT