OSDN Git Service

This commit was generated by cvs2svn to compensate for changes in r17,
[lha/lha.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(src/lha.h)
3 AM_INIT_AUTOMAKE(lha, 1.14f)
4 AM_CONFIG_HEADER(config.h)
5
6 AC_CANONICAL_HOST
7
8 dnl Checks for programs.
9 AC_PROG_CC
10 AC_PROG_GCC_TRADITIONAL
11 AC_PROG_INSTALL
12 AC_PROG_MAKE_SET
13
14 dnl on MINIX, define _MINIX and _POSIX_SOURCE
15 AC_MINIX
16
17 AC_EXEEXT
18 AC_OBJEXT
19
20 dnl Checks for libraries.
21
22 dnl Checks for header files.
23 AC_HEADER_DIRENT
24 AC_HEADER_STDC
25 AC_CHECK_HEADERS(fcntl.h limits.h sys/file.h sys/time.h)
26
27 dnl Checks for typedefs, structures, and compiler characteristics.
28 AC_HEADER_TIME
29 AC_STRUCT_TM
30 AC_STRUCT_TIMEZONE
31
32 AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff,
33 [AC_TRY_COMPILE([
34 #if TM_IN_SYS_TIME
35 #include <sys/time.h>
36 #else
37 #include <time.h>
38 #endif
39   ], [struct tm t; t.tm_gmtoff;],
40   ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)
41 ])
42
43 if test "x$ac_cv_struct_tm_gmtoff" = xyes; then
44   AC_DEFINE(HAVE_TM_GMTOFF, 1, [Define if your struct tm has tm_gmtoff])
45 fi
46
47 AC_CACHE_CHECK([for st_ino in struct stat], ac_cv_struct_st_ino,
48 [AC_TRY_COMPILE([
49 #include <sys/types.h>
50 #include <sys/stat.h>
51   ], [struct stat s; s.st_ino;],
52   ac_cv_struct_st_ino=yes, ac_cv_struct_st_ino=no)
53 ])
54
55 if test "x$ac_cv_struct_st_ino" = xyes; then
56   AC_DEFINE(HAVE_ST_INO, 1, [Define if your struct stat has st_ino])
57 fi
58
59 dnl Checks for library functions.
60 AC_TYPE_SIGNAL
61 AC_FUNC_UTIME_NULL
62 AC_CHECK_FUNCS(strchr memcpy)
63 AC_CHECK_FUNCS(mktime timelocal tzset ftime gettimeofday)
64 AC_CHECK_FUNCS(mkdir rmdir strdup memset ftruncate lchown)
65 AC_CHECK_FUNCS(strcasecmp)
66
67 AC_SUBST(LIBOBJS)
68 if test $ac_header_dirent = no; then
69   LIBOBJS="$LIBOBJS lhdir.o"
70 fi
71
72 dnl support kanji code conversion
73 AC_SUBST(DEF_KCODE)
74 AC_ARG_ENABLE(text_conv,
75   [  --enable-text-conv      support text code convert from/to EUC [default=yes]],
76   , enable_text_conv=yes)
77
78 if test $enable_text_conv = yes; then
79   DEF_KCODE=-DEUC
80 fi
81
82 dnl whether use the -lh6- method
83 AC_ARG_ENABLE(lh6,
84   [  --enable-lh6            create the -lh6- archive default [default=no]],
85   , enable_lh6=no)
86
87 if test "x$enable_lh6" = "xyes"; then
88   AC_DEFINE(SUPPORT_LH6, 1, [Define if you want to use the -lh6- method, default])
89 fi
90
91 dnl decide path names
92 AC_MSG_CHECKING(template of the temporary file is )
93 AC_ARG_WITH(tmp_file,
94   [  --with-tmp-file=TEMPLATE temporary file template [default=/tmp/lhXXXXXX]],
95   [case $withval in
96    yes|no) AC_MSG_ERROR(you should have specified path name);;
97    esac],
98   with_tmp_file=/tmp/lhXXXXXX)
99
100 AC_MSG_RESULT($with_tmp_file)
101 AC_DEFINE_UNQUOTED(TMP_FILENAME_TEMPLATE, "$with_tmp_file",
102   [temporary file template])
103
104 dnl incremental indicator
105 AC_ARG_ENABLE(indicator,
106   [  --enable-indicator      need incremental indicator [default=yes]],
107   ,
108   # default
109   enable_indicator=yes)
110
111 if test "x$enable_indicator" = xyes; then
112   AC_DEFINE(NEED_INCREMENTAL_INDICATOR, 1, [Define you want to use the incremental indicator])
113 fi
114
115 dnl support multibyte filename
116 AC_ARG_ENABLE(multibyte-char,
117   [  --enable-multibyte-char support multibyte(sjis) filename [default=yes]],
118   ,
119   # default
120   enable_multibyte_char=yes)
121
122 if test "x$enable_multibyte_char" = xyes; then
123   AC_DEFINE(MULTIBYTE_CHAR, 1, [Define you want to use multibyte filename])
124 fi
125
126 AC_OUTPUT([Makefile src/Makefile man/Makefile])