mirror of
https://github.com/libyal/libexe
synced 2026-06-08 15:29:55 +00:00
58 lines
1.4 KiB
Plaintext
58 lines
1.4 KiB
Plaintext
dnl Function to detect if libexe dependencies are available
|
|
AC_DEFUN([AX_LIBEXE_CHECK_LOCAL],
|
|
[dnl Check for internationalization functions in libexe/libexe_i18n.c
|
|
AC_CHECK_FUNCS([bindtextdomain])
|
|
|
|
dnl Check if library should be build with verbose output
|
|
AX_COMMON_CHECK_ENABLE_VERBOSE_OUTPUT
|
|
|
|
dnl Check if library should be build with debug output
|
|
AX_COMMON_CHECK_ENABLE_DEBUG_OUTPUT
|
|
|
|
dnl Check if DLL support is needed
|
|
AS_IF(
|
|
[test "x$enable_shared" = xyes],
|
|
[AS_CASE(
|
|
[$host],
|
|
[*cygwin* | *mingw*],
|
|
[AC_DEFINE(
|
|
[HAVE_DLLMAIN],
|
|
[1],
|
|
[Define to 1 to enable the DllMain function.])
|
|
AC_SUBST(
|
|
[HAVE_DLLMAIN],
|
|
[1])
|
|
])
|
|
])
|
|
])
|
|
|
|
dnl Function to detect if exetools dependencies are available
|
|
AC_DEFUN([AX_EXETOOLS_CHECK_LOCAL],
|
|
[AC_CHECK_HEADERS([signal.h sys/signal.h unistd.h])
|
|
|
|
AC_CHECK_FUNCS([close getopt setvbuf])
|
|
|
|
AS_IF(
|
|
[test "x$ac_cv_func_close" != xyes],
|
|
[AC_MSG_FAILURE(
|
|
[Missing function: close],
|
|
[1])
|
|
])
|
|
|
|
dnl Check if tools should be build as static executables
|
|
AX_COMMON_CHECK_ENABLE_STATIC_EXECUTABLES
|
|
|
|
dnl Check if DLL support is needed
|
|
AS_IF(
|
|
[test "x$enable_shared" = xyes && test "x$ac_cv_enable_static_executables" = xno],
|
|
[AS_CASE(
|
|
[$host],
|
|
[*cygwin* | *mingw*],
|
|
[AC_SUBST(
|
|
[LIBEXE_DLL_IMPORT],
|
|
["-DLIBEXE_DLL_IMPORT"])
|
|
])
|
|
])
|
|
])
|
|
|