Mercurial > pt1.oyama
diff src/configure.ac @ 124:9c7bc6c0327e
Add DLNA server function test. (from uShare project)
author | naoyan@johnstown.minaminoshima.org |
---|---|
date | Wed, 29 Sep 2010 23:18:55 +0900 |
parents | recpt1/configure.ac@4009737ea899 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/configure.ac Wed Sep 29 23:18:55 2010 +0900 @@ -0,0 +1,23 @@ +# -*- 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