add ignore files.
[vuplus_transtreamproxy] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 #AC_PREREQ([2.69])
5 AC_INIT([filestreamproxy], [1.0.0], [oskwon@marusys.com])
6 AM_INIT_AUTOMAKE([filestreamproxy], [1.0.0])
7
8 #AC_CONFIG_SRCDIR([main.cpp])
9 AC_CONFIG_HEADERS([config.h])
10 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
11
12 AC_USE_SYSTEM_EXTENSIONS
13 AC_SYS_LARGEFILE
14
15 # Checks for programs.
16 AC_PROG_CC
17 AC_PROG_CXX
18
19 AC_CONFIG_MACRO_DIR([m4])
20
21 AC_CHECK_LIB(pthread, pthread_create)
22 PTHREAD_LIBS=-pthread
23 AC_SUBST(PTHREAD_LIBS)
24
25 # Checks for libraries.
26 AC_SUBST(PLATFORM)
27
28 # Checks for header files.
29 AC_SUBST(INCPATH)
30
31 # Checks for typedefs, structures, and compiler characteristics.
32
33 # Checks for library functions.
34
35 AC_CONFIG_FILES([Makefile src/Makefile])
36 AC_OUTPUT
37