Mercurial > pt1.oyama
view src/configure.ac @ 178:a0bc3700a496
Fix problem: If channel list file does not exist, abnormal termination.
author | Naoya OYAMA <naoya.oyama@gmail.com> |
---|---|
date | Wed, 07 Nov 2012 23:26:22 +0900 |
parents | 9c7bc6c0327e |
children |
line wrap: on
line source
# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) AC_INIT([recpt1], [1.0.0], yaz@honeyplanet.jp) AC_CONFIG_SRCDIR([recpt1.c]) AC_CONFIG_HEADERS([config.h]) # Checks for programs. AC_PROG_CC # Checks for b25 support. AC_ARG_ENABLE(b25, [AS_HELP_STRING([--enable-b25],[enable b25 support])], [AC_CHECK_LIB([arib25], [create_arib_std_b25], , [AC_MSG_WARN(libarb25 is not available.)], [-lpcsclite])] ) # Checks for libraries. AC_CHECK_LIB([m], [log10]) AC_CHECK_LIB([pthread], [pthread_kill]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT