OSDN Git Service

*** empty log message ***
[modchxj/mod_chxj.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3 AC_INIT(mod_chxj, 0.6.2-stable)
4 AC_PREREQ(2.59)
5 AC_CONFIG_SRCDIR([src/mod_chxj.c])
6 AC_CANONICAL_TARGET
7 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
8 AM_CONFIG_HEADER(include/config.h)
9
10
11 # Checks for programs.
12 AC_PROG_CC
13 AC_PROG_INSTALL
14 AM_PROG_LIBTOOL
15
16 # Checks for libraries.
17 AC_CHECK_LIB([apr-0],  [main])
18
19 AC_ARG_WITH(apache-header, [  --with-apache-header=ARG The directory with the header file of apache2.0 is specified. ]) 
20 #[, ACTION-IF-GIVEN[, ACTION-IF-NOT-GIVEN]])
21 if test "x$with_apache_header" = "x"; then
22     AC_MSG_ERROR([
23 Please specify the --with-apache-header option.
24 ])
25 fi
26 if test "x$with_apache_header" = "xyes"; then
27     AC_MSG_ERROR([
28 Please specify the --with-apache-header option. And, please specify the place of the header file. 
29
30 ])
31 fi
32
33 AC_ARG_WITH(apxs, [  --with-apxs=ARG Path of apxs program file.])
34 if test "x$with_apxs" = "x" ; then
35   APXS=""
36 fi
37 if test "x$with_apxs" = "xyes" ; then
38     AC_MSG_ERROR([
39 Please specify the --with-apxs option. And, please specify the place of the apxs program. 
40 ])
41 fi
42
43 AC_ARG_WITH(apr-config, [  --with-apr-config=ARG  Path of apr-config program file.])
44 if test "x$with_apr_config" = "xyes" ; then
45     AC_MSG_ERROR([
46 Please specify the --with-apr-config option. And, please specify the place of the apr-config program. 
47 ])
48 fi
49
50
51 AC_ARG_ENABLE(img-conv-f, [  --enable-img-conv-f      Please specify it when you change the file name of the image being written in the 
52 source by the automatic operation.])
53 if test "x$enable_img_conv_f" = "xyes"; then
54   QDEFS=""
55 else
56   QDEFS="-DIMG_NOT_CONVERT_FILENAME"
57 fi
58
59 AC_ARG_ENABLE(dump-log, [  --enable-dump-log   When the log of conversion is output, it specifies it with the output file. ])
60 if test "x$enable_dump_log" = "xyes"; then
61   DDEFS="-DDUMP_LOG=\\\"/tmp/dump.log\\\""
62 else
63     if test "x$enable_dump_log" != "x" ; then
64         DDEFS="-DDUMP_LOG=\\\"${enable_dump_log}\\\""
65     fi
66 fi
67
68
69 if test "x$with_apxs" = "x" ; then
70   AC_PATH_PROG(APXS, apxs, no,
71       /usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/local/apache/bin)
72   if test "x$APXS" = "xno"; then
73       AC_MSG_ERROR([apxs not found.])
74   fi
75 fi
76 if test "x$with_apxs" != "x" ; then
77   APXS=$with_apxs
78 fi 
79
80 AC_PATH_PROG(LIBTOOL, libtool, no,
81     /usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin)
82 if test "x$LIBTOOL" = "xno"; then
83     AC_MSG_ERROR([libtool not found.])
84 fi
85
86
87 AC_PATH_PROG(WAND_CONFIG, Wand-config, no,
88    /usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin)
89 if test "x$WAND_CONFIG" = "xno" ; then
90     AC_MSG_ERROR([wand-config not found.])
91 fi
92
93 if test "x$with_apr_config" = "x" ; then
94   AC_PATH_PROG(APR_CONFIG, apr-config, no,
95      /usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin)
96   if test "x$APR_CONFIG" = "xno" ; then
97       AC_MSG_ERROR([apr-config not found.])
98   fi
99 fi
100 if test "x$with_apr_config" != "x" ; then
101   APR_CONFIG=$with_apr_config
102 fi
103
104 AC_ARG_WITH(iconv, [  --with-iconv=ARG  specify the place of the libiconv directory.])
105 AC_ARG_WITH(iconv_hook, [  --with-iconv_hook=ARG  specify the place of the libiconv_hook directory.])
106 if test "x$with_iconv" = "x" -a "x$with_iconv_hook" = "x" ; then
107   AC_CHECK_LIB([iconv_hook], [iconv_open], [
108       with_iconv="ok"
109       AC_DEFINE([HAVE_LIBICONV_HOOK], [], [Define to 1 if you have the iconv library file.])
110   ],[
111     AC_CHECK_LIB([iconv], [iconv_open], [
112       with_iconv="ok"
113       AC_DEFINE([HAVE_LIBICONV], [], [Define to 1 if you have the iconv library file.])
114   ], [
115       witn_iconv=""
116   ],[])
117   ],[])
118 fi
119
120 if test "x$with_iconv" != "xok" ; then
121   if test "x$with_iconv" = "xyes" ; then
122       AC_MSG_ERROR([
123   Please specify the --with-iconv option. And, please specify the place of the libiconv program. 
124   ])
125   fi
126   if test "x$with_iconv" != "x" ; then
127     LIBS="${LIBS} -L$with_iconv -liconv "
128     AC_DEFINE([HAVE_LIBICONV], [], [Define to 1 if you have the iconv library file.])
129   fi
130 fi
131 if test "x$with_iconv" = "x" ; then
132   if test "x$with_iconv_hook" = "xyes" ; then
133       AC_MSG_ERROR([
134   Please specify the --with-iconv-hook option. And, please specify the place of the libiconv_hook program. 
135   ])
136   fi
137   if test "x$with_iconv_hook" != "x" ; then
138     LIBS="${LIBS} -L${with_iconv_hook} -liconv_hook "
139     AC_DEFINE([HAVE_LIBICONV_HOOK], [], [Define to 1 if you have the iconv_hook library file.])
140   fi
141   if test "x$with_iconv_hook" = "x" ; then
142       AC_MSG_ERROR([
143   Please specify the --with-iconv-hook option. And, please specify the place of the libiconv_hook program. 
144   ])
145   fi
146 fi
147
148
149 case $host_os in
150   freebsd*)
151     CFLAGS="${CFLAGS} -I/usr/local/include "
152     ;;
153 esac
154
155
156 LIBS="${LIBS} `${WAND_CONFIG} --ldflags` `${WAND_CONFIG} --libs | sed -e s/-ldpstk//` "
157 LIBS="${LIBS} `${APR_CONFIG} --ldflags` `${APR_CONFIG} --libs` "
158 CFLAGS="${CFLAGS} `${WAND_CONFIG} --cppflags` `${WAND_CONFIG} --cflags`"
159 CFLAGS="${CFLAGS} `${APR_CONFIG} --includes` `${APR_CONFIG} --cflags` `${APR_CONFIG} --cppflags`"
160 AC_SUBST(with_apache_header)
161 AC_SUBST(CC)
162 AC_SUBST(QDEFS)
163 AC_SUBST(DDEFS)
164 AC_SUBST(LIBS)
165 AC_SUBST(CFLAGS)
166
167 # Checks for header files.
168 AC_HEADER_STDC
169 AC_CHECK_HEADERS([string.h strings.h unistd.h fcntl.h sys/types.h sys/stat.h sys/mman.h libgen.h])
170 APR_HEADER_DIR="`${APR_CONFIG} --includes | sed -e 's/-I//g' | sed -e 's/ //g'`"
171 AC_CHECK_HEADERS([$APR_HEADER_DIR/apr_shm.h $APR_HEADER_DIR/apr_global_mutex.h])
172 AC_CHECK_HEADERS([$with_apache_header/ap_regex.h],
173   AC_DEFINE([HAVE_AP_REGEX_H], [], [Define to 1 if you have the <ap_regex.h> header file.]))
174
175 # Checks for typedefs, structures, and compiler characteristics.
176 AC_C_CONST
177
178 # Checks for library functions.
179 AC_FUNC_MALLOC
180 AC_CHECK_FUNCS([open mmap close memset memcpy strcasecmp strncasecmp strstr])
181
182
183
184 AC_CONFIG_FILES([Makefile src/Makefile])
185 AC_OUTPUT