123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- dnl Process this file with autoconf to produce a configure script.
- AC_PREREQ(2.59)
- AC_INIT(Open62541, 1.0)
- AC_CANONICAL_SYSTEM
- AM_INIT_AUTOMAKE([subdir-objects])
- AC_PROG_MAKE_SET
- #default CFLAGS is -g -02
- #reset it just to -g and make optimization dependend on --enable-debug
- if test -z $CFLAGS; then
- CFLAGS='-g'
- fi
- AM_PATH_PYTHON
- AC_PROG_CC
- AC_PROG_LN_S
- AM_PROG_CC_C_O
- AC_CHECK_LIB([m],[exp],,AC_MSG_ERROR([Libm missing]))
- AC_CHECK_LIB([expat],[XML_Parse],,AC_MSG_ERROR([Libexpat missing]))
- PKG_CHECK_MODULES([CHECK], [check >= 0.9.12],[have_check="yes"],AC_MSG_WARN([Check not found or check version lower than 0.9.12; cannot run unit tests!])
- [have_check="no"])
- AM_CONDITIONAL([HAVE_CHECK], [test x"$have_check" = "xyes"])
- AM_CONDITIONAL([TARGET_WIN],[test "${host_os}" = "mingw32"])
- AM_CONDITIONAL([TARGET_LINUX],[test "${host_os}" = "linux-gnu" || test "${host_os}" = "linux"])
- #adding platform-dependent information to compile flags
- AM_COND_IF([TARGET_WIN],
- AC_DEFINE([WINDOWS])) #define WINDOWS is accessible from pre-processor
- AM_COND_IF([TARGET_LINUX],
- AC_DEFINE([LINUX]))
-
- AC_ARG_ENABLE(debug,
- AS_HELP_STRING([--enable-debug],
- [enable debugging, default: no]),
- [case "${enableval}" in
- yes) debug=true; verbose=false ;;
- no) debug=false; verbose=false ;;
- verbose) debug=true; verbose=true ;;
- *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
- esac],[debug=false])
- AM_CONDITIONAL(DEBUG, test x"$debug" = x"true")
- AM_COND_IF([DEBUG],
- AC_DEFINE([DEBUG])) #define DEBUG is accessible from pre-processor
- AM_CONDITIONAL(VERBOSE, test x"$verbose" = x"true")
- AM_COND_IF([VERBOSE],
- AC_DEFINE([VERBOSE])) #define VERBOSE is accessible from pre-processor
- AC_ARG_ENABLE(multithreading,
- AS_HELP_STRING([--enable-multithreading],
- [enable multithreading, default: yes]),
- [case "${enableval}" in
- yes) multithreading=true ;;
- no) multithreading=false ;;
- *) AC_MSG_ERROR([bad value ${enableval} for --enable-multithreading]) ;;
- esac],[multithreading=false])
- AM_CONDITIONAL(MULTITHREADING, test x"$multithreading" = x"true")
- AM_COND_IF([MULTITHREADING],
- AC_DEFINE([MULTITHREADING])) #define MULTITHREADING is accessible from pre-processor
- AC_ARG_ENABLE(coverage,
- AS_HELP_STRING([--enable-coverage],
- [enable coverage, default: no]),
- [case "${enableval}" in
- yes) coverage=true ;;
- no) coverag=false ;;
- *) AC_MSG_ERROR([bad value ${enableval} for --enable-coverage]) ;;
- esac],[coverage=false])
- AM_CONDITIONAL(COVERAGE, test x"$coverage" = x"true")
- AM_COND_IF([COVERAGE],
- AC_DEFINE([COVERAGE])) #define MULTITHREADING is accessible from pre-processor
- #doxygen start
- AC_ARG_ENABLE(doxygen,
- AS_HELP_STRING([--enable-doxygen],
- [enable doxygen, default: no]),
- [case "${enableval}" in
- yes) enabledoxygen=true ;;
- no) enabledoxygen=false ;;
- *) AC_MSG_ERROR([bad value ${enableval} for --enable-doxygen]) ;;
- esac],[enabledoxygen=false])
- AM_CONDITIONAL(ENABLE_DOXYGEN, test x"$enabledoxygen" = x"true")
- AC_CHECK_PROGS([DOXYGEN], [doxygen])
- AC_CHECK_PROGS([DOT], [dot])
- #break if doxygen enabled but not present
- if test x"$enabledoxygen" = x"true"; then
- if test -z "$DOXYGEN"; then
- AC_MSG_ERROR([Doxygen not found])
- fi
- if test -z "$DOT"; then
- AC_MSG_ERROR([Graphviz not found])
- fi
- fi
- AM_COND_IF([ENABLE_DOXYGEN], [AC_CONFIG_FILES([doc/Doxyfile])])
- #doxygen end
-
- AC_LIBTOOL_WIN32_DLL
- AC_PROG_LIBTOOL
- AC_CONFIG_MACRO_DIR([m4])
- AC_CONFIG_FILES(Makefile include/Makefile src/Makefile tools/Makefile tests/Makefile examples/src/Makefile doc/Makefile)
- AC_OUTPUT
|