1
0

configure.ac 379 B

1234567891011121314151617181920
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.69])
  4. AC_INIT([libyadb.a], [1.0], [BUG-REPORT-ADDRESS])
  5. AC_CONFIG_SRCDIR([db_tool.cpp])
  6. AM_INIT_AUTOMAKE
  7. AC_CONFIG_MACRO_DIR([m4])
  8. # Checks for programs.
  9. AC_PROG_CXX
  10. AC_PROG_CC
  11. AC_PROG_RANLIB
  12. AC_CONFIG_FILES([Makefile])
  13. AC_OUTPUT