| 1 |
dnl |
| 2 |
dnl $Id: configure.in,v 1.28 2002/06/15 10:19:27 hiroo Exp $ |
| 3 |
dnl |
| 4 |
|
| 5 |
dnl |
| 6 |
dnl FreeWnn is a network-extensible Kana-to-Kanji conversion system. |
| 7 |
dnl This file is part of FreeWnn. |
| 8 |
dnl |
| 9 |
dnl Copyright Kyoto University Research Institute for Mathematical Sciences |
| 10 |
dnl 1987, 1988, 1989, 1990, 1991, 1992 |
| 11 |
dnl Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999 |
| 12 |
dnl Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992 |
| 13 |
dnl Copyright FreeWnn Project 1999, 2000, 2001, 2002 |
| 14 |
dnl |
| 15 |
dnl Maintainer: FreeWnn Project <freewnn@tomo.gr.jp> |
| 16 |
dnl |
| 17 |
dnl This program is free software; you can redistribute it and/or modify |
| 18 |
dnl it under the terms of the GNU General Public License as published by |
| 19 |
dnl the Free Software Foundation; either version 2 of the License, or |
| 20 |
dnl (at your option) any later version. |
| 21 |
dnl |
| 22 |
dnl This program is distributed in the hope that it will be useful, |
| 23 |
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 24 |
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 25 |
dnl GNU General Public License for more details. |
| 26 |
dnl |
| 27 |
dnl You should have received a copy of the GNU General Public License |
| 28 |
dnl along with this program; if not, write to the Free Software |
| 29 |
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 30 |
dnl |
| 31 |
|
| 32 |
dnl |
| 33 |
dnl Process this file with autoconf to produce a configure script. |
| 34 |
dnl |
| 35 |
AC_INIT(Wnn/conv/cvt_head.h) |
| 36 |
AC_CONFIG_HEADER(config.h) |
| 37 |
|
| 38 |
dnl ==================================================================== |
| 39 |
dnl Check optional features |
| 40 |
dnl ==================================================================== |
| 41 |
|
| 42 |
AC_CANONICAL_HOST |
| 43 |
|
| 44 |
dnl build and install libraries, server or client |
| 45 |
|
| 46 |
AC_ARG_ENABLE(debug, |
| 47 |
[ --enable-debug enable debug options [default=no]], |
| 48 |
[case "${enableval}" in |
| 49 |
yes) debug=true ;; |
| 50 |
no) debug=false ;; |
| 51 |
*) AC_MSG_ERROR(bad value for --enable-debug) |
| 52 |
esac], debug=false) |
| 53 |
|
| 54 |
AC_ARG_ENABLE(libraries, |
| 55 |
[ --enable-libraries build and install libraries [default=yes]], |
| 56 |
[case "${enableval}" in |
| 57 |
yes) libraries=true ;; |
| 58 |
no) libraries=false ;; |
| 59 |
*) AC_MSG_ERROR(bad value for --enable-libraries) ;; |
| 60 |
esac], libraries=true) |
| 61 |
|
| 62 |
AC_ARG_ENABLE(server, |
| 63 |
[ --enable-server build and install server [default=yes]], |
| 64 |
[case "${enableval}" in |
| 65 |
yes) server=true ;; |
| 66 |
no) server=false ;; |
| 67 |
*) AC_MSG_ERROR(bad value for --enable-server) ;; |
| 68 |
esac], server=true) |
| 69 |
|
| 70 |
AC_ARG_ENABLE(client, |
| 71 |
[ --enable-client build and install clients [default=no]], |
| 72 |
[case "${enableval}" in |
| 73 |
yes) client=true ;; |
| 74 |
no) client=false ;; |
| 75 |
*) AC_MSG_ERROR(bad value for --enable-client) ;; |
| 76 |
esac], client=false) |
| 77 |
|
| 78 |
if test $libraries = true; then |
| 79 |
SUBDIRS="\$(LIB_SUBDIRS)" |
| 80 |
WNNMANDIR="\$(LIB_WNNMANDIR)" |
| 81 |
fi |
| 82 |
if test $server = true; then |
| 83 |
SUBDIRS="$SUBDIRS \$(SERVER_SUBDIRS)" |
| 84 |
WNNMANDIR="$WNNMANDIR \$(SERVER_WNNMANDIR)" |
| 85 |
fi |
| 86 |
if test $client = true; then |
| 87 |
SUBDIRS="$SUBDIRS \$(CLIENT_SUBDIRS)" |
| 88 |
dnl currently client is only uum and its man is in SERVER_WNNMANDIR |
| 89 |
dnl WNNMANDIR=$WNNMANDIR \$(CLIENT_WNNMANDIR)" |
| 90 |
fi |
| 91 |
|
| 92 |
AC_SUBST(SUBDIRS) |
| 93 |
AC_SUBST(WNNMANDIR) |
| 94 |
|
| 95 |
dnl For Severs |
| 96 |
|
| 97 |
AC_ARG_ENABLE(Wnn, |
| 98 |
[ --enable-Wnn build and install Wnn [default=yes]], |
| 99 |
[case "${enableval}" in |
| 100 |
yes) Wnn="Wnn";; |
| 101 |
no) Wnn="" ;; |
| 102 |
*) AC_MSG_ERROR(bad value for --enable-Wnn) ;; |
| 103 |
esac], Wnn="Wnn") |
| 104 |
AC_SUBST(Wnn) |
| 105 |
|
| 106 |
if test "$server" = true -a "$Wnn" = Wnn; then |
| 107 |
# JSERVER_SUBDIRS1="\$(JSERVER_SUBDIRS1)" |
| 108 |
JSERVER_SUBDIRS2="\$(JSERVER_SUBDIRS2)" |
| 109 |
else |
| 110 |
# JSERVER_SUBDIRS1="" |
| 111 |
JSERVER_SUBDIRS2="" |
| 112 |
fi |
| 113 |
dnl AC_SUBST(JSERVER_SUBDIRS1) |
| 114 |
AC_SUBST(JSERVER_SUBDIRS2) |
| 115 |
|
| 116 |
AC_ARG_ENABLE(cWnn, |
| 117 |
[ --enable-cWnn build and install cWnn [default=yes]], |
| 118 |
[case "${enableval}" in |
| 119 |
yes) cWnn="cWnn" ;; |
| 120 |
no) cWnn="" ;; |
| 121 |
*) AC_MSG_ERROR(bad value for --enable-cWnn) ;; |
| 122 |
esac], cWnn="cWnn") |
| 123 |
AC_SUBST(cWnn) |
| 124 |
|
| 125 |
AC_ARG_ENABLE(kWnn, |
| 126 |
[ --enable-kWnn build and install kWnn [default=yes]], |
| 127 |
[case "${enableval}" in |
| 128 |
yes) kWnn="kWnn" ;; |
| 129 |
no) kWnn="" ;; |
| 130 |
*) AC_MSG_ERROR(bad value for --enable-kWnn) ;; |
| 131 |
esac], kWnn="kWnn") |
| 132 |
AC_SUBST(kWnn) |
| 133 |
|
| 134 |
dnl For a library libwnn |
| 135 |
|
| 136 |
dnl AC_ARG_WITH(libwnn, |
| 137 |
dnl [ --with-libwnn use installed Wnn library [default=no]], |
| 138 |
dnl [case "${withval}" in |
| 139 |
dnl yes|no) with_libwnn=${withval};; |
| 140 |
dnl *) AC_MSG_ERROR(invalid argument to --with-libwnn) ;; |
| 141 |
dnl esac], with_libwnn=no) |
| 142 |
dnl |
| 143 |
|
| 144 |
AC_ARG_WITH(libwnn, |
| 145 |
[ --with-libwnn use installed Wnn library [default=no]], |
| 146 |
[ with_libwnn="${withval}" |
| 147 |
AC_ARG_WITH(wnn-includes, |
| 148 |
[ --with-wnn-includes=DIR WNN include files are in DIR], |
| 149 |
[wnnincludedir="-I${withval}"], [wnnincludedir='']) |
| 150 |
AC_ARG_WITH(wnn-libraries, |
| 151 |
[ --with-wnn-libraries=DIR Search for WNN libraries in DIR[default=/usr/local/lib]], |
| 152 |
[wnnlibdir="${withval}"], [wnnlibdir='/usr/local/lib']) |
| 153 |
if test "X${with_libwnn}" = X-lwnn; then |
| 154 |
WNNJLIB="-L${wnnlibdir} -lwnn" |
| 155 |
elif test X"`echo ${with_libwnn} | grep '^/.*'`" != X ; then |
| 156 |
WNNJLIB="${with_libwnn}" |
| 157 |
else |
| 158 |
WNNJLIB="${wnnlibdir}/libwnn.a" |
| 159 |
fi |
| 160 |
DEPWNNJLIB="" |
| 161 |
HINSI_DATA="\$(JWNNWNNDIR)/hinsi.data" |
| 162 |
], |
| 163 |
[ WNNJLIB="\$(WNNJLIBSRC)/libwnn.la" |
| 164 |
DEPWNNJLIB="\$(WNNJLIB)" |
| 165 |
HINSI_DATA="\$(WNNJDSRC)/hinsi.data" |
| 166 |
]) |
| 167 |
AC_SUBST(WNNJLIB) |
| 168 |
AC_SUBST(DEPWNNJLIB) |
| 169 |
AC_SUBST(HINSI_DATA) |
| 170 |
|
| 171 |
AC_ARG_WITH(libcwnn, |
| 172 |
[ --with-libcwnn use installed cWnn library [default=no]], |
| 173 |
[ |
| 174 |
AC_ARG_WITH(cwnn-includes, |
| 175 |
[ --with-cwnn-includes=DIR CWNN include files are in DIR], |
| 176 |
[cwnnincludedir="-I${withval}"], [cwnnincludedir='']) |
| 177 |
AC_ARG_WITH(cwnn-libraries, |
| 178 |
[ --with-cwnn-libraries=DIR Search for CWNN libraries in DIR[default=/usr/local/lib]], |
| 179 |
[cwnnlibdir="${withval}"], [cwnnlibdir='/usr/local/lib']) |
| 180 |
if test "X${with_libcwnn}" = X-lcwnn; then |
| 181 |
CWNNJLIB="-L${cwnnlibdir} -lcwnn" |
| 182 |
elif test X"`echo ${with_libcwnn} | grep '^/.*'`" != X ; then |
| 183 |
CWNNJLIB="${with_libcwnn}" |
| 184 |
else |
| 185 |
CWNNJLIB="${cwnnlibdir}/libcwnn.a" |
| 186 |
fi |
| 187 |
DEPCWNNJLIB="" |
| 188 |
CHINSI_DATA="\$(CWNNWNNDIR)/cixing.data" |
| 189 |
THINSI_DATA="\$(TWNNTDSRC)/cixing.data" |
| 190 |
], |
| 191 |
[ CWNNJLIB="\$(CWNNJLIBSRC)/libcwnn.la" |
| 192 |
DEPCWNNJLIB="\$(CWNNJLIB)" |
| 193 |
CHINSI_DATA="\$(CWNNCDSRC)/cixing.data" |
| 194 |
THINSI_DATA="\$(TWNNTDSRC)/cixing.data" |
| 195 |
]) |
| 196 |
AC_SUBST(CWNNJLIB) |
| 197 |
AC_SUBST(DEPCWNNJLIB) |
| 198 |
AC_SUBST(CHINSI_DATA) |
| 199 |
AC_SUBST(THINSI_DATA) |
| 200 |
|
| 201 |
AC_ARG_WITH(libkwnn, |
| 202 |
[ --with-libkwnn use installed kWnn library [default=no]], |
| 203 |
[ |
| 204 |
AC_ARG_WITH(kwnn-includes, |
| 205 |
[ --with-kwnn-includes=DIR KWNN include files are in DIR], |
| 206 |
[kwnnincludedir="-I${withval}"], [kwnnincludedir='']) |
| 207 |
AC_ARG_WITH(kwnn-libraries, |
| 208 |
[ --with-kwnn-libraries=DIR Search for KWNN libraries in DIR[default=/usr/local/lib]], |
| 209 |
[kwnnlibdir="${withval}"], [kwnnlibdir='/usr/local/lib']) |
| 210 |
if test "X${with_libkwnn}" = X-lkwnn; then |
| 211 |
KWNNJLIB="-L${kwnnlibdir} -lkwnn" |
| 212 |
elif test X"`echo ${with_libkwnn} | grep '^/.*'`" != X ; then |
| 213 |
KWNNJLIB="${with_libkwnn}" |
| 214 |
else |
| 215 |
KWNNJLIB="${kwnnlibdir}/libkwnn.a" |
| 216 |
fi |
| 217 |
DEPKWNNJLIB="" |
| 218 |
KHINSI_DATA="\$(KWNNWNNDIR)/hinsi.data" |
| 219 |
], |
| 220 |
[ KWNNJLIB="\$(KWNNJLIBSRC)/libkwnn.la" |
| 221 |
DEPKWNNJLIB="\$(KWNNJLIB)" |
| 222 |
KHINSI_DATA="\$(KWNNKDSRC)/hinsi.data" |
| 223 |
]) |
| 224 |
AC_SUBST(KWNNJLIB) |
| 225 |
AC_SUBST(DEPKWNNJLIB) |
| 226 |
AC_SUBST(KHINSI_DATA) |
| 227 |
|
| 228 |
dnl |
| 229 |
dnl Build Options |
| 230 |
dnl |
| 231 |
|
| 232 |
AC_ARG_ENABLE(ipv6, |
| 233 |
[ --enable-ipv6 build and install IPv6 [default=no]], |
| 234 |
[case "${enableval}" in |
| 235 |
yes) ipv6="-DINET6";; |
| 236 |
no) ipv6="" ;; |
| 237 |
*) AC_MSG_ERROR(bad value for --enable-ipv6) ;; |
| 238 |
esac], ipv6="") |
| 239 |
AC_SUBST(ipv6) |
| 240 |
|
| 241 |
AC_ARG_ENABLE(unsafe-path, |
| 242 |
[ --enable-unsafe-path allow creating files in an arbitrary path [default=no]], |
| 243 |
[case "${enableval}" in |
| 244 |
yes) unsafe_path=true;; |
| 245 |
no) unsafe_path=false;; |
| 246 |
*) AC_MSG_ERROR(bad value for --enable-unsafe-path) ;; |
| 247 |
esac], unsafe_path=false) |
| 248 |
AC_SUBST(unsafe_path) |
| 249 |
|
| 250 |
if test ${unsafe_path} = true; then |
| 251 |
AC_DEFINE(WNN_ALLOW_UNSAFE_PATH) |
| 252 |
fi |
| 253 |
|
| 254 |
dnl |
| 255 |
dnl Checks for cc and cpp. |
| 256 |
dnl |
| 257 |
AC_PROG_CC |
| 258 |
|
| 259 |
dnl Use environment variable (if set). It will be overridden |
| 260 |
dnl in supported system though... |
| 261 |
CDEBUGFLAGS=${CDEBUGFLAGS:-"-O"} |
| 262 |
case $host in |
| 263 |
*-*-linux*) |
| 264 |
CCOPTIONS="-Dlinux -D_POSIX_SOURCE -D_BSD_SOURCE" |
| 265 |
CDEBUGFLAGS="-O2 -fno-strength-reduce" |
| 266 |
;; |
| 267 |
*-*-freebsd*|*-*-netbsd*|*-*-openbsd*) |
| 268 |
CDEBUGFLAGS="-O2 -fno-strength-reduce" |
| 269 |
;; |
| 270 |
*-*-bsdi*) |
| 271 |
CDEBUGFLAGS="-O2 -fno-strength-reduce" |
| 272 |
;; |
| 273 |
*-*-sunos*) |
| 274 |
if test $GCC = yes; then |
| 275 |
CCOPTIONS="-Dsun -Dsparc" |
| 276 |
CDEBUGFLAGS=-O2 |
| 277 |
else |
| 278 |
CCOPTIONS="" |
| 279 |
CDEBUGFLAGS=-O4 |
| 280 |
fi |
| 281 |
;; |
| 282 |
*-*-solaris2.*) |
| 283 |
# Will 'solaris*' be OK? |
| 284 |
if test $GCC = yes; then |
| 285 |
CCOPTIONS="-Dsun -D`uname -p` -DSVR4 -DSYSV" |
| 286 |
CDEBUGFLAGS=-O2 |
| 287 |
else |
| 288 |
CCOPTIONS="-Xc -xF -xcg92 -Dsun -D`uname -p` -DSVR4 -DSYSV" |
| 289 |
CDEBUGFLAGS=-O4 |
| 290 |
fi |
| 291 |
;; |
| 292 |
*-*-hpux*) |
| 293 |
if test $GCC = yes; then |
| 294 |
CCOPTIONS="-Dhpux -DSYSV" |
| 295 |
CDEBUGFLAGS=-O2 |
| 296 |
else |
| 297 |
CCOPTIONS="-Ae -Dhpux -DSYSV" |
| 298 |
fi |
| 299 |
;; |
| 300 |
i[[34567]]86-pc-beos*) |
| 301 |
CCOPTIONS="-DBEOS -D_POSIX_SOURCE -D_BSD_SOURCE" |
| 302 |
CDEBUGFLAGS="-O2 -fno-strength-reduce" |
| 303 |
;; |
| 304 |
powerpc-*-beos*) |
| 305 |
CCOPTIONS="-DBEOS -D_POSIX_SOURCE -D_BSD_SOURCE" |
| 306 |
;; |
| 307 |
*-*-aix*) |
| 308 |
if test $GCC = yes; then |
| 309 |
CDEBUGFLAGS=-O2 |
| 310 |
else |
| 311 |
CDEBUGFLAGS=-O |
| 312 |
fi |
| 313 |
CCOPTIONS="-DSYSV" |
| 314 |
;; |
| 315 |
*) |
| 316 |
AC_MSG_WARN("It is not reported if FreeWnn works on this system. But continuing...") |
| 317 |
AC_MSG_WARN([(It may or may not work if you set CCOPTIONS properly.)]) |
| 318 |
;; |
| 319 |
esac |
| 320 |
|
| 321 |
dnl Checking if we use gcc or not |
| 322 |
if test $debug = true; then |
| 323 |
if test $GCC = yes; then |
| 324 |
CDEBUGFLAGS="-g2 -Wall -fstack-check $CDEBUGFLAGS" |
| 325 |
fi |
| 326 |
INSTPGMFLAGS= |
| 327 |
else |
| 328 |
INSTPGMFLAGS="-s" |
| 329 |
fi |
| 330 |
AC_SUBST(INSTPGMFLAGS) |
| 331 |
|
| 332 |
echo "Set CDEBUGFLAGS and CCOPTIONS to following:" |
| 333 |
echo ' CDEBUGFLAGS="'"$CDEBUGFLAGS"'"' |
| 334 |
echo ' CCOPTIONS="'"$CCOPTIONS"'"' |
| 335 |
|
| 336 |
dnl ��������������������������������configure������������CPP������������ |
| 337 |
dnl ������������������������������������CPP������������������������ |
| 338 |
dnl ��CPP=${CPP:-"/usr/ccs/lib/cpp"}������������������������������������ |
| 339 |
dnl ���������������� |
| 340 |
AC_PROG_CPP |
| 341 |
|
| 342 |
dnl |
| 343 |
dnl Checks for programs. |
| 344 |
dnl |
| 345 |
dnl ### AC_PROG_YACC |
| 346 |
dnl ### AC_PROG_LEX |
| 347 |
AC_PROG_INSTALL |
| 348 |
AC_PROG_LN_S |
| 349 |
AC_PROG_MAKE_SET |
| 350 |
AC_PROG_LIBTOOL |
| 351 |
AC_SUBST(LIBTOOL_DEPS) |
| 352 |
AC_SUBST(CCOPTIONS) |
| 353 |
AC_SUBST(CDEBUGFLAGS) |
| 354 |
|
| 355 |
dnl Checks for libraries. |
| 356 |
dnl ### dnl Replace `main' with a function in -lX11: |
| 357 |
dnl ### AC_CHECK_LIB(X11, main) |
| 358 |
dnl ### dnl Replace `main' with a function in -lcurses: |
| 359 |
dnl ### AC_CHECK_LIB(curses, main) |
| 360 |
|
| 361 |
AC_CHECK_LIB(crypt, crypt) |
| 362 |
AC_CHECK_LIB(socket, connect) |
| 363 |
AC_CHECK_LIB(bind, getservbyname) |
| 364 |
AC_CHECK_LIB(nsl, gethostbyname) |
| 365 |
|
| 366 |
dnl |
| 367 |
dnl Checks for header files. |
| 368 |
dnl |
| 369 |
AC_PATH_X |
| 370 |
AC_HEADER_STDC |
| 371 |
AC_HEADER_SYS_WAIT |
| 372 |
AC_CHECK_HEADERS(fcntl.h sgtty.h syslog.h unistd.h \ |
| 373 |
sys/file.h sys/ioctl.h sys/time.h sys/types.h sys/param.h \ |
| 374 |
malloc.h strings.h memory.h \ |
| 375 |
curses.h ncurses.h term.h termio.h \ |
| 376 |
) |
| 377 |
dnl If you don't use ansidecl.h, use this (and modify Wnn/jserver/error.c) |
| 378 |
dnl AC_CHECK_HEADERS(stdarg.h varargs.h, break) |
| 379 |
|
| 380 |
dnl |
| 381 |
dnl Checks for typedefs, structures, and compiler characteristics. |
| 382 |
dnl |
| 383 |
AC_TYPE_MODE_T |
| 384 |
AC_HEADER_TIME |
| 385 |
AC_CHECK_TYPE(time_t, long) |
| 386 |
|
| 387 |
dnl |
| 388 |
dnl socklen_t �� sys/socket.h �� bits/socket.h ���������������������� |
| 389 |
dnl AC_CHECK_TYPE ���������������� |
| 390 |
dnl |
| 391 |
dnl AC_MSG_CHECKING(for socklen_t) |
| 392 |
dnl AC_EGREP_CPP(socklen_t, [#include <sys/socket.h>], AC_MSG_RESULT(yes), |
| 393 |
dnl [ |
| 394 |
dnl AC_DEFINE(socklen_t, int) |
| 395 |
dnl AC_MSG_RESULT(no) |
| 396 |
dnl ]) |
| 397 |
AC_CHECK_TYPES(socklen_t,, |
| 398 |
AC_DEFINE(socklen_t, int), |
| 399 |
[INCLUDES = sys/socket.h]) |
| 400 |
|
| 401 |
dnl |
| 402 |
dnl Checks for symbol |
| 403 |
dnl |
| 404 |
|
| 405 |
AC_MSG_CHECKING(for RAND_MAX) |
| 406 |
AC_EGREP_CPP(yes, |
| 407 |
[#include <stdlib.h> |
| 408 |
#ifdef RAND_MAX |
| 409 |
yes |
| 410 |
#endif |
| 411 |
],AC_DEFINE(HAVE_RAND_MAX)) |
| 412 |
|
| 413 |
dnl |
| 414 |
dnl Checks for library functions. |
| 415 |
dnl |
| 416 |
AC_PROG_GCC_TRADITIONAL |
| 417 |
|
| 418 |
dnl idea borrowed from EB Library http://www.sra.co.jp/people/m-kasahr/eb/ |
| 419 |
AC_TYPE_SIGNAL |
| 420 |
if test "$ac_cv_type_signal" = void; then |
| 421 |
AC_DEFINE(RETSIGTYPE_VOID, 1, [Define if the signal function returns void.]) |
| 422 |
fi |
| 423 |
|
| 424 |
AC_FUNC_MEMCMP |
| 425 |
AC_CHECK_FUNCS(wait3 setpgrp) |
| 426 |
AC_FUNC_SETPGRP |
| 427 |
dnl FreeWnn do not use the 3rd parameter of wait3(). |
| 428 |
dnl AC_FUNC_WAIT3 |
| 429 |
|
| 430 |
AC_CHECK_FUNCS(drand48 fchmod \ |
| 431 |
gethostname select socket closesocket setsockopt send recv \ |
| 432 |
getdtablesize getrlimit syslog vsyslog setenv snprintf) |
| 433 |
dnl for bcopy/index -> memcpy/strchr conversion (preparation): |
| 434 |
AC_CHECK_FUNCS(bcopy bzero bcmp index rindex \ |
| 435 |
memcpy memmove memset strchr strrchr) |
| 436 |
|
| 437 |
dnl Check fallback functions for jserver (should use AC_REPLACE_FUNCS?) |
| 438 |
JS_SUPPORTOBJS= |
| 439 |
AC_CHECK_FUNCS(mkdir vasprintf, , |
| 440 |
[JS_SUPPORTOBJS="${JS_SUPPORTOBJS} ${ac_func}.o"]) |
| 441 |
AC_SUBST(JS_SUPPORTOBJS) |
| 442 |
|
| 443 |
|
| 444 |
dnl |
| 445 |
dnl Creating Makefiles. |
| 446 |
dnl |
| 447 |
# mkdir -p Contrib/dic/gerodic in case builddir != srcdir |
| 448 |
for dir in Contrib Contrib/dic Contrib/dic/gerodic; do |
| 449 |
if test ! -d $dir; then |
| 450 |
echo "creating $dir ..." |
| 451 |
mkdir $dir |
| 452 |
fi |
| 453 |
done |
| 454 |
|
| 455 |
dnl |
| 456 |
dnl Generate Makefiles |
| 457 |
dnl |
| 458 |
|
| 459 |
dnl Generic |
| 460 |
|
| 461 |
makefiles_generic="makerule.mk Makefile" |
| 462 |
|
| 463 |
dnl Japanese |
| 464 |
|
| 465 |
if test "x${Wnn}" = "xWnn"; then |
| 466 |
makefiles_wnn="Wnn/Makefile Wnn/conv/Makefile Wnn/include/Makefile \ |
| 467 |
Wnn/jd/Makefile Wnn/jd/rk/Makefile Wnn/jd/rk.vi/Makefile \ |
| 468 |
Wnn/jlib/Makefile Wnn/jlib.V3/Makefile Wnn/jserver/Makefile \ |
| 469 |
Wnn/jutil/Makefile Wnn/ld/Makefile Wnn/ld/rk/Makefile \ |
| 470 |
Wnn/romkan/Makefile Wnn/uum/Makefile \ |
| 471 |
Wnn/man/Makefile Wnn/man/2.env/Makefile Wnn/man/3.libwnn/Makefile \ |
| 472 |
Wnn/man/4.cmd/Makefile Wnn/man/6.jutil/Makefile \ |
| 473 |
Wnn/man/2.env/dic/Makefile Wnn/man/2.env/wnn/Makefile \ |
| 474 |
Wnn/man/3.libwnn/jl_lib/Makefile Wnn/man/3.libwnn/js_lib/Makefile \ |
| 475 |
Wnn/man/3.libwnn/misc_lib/Makefile Wnn/man/3.libwnn/rk_lib/Makefile" |
| 476 |
makefiles_wnn_dic="Contrib/dic/gerodic/Makefile Wnn/pubdicplus/Makefile \ |
| 477 |
Wnn/wnncons/Makefile Wnn/wnncons/dic/Makefile" |
| 478 |
fi |
| 479 |
|
| 480 |
dnl Chinese and Taiwanese |
| 481 |
|
| 482 |
if test "x$cWnn" = "xcWnn"; then |
| 483 |
makefiles_cwnn="cWnn/Makefile cWnn/conv/Makefile cWnn/etc/Makefile \ |
| 484 |
cWnn/cd/Makefile cWnn/cd/rk/Makefile \ |
| 485 |
cWnn/cd/rk_p/Makefile cWnn/cd/rk_z/Makefile \ |
| 486 |
cWnn/td/Makefile cWnn/td/rk/Makefile \ |
| 487 |
cWnn/td/rk_z/Makefile cWnn/td/rk_p/Makefile \ |
| 488 |
cWnn/include/Makefile cWnn/jlib/Makefile \ |
| 489 |
cWnn/jserver/Makefile cWnn/jutil/Makefile \ |
| 490 |
cWnn/man/Makefile cWnn/man/1.intro/Makefile cWnn/man/2.env/Makefile \ |
| 491 |
cWnn/man/4.cmd/Makefile cWnn/man/6.jutil/Makefile \ |
| 492 |
cWnn/romkan/Makefile cWnn/uum/Makefile" |
| 493 |
makefiles_cwnn_dic="cWnn/cdic/Makefile cWnn/tdic/Makefile" |
| 494 |
fi |
| 495 |
|
| 496 |
dnl Korean |
| 497 |
|
| 498 |
if test "x$kWnn" = "xkWnn"; then |
| 499 |
makefiles_kwnn="kWnn/Makefile kWnn/conv/Makefile kWnn/etc/Makefile \ |
| 500 |
kWnn/include/Makefile kWnn/jlib/Makefile kWnn/jutil/Makefile \ |
| 501 |
kWnn/jserver/Makefile kWnn/kd/Makefile kWnn/kd/rk/Makefile \ |
| 502 |
kWnn/romkan/Makefile kWnn/uum/Makefile" |
| 503 |
makefiles_kwnn_dic="kWnn/kdic/Makefile" |
| 504 |
fi |
| 505 |
|
| 506 |
AC_OUTPUT(${makefiles_generic} \ |
| 507 |
${makefiles_wnn} ${makefiles_wnn_dic} \ |
| 508 |
${makefiles_cwnn} ${makefiles_cwnn_dic} \ |
| 509 |
${makefiles_kwnn} ${makefiles_kwnn_dic}) |