root/tags/release-0.9_rc2/configure.in

Revision 18, 0.7 KB (checked in by zany, 9 years ago)

Release 0.9_rc1

Line 
1# Process this file with autoconf to produce a configure script.
2AC_INIT(src/flexmem_cli.c)
3AM_INIT_AUTOMAKE(obexftp, 0.9)
4AM_CONFIG_HEADER(config.h)
5
6AM_MAINTAINER_MODE
7
8# Checks for programs.
9AC_ISC_POSIX
10AC_PROG_CC
11AC_PROG_CXX
12AC_PROG_RANLIB
13
14# Checks for header files.
15AC_HEADER_STDC
16AC_HEADER_DIRENT
17AC_CHECK_HEADERS([arpa/inet.h errno.h fcntl.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/time.h termios.h unistd.h])
18
19# Checks for libraries.
20AM_PATH_GLIB(1.2.0)
21AM_PATH_OPENOBEX(0.9.8)
22
23AC_SUBST(CFLAGS)
24AC_SUBST(CPPFLAGS)
25AC_SUBST(LDFLAGS)
26
27CFLAGS="$CFLAGS -Wall"
28
29AC_OUTPUT([
30Makefile
31src/Makefile
32src/libcobexbfb/Makefile
33src/libobexftp/Makefile])
Note: See TracBrowser for help on using the browser.