configure.ac 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. m4_define([MAJOR_VERSION], 1)
  4. m4_define([MINOR_VERSION], 5)
  5. m4_define([MICRO_VERSION], 3)
  6. AC_PREREQ(2.59)
  7. AC_INIT([klish],
  8. [MAJOR_VERSION.MINOR_VERSION.MICRO_VERSION],
  9. [serj.kalichev at gmail dot com])
  10. AC_CONFIG_AUX_DIR(aux_scripts)
  11. # Check for system extensions (_POSIX_THREAD_SEMANTICS for Solaris)
  12. AC_USE_SYSTEM_EXTENSIONS
  13. # Checks for programs.
  14. AC_PROG_CC
  15. AC_PROG_CXX
  16. AC_LIBTOOL_WIN32_DLL
  17. AC_PROG_LIBTOOL
  18. AC_CONFIG_HEADERS([config.h])
  19. AM_INIT_AUTOMAKE(subdir-objects)
  20. AM_PROG_CC_C_O
  21. # needed to handle 64-bit architecture
  22. AC_CHECK_SIZEOF(int)
  23. AC_CHECK_SIZEOF(long)
  24. AC_CHECK_SIZEOF(size_t)
  25. #------------------------------------------------------------------------
  26. # Handle the --prefix=... option
  27. #------------------------------------------------------------------------
  28. if test "${prefix}" = "NONE"; then
  29. prefix=/usr/local
  30. fi
  31. if test "${exec_prefix}" = "NONE"; then
  32. exec_prefix=$prefix
  33. fi
  34. # libdir must be a fully qualified path (not ${exec_prefix}/lib)
  35. eval libdir="$libdir"
  36. ################################
  37. # Deal with debugging options
  38. ################################
  39. AC_ARG_ENABLE(debug,
  40. [AS_HELP_STRING([--enable-debug],
  41. [Turn on debugging including asserts [default=no]])],
  42. [],
  43. [enable_debug=no])
  44. AM_CONDITIONAL(DEBUG,test x$enable_debug = xyes)
  45. ################################
  46. # Check for the LUB library
  47. ################################
  48. LUB_LIBS="-llub"
  49. LUB_CFLAGS=""
  50. if test "x$LUB_LIBS" = "x"; then
  51. AC_MSG_ERROR([Cannot find the "Little Useful Bits" library])
  52. fi
  53. AC_SUBST(LUB_LIBS)
  54. AC_SUBST(LUB_CFLAGS)
  55. ################################
  56. # Check for the KONF library
  57. ################################
  58. KONF_LIBS="-lkonf"
  59. KONF_CFLAGS=""
  60. if test "x$KONF_LIBS" = "x"; then
  61. AC_MSG_ERROR([Cannot find the "CLI config" library])
  62. fi
  63. AC_SUBST(KONF_LIBS)
  64. AC_SUBST(KONF_CFLAGS)
  65. ################################
  66. # Check for the TINYRL library
  67. ################################
  68. TINYRL_LIBS="-ltinyrl"
  69. TINYRL_CFLAGS=""
  70. if test "x$TINYRL_LIBS" = "x"; then
  71. AC_MSG_ERROR([Cannot find the "Tiny Readline" library])
  72. fi
  73. AC_SUBST(TINYRL_LIBS)
  74. AC_SUBST(TINYRL_CFLAGS)
  75. ################################
  76. # Check for the TINYXML library
  77. ################################
  78. TINYXML_LIBS="-ltinyxml"
  79. TINYXML_CXXFLAGS="-std=gnu++98"
  80. if test "x$TINYXML_LIBS" = "x"; then
  81. AC_MSG_ERROR([Cannot find the "Tiny XML" library])
  82. fi
  83. AC_SUBST(TINYXML_LIBS)
  84. AC_SUBST(TINYXML_CXXFLAGS)
  85. ################################
  86. # Check for the PTHREAD library
  87. ################################
  88. AC_ARG_WITH(pthread,
  89. [AS_HELP_STRING([--with-pthread=DIR],
  90. [Use POSIX threads library distribution in DIR])
  91. ])
  92. AC_CHECK_HEADERS(pthread.h,
  93. [AC_SEARCH_LIBS([pthread_create], [pthread],
  94. [AC_DEFINE([HAVE_LIBPTHREAD], [], [Have POSIX threads library])
  95. if test "x$with_pthread" = "x"; then
  96. PTHREAD_LIBS="-lpthread"
  97. else
  98. PTHREAD_CFLAGS="-I$with_pthread/include"
  99. PTHREAD_LIBS="-L$with_pthread/lib -lpthread"
  100. fi
  101. AC_SUBST(PTHREAD_LIBS)
  102. AC_SUBST(PTHREAD_CFLAGS)
  103. ])
  104. ])
  105. if test "x$PTHREAD_LIBS" = "x"; then
  106. AC_MSG_ERROR([Cannot find the POSIX threads library])
  107. fi
  108. ################################
  109. # Check for the RT library
  110. ################################
  111. AC_ARG_WITH(rt,
  112. [AS_HELP_STRING([--with-rt=DIR],
  113. [Use POSIX real time library distribution in DIR])])
  114. AC_CHECK_LIB(rt,
  115. clock_gettime,
  116. [
  117. AC_DEFINE([HAVE_LIBRT], [], [Have POSIX real time library])
  118. if test "x$with_rt" = "x"; then
  119. RT_LIBS="-lrt"
  120. else
  121. RT_CFLAGS="-I$with_rt/include"
  122. RT_LIBS="-L$with_rt/lib -lrt"
  123. fi
  124. AC_SUBST(RT_LIBS)
  125. AC_SUBST(RT_CFLAGS)
  126. ])
  127. ################################
  128. # Check for the TCL library
  129. ################################
  130. TCL_CONFIG=${libdir}/tclConfig.sh
  131. AC_ARG_WITH(tcl,
  132. [AS_HELP_STRING([--with-tcl=DIR],
  133. [Use TCL library distribution in DIR])],
  134. if test -e $TCL_CONFIG; then
  135. source ${TCL_CONFIG} # get TCL_VERSION
  136. if test "${with_tcl}" = "yes"; then
  137. TCL_CFLAGS="${TCL_INCLUDE_SPEC}"
  138. TCL_LIBS="${TCL_LIB_SPEC}"
  139. else
  140. TCL_CFLAGS="-I${with_tcl}/include"
  141. TCL_LIBS="-L${with_tcl}/lib -ltcl"
  142. fi
  143. CPPFLAGS="$CPPFLAGS $TCL_CFLAGS"
  144. AC_CHECK_HEADERS(tcl.h,
  145. AC_CHECK_LIB(tcl${TCL_VERSION}, Tcl_CreateInterp, [
  146. AC_DEFINE([HAVE_LIBTCL], [], [Have TCL library])
  147. AC_SUBST(TCL_CFLAGS)
  148. AC_SUBST(TCL_LIBS)
  149. AC_SUBST(TCL_VERSION)
  150. have_tcl="yes"
  151. ])
  152. )
  153. fi
  154. )
  155. AM_CONDITIONAL(TCL,test "x${have_tcl}" = "xyes")
  156. ################################
  157. # Check for inclusion of lub_heap
  158. ################################
  159. AC_ARG_ENABLE(lubheap,
  160. [AS_HELP_STRING([--enable-lubheap],
  161. [Replace standard memory libaries with lubheap (EXPERIMENTAL) [default=no]])],
  162. [],
  163. [enable_lubheap=no])
  164. AM_CONDITIONAL(LUBHEAP,test "x$enable_lubheap" = "xyes")
  165. if test "x$enable_lubheap" = "xyes"; then
  166. AC_MSG_WARN([Replacing standard memory libraries with lubheap])
  167. LUBHEAP_LIBS="-llubheap"
  168. LUBHEAP_CFLAGS=""
  169. if test "x$LUBHEAP_LIBS" = "x"; then
  170. AC_MSG_ERROR([Cannot find the "Little Useful Bits Heap" library])
  171. fi
  172. AC_SUBST(LUBHEAP_LIBS)
  173. AC_SUBST(LUBHEAP_CFLAGS)
  174. fi
  175. ################################
  176. # Check for linkage with GPL libraries
  177. ################################
  178. AC_ARG_ENABLE(gpl,
  179. [AS_HELP_STRING([--enable-gpl],
  180. [Link with GPL licenced libraries [default=yes]])],
  181. [],
  182. [enable_gpl=yes])
  183. if test "x$enable_gpl" = "xyes"; then
  184. ################################
  185. # Check for BFD library
  186. ################################
  187. AC_MSG_WARN([Linking with GPL licence libraries])
  188. AC_CHECK_HEADERS(bfd.h,
  189. [AC_CHECK_LIB(bfd,
  190. bfd_init,
  191. [AC_DEFINE([HAVE_LIBBFD],
  192. [],
  193. [Have Binary File Decription library])
  194. BFD_LIBS="-lbfd -liberty"
  195. AC_CHECK_LIB(intl,
  196. libintl_dgettext,
  197. [AC_DEFINE([HAVE_LIBINTL],
  198. [],
  199. [Have native langauage support library])
  200. BFD_LIBS="$BFD_LIBS -lintl"
  201. ])
  202. AC_SUBST(BFD_LIBS)
  203. ])
  204. ])
  205. else
  206. AC_MSG_WARN([Skipping BFD library checks because of GPL Licence])
  207. fi
  208. ################################
  209. # Search for network functions (like connect())
  210. ################################
  211. AC_SEARCH_LIBS([socket], [socket])
  212. ################################
  213. # Check for regex.h
  214. ################################
  215. AC_CHECK_HEADERS(regex.h, [],
  216. AC_MSG_ERROR([regex.h not found: regular expressions are not supported]))
  217. ################################
  218. # Check for getopt_long()
  219. ################################
  220. AC_CHECK_HEADERS(getopt.h, [],
  221. AC_MSG_WARN([getopt.h not found: only short parameters can be used on command line]))
  222. ################################
  223. # Check for locale.h
  224. ################################
  225. AC_CHECK_HEADERS(locale.h, [],
  226. AC_MSG_WARN([locale.h not found: the locales is not supported]))
  227. ################################
  228. # Check for CODESET within nl_langinfo
  229. ################################
  230. AM_LANGINFO_CODESET
  231. ################################
  232. # Check for pwd.h and grp.h
  233. ################################
  234. AC_CHECK_HEADERS(pwd.h, [],
  235. AC_MSG_WARN([pwd.h not found: the pwd operations is not supported]))
  236. AC_CHECK_HEADERS(grp.h, [],
  237. AC_MSG_WARN([grp.h not found: the grp operations is not supported]))
  238. ################################
  239. # Check for chroot
  240. ################################
  241. AC_CHECK_FUNCS(chroot, [],
  242. AC_MSG_WARN([chroot() not found: the choot is not supported]))
  243. AC_CONFIG_FILES(Makefile)
  244. AC_OUTPUT