Mercurial > pt1.oyama
comparison 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 |
comparison
equal
deleted
inserted
replaced
123:215a51fa3df3 | 124:9c7bc6c0327e |
---|---|
1 # -*- Autoconf -*- | |
2 # Process this file with autoconf to produce a configure script. | |
3 | |
4 AC_PREREQ(2.59) | |
5 AC_INIT([recpt1], [1.0.0], yaz@honeyplanet.jp) | |
6 AC_CONFIG_SRCDIR([recpt1.c]) | |
7 AC_CONFIG_HEADERS([config.h]) | |
8 | |
9 # Checks for programs. | |
10 AC_PROG_CC | |
11 | |
12 # Checks for b25 support. | |
13 AC_ARG_ENABLE(b25, | |
14 [AS_HELP_STRING([--enable-b25],[enable b25 support])], | |
15 [AC_CHECK_LIB([arib25], [create_arib_std_b25], , [AC_MSG_WARN(libarb25 is not available.)], [-lpcsclite])] | |
16 ) | |
17 | |
18 # Checks for libraries. | |
19 AC_CHECK_LIB([m], [log10]) | |
20 AC_CHECK_LIB([pthread], [pthread_kill]) | |
21 | |
22 AC_CONFIG_FILES([Makefile]) | |
23 AC_OUTPUT |