configure.ac 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT([file],[5.37],[christos@astron.com])
  3. AM_INIT_AUTOMAKE([subdir-objects foreign])
  4. m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
  5. AC_CONFIG_HEADERS([config.h])
  6. AC_CONFIG_MACRO_DIR([m4])
  7. AC_MSG_CHECKING(for builtin ELF support)
  8. AC_ARG_ENABLE(elf,
  9. [ --disable-elf disable builtin ELF support],
  10. [if test "${enableval}" = yes; then
  11. AC_MSG_RESULT(yes)
  12. AC_DEFINE([BUILTIN_ELF], 1, [Define if built-in ELF support is used])
  13. else
  14. AC_MSG_RESULT(no)
  15. fi], [
  16. # enable by default
  17. AC_MSG_RESULT(yes)
  18. AC_DEFINE([BUILTIN_ELF], 1, [Define in built-in ELF support is used])
  19. ])
  20. AC_MSG_CHECKING(for ELF core file support)
  21. AC_ARG_ENABLE(elf-core,
  22. [ --disable-elf-core disable ELF core file support],
  23. [if test "${enableval}" = yes; then
  24. AC_MSG_RESULT(yes)
  25. AC_DEFINE([ELFCORE], 1, [Define for ELF core file support])
  26. else
  27. AC_MSG_RESULT(no)
  28. fi], [
  29. # enable by default
  30. AC_MSG_RESULT(yes)
  31. AC_DEFINE([ELFCORE], 1, [Define for ELF core file support])
  32. ])
  33. AC_MSG_CHECKING(for zlib support)
  34. AC_ARG_ENABLE([zlib],
  35. [AS_HELP_STRING([--disable-zlib], [disable zlib compression support @<:@default=auto@:>@])])
  36. AC_MSG_RESULT($enable_zlib)
  37. AC_MSG_CHECKING(for libseccomp support)
  38. AC_ARG_ENABLE([libseccomp],
  39. [AS_HELP_STRING([--disable-libseccomp], [disable libseccomp sandboxing @<:@default=auto@:>@])])
  40. AC_MSG_RESULT($enable_libseccomp)
  41. AC_MSG_CHECKING(for file formats in man section 5)
  42. AC_ARG_ENABLE(fsect-man5,
  43. [ --enable-fsect-man5 enable file formats in man section 5],
  44. [if test "${enableval}" = yes; then
  45. AC_MSG_RESULT(yes)
  46. fsect=5
  47. else
  48. AC_MSG_RESULT(no)
  49. fsect=4
  50. fi], [
  51. # disable by default
  52. AC_MSG_RESULT(no)
  53. fsect=4
  54. ])
  55. AC_CANONICAL_HOST
  56. case "$host_os" in
  57. mingw32*)
  58. MINGW=1
  59. ;;
  60. *)
  61. MINGW=0
  62. ;;
  63. esac
  64. AC_SUBST(MINGW)
  65. AM_CONDITIONAL(MINGW, test "$MINGW" = 1)
  66. AC_SUBST([pkgdatadir], ['$(datadir)/misc'])
  67. AC_SUBST(fsect)
  68. AM_CONDITIONAL(FSECT5, test x$fsect = x5)
  69. AC_SUBST(WARNINGS)
  70. dnl Checks for programs.
  71. AC_PROG_CC_STDC
  72. AC_USE_SYSTEM_EXTENSIONS
  73. AM_PROG_CC_C_O
  74. AC_C_BIGENDIAN
  75. AC_PROG_INSTALL
  76. AC_PROG_LN_S
  77. LT_INIT([disable-static pic-only])
  78. gl_VISIBILITY
  79. dnl Checks for headers
  80. AC_HEADER_STDC
  81. AC_HEADER_MAJOR
  82. AC_HEADER_SYS_WAIT
  83. AC_CHECK_HEADERS(stdint.h fcntl.h inttypes.h unistd.h)
  84. AC_CHECK_HEADERS(utime.h wchar.h wctype.h)
  85. AC_CHECK_HEADERS(getopt.h err.h xlocale.h)
  86. AC_CHECK_HEADERS(sys/mman.h sys/stat.h sys/types.h sys/utime.h sys/time.h sys/sysmacros.h)
  87. if test "$enable_zlib" != "no"; then
  88. AC_CHECK_HEADERS(zlib.h)
  89. fi
  90. AC_CHECK_TYPE([sig_t],[AC_DEFINE([HAVE_SIG_T],1,[Have sig_t type])],,[#include <signal.h>])
  91. dnl Checks for typedefs, structures, and compiler characteristics.
  92. AC_C_CONST
  93. AC_TYPE_OFF_T
  94. AC_TYPE_SIZE_T
  95. AC_CHECK_MEMBERS([struct stat.st_rdev])
  96. AC_CHECK_MEMBERS([struct tm.tm_gmtoff],,,[#include <time.h>])
  97. AC_STRUCT_TIMEZONE
  98. AC_STRUCT_TIMEZONE_DAYLIGHT
  99. AC_SYS_LARGEFILE
  100. AC_FUNC_FSEEKO
  101. AC_TYPE_MBSTATE_T
  102. AC_STRUCT_OPTION_GETOPT_H
  103. AC_TYPE_PID_T
  104. AC_TYPE_UINT8_T
  105. AC_TYPE_UINT16_T
  106. AC_TYPE_UINT32_T
  107. AC_TYPE_INT32_T
  108. AC_TYPE_UINT64_T
  109. AC_TYPE_INT64_T
  110. AC_TYPE_INTPTR_T
  111. AC_TYPE_UINTPTR_T
  112. AC_FUNC_MMAP
  113. AC_FUNC_FORK
  114. AC_FUNC_MBRTOWC
  115. AC_MSG_CHECKING(for gcc compiler warnings)
  116. AC_ARG_ENABLE(warnings,
  117. [ --disable-warnings disable compiler warnings],
  118. [if test "${enableval}" = no -o "$GCC" = no; then
  119. AC_MSG_RESULT(no)
  120. WARNINGS=
  121. else
  122. AC_MSG_RESULT(yes)
  123. WARNINGS="-Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith \
  124. -Wmissing-declarations -Wredundant-decls -Wnested-externs \
  125. -Wsign-compare -Wreturn-type -Wswitch -Wshadow \
  126. -Wcast-qual -Wwrite-strings -Wextra -Wunused-parameter -Wformat=2"
  127. fi], [
  128. if test "$GCC" = yes; then
  129. AC_MSG_RESULT(yes)
  130. WARNINGS="-Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith \
  131. -Wmissing-declarations -Wredundant-decls -Wnested-externs \
  132. -Wsign-compare -Wreturn-type -Wswitch -Wshadow \
  133. -Wcast-qual -Wwrite-strings -Wextra -Wunused-parameter -Wformat=2"
  134. else
  135. WARNINGS=
  136. AC_MSG_RESULT(no)
  137. fi])
  138. dnl Checks for functions
  139. AC_CHECK_FUNCS(strndup mkstemp mkostemp utimes utime wcwidth strtof newlocale uselocale freelocale memmem)
  140. dnl Provide implementation of some required functions if necessary
  141. AC_REPLACE_FUNCS(getopt_long asprintf vasprintf strlcpy strlcat getline ctime_r asctime_r localtime_r gmtime_r pread strcasestr fmtcheck dprintf)
  142. dnl Checks for libraries
  143. if test "$enable_zlib" != "no"; then
  144. AC_CHECK_LIB(z, gzopen)
  145. fi
  146. if test "$enable_libseccomp" != "no"; then
  147. AC_CHECK_LIB(seccomp, seccomp_init)
  148. fi
  149. if test "$MINGW" = 1; then
  150. AC_CHECK_LIB(gnurx,regexec,,AC_MSG_ERROR([libgnurx is required to build file(1) with MinGW]))
  151. fi
  152. dnl See if we are cross-compiling
  153. AM_CONDITIONAL(IS_CROSS_COMPILE, test "$cross_compiling" = yes)
  154. dnl Final sanity checks
  155. if test "$enable_zlib" = "yes"; then
  156. if test "$ac_cv_header_zlib_h$ac_cv_lib_z_gzopen" != "yesyes"; then
  157. AC_MSG_ERROR([zlib support requested but not found])
  158. fi
  159. fi
  160. if test "$ac_cv_header_zlib_h$ac_cv_lib_z_gzopen" = "yesyes"; then
  161. AC_DEFINE([ZLIBSUPPORT], 1, [Enable zlib compression support])
  162. fi
  163. AC_CONFIG_FILES([Makefile src/Makefile magic/Makefile tests/Makefile doc/Makefile python/Makefile])
  164. AC_OUTPUT