Browse CVS Repository
Contents of /malonnote/configure.in
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1.1.1.2.1 -
( show annotations)
( download)
(vendor branch)
Fri Jul 29 06:12:42 2005 UTC
(18 years, 7 months ago)
by maloninc
Branch: dev-0_9_1-0001
CVS Tags: rel-0_9_1, dev-0_9_1-0002-merged-01, dev-0_9_1-0003, dev-0_9_1-0002, dev-0_9_1-merged-02
Changes since 1.1.1.1: +2 -2 lines
0.9.1
| 1 |
# -*- Autoconf -*- |
| 2 |
# Process this file with autoconf to produce a configure script. |
| 3 |
|
| 4 |
AC_INIT(mnote, 0.9.1,hiroyuki@maloninc.com) |
| 5 |
AC_CONFIG_SRCDIR([acconfig.h]) |
| 6 |
AM_INIT_AUTOMAKE(mnote, 0.9.1,hiroyuki@maloninc.com) |
| 7 |
AM_CONFIG_HEADER(config.h) |
| 8 |
|
| 9 |
AC_CANONICAL_HOST |
| 10 |
AM_CONDITIONAL([IS_DARWIN], [echo "$host_os" | grep -i darwin]) |
| 11 |
AM_CONDITIONAL([IS_MINGW], [echo "$host_os" | grep -i mingw]) |
| 12 |
|
| 13 |
# Checks for programs. |
| 14 |
AC_PROG_CXX |
| 15 |
AC_PROG_CC |
| 16 |
|
| 17 |
# Checks for libraries. |
| 18 |
# FIXME: Replace `main' with a function in `-liconv': |
| 19 |
AC_CHECK_LIB([iconv], [main]) |
| 20 |
|
| 21 |
# Checks for header files. |
| 22 |
|
| 23 |
# Checks for typedefs, structures, and compiler characteristics. |
| 24 |
AC_C_CONST |
| 25 |
AC_TYPE_SIZE_T |
| 26 |
|
| 27 |
# Checks for library functions. |
| 28 |
AC_HEADER_STDC |
| 29 |
AC_CHECK_FUNCS([memset strstr strtol]) |
| 30 |
|
| 31 |
AC_CONFIG_FILES([Makefile]) |
| 32 |
AC_OUTPUT |
| |