Mercurial > pt1
comparison recpt1/configure.ac @ 74:b6607f6e2851
good citizens never use gray code. wise people never watch TV.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Sat, 28 Nov 2009 00:12:05 +0900 |
parents | |
children | 1d1d616cde98 |
comparison
equal
deleted
inserted
replaced
73:c44e16dbb0e2 | 74:b6607f6e2851 |
---|---|
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 AC_PROG_INSTALL | |
12 | |
13 # Checks for b25 support. | |
14 AC_ARG_ENABLE(b25, | |
15 [AC_HELP_STRING([--enable-b25],[enable b25 support])], | |
16 [AC_CHECK_LIB([arib25], [create_arib_std_b25], , [AC_MSG_WARN(libarb25 is not available.)], [-lpcsclite])] | |
17 ) | |
18 | |
19 # Checks for libraries. | |
20 AC_CHECK_LIB([m], [log10]) | |
21 AC_CHECK_LIB([pthread], [pthread_kill]) | |
22 | |
23 AC_CONFIG_FILES([Makefile]) | |
24 AC_OUTPUT |