File: acinclude.m4

package info (click to toggle)
libsigscan 20240505-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,860 kB
  • sloc: ansic: 151,787; sh: 6,336; makefile: 1,022; python: 302; cpp: 67; sed: 16
file content (57 lines) | stat: -rw-r--r-- 1,359 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
dnl Checks for required headers and functions
dnl
dnl Version: 20200713

dnl Function to detect if libsigscan dependencies are available
AC_DEFUN([AX_LIBSIGSCAN_CHECK_LOCAL],
  [dnl Check for internationalization functions in libsigscan/libsigscan_i18n.c
  AC_CHECK_FUNCS([bindtextdomain])
])

dnl Function to detect if sigscantools dependencies are available
AC_DEFUN([AX_SIGSCANTOOLS_CHECK_LOCAL],
  [AC_CHECK_HEADERS([signal.h sys/signal.h unistd.h])

  AC_CHECK_FUNCS([close getopt memmove setvbuf])

  AS_IF(
   [test "x$ac_cv_func_close" != xyes],
   [AC_MSG_FAILURE(
     [Missing function: close],
     [1])
  ])

  AS_IF(
   [test "x$ac_cv_func_memmove" != xyes],
   [AC_MSG_FAILURE(
     [Missing function: memmove],
     [1])
  ])
])

dnl Function to check if DLL support is needed
AC_DEFUN([AX_LIBSIGSCAN_CHECK_DLL_SUPPORT],
  [AS_IF(
    [test "x$enable_shared" = xyes && test "x$ac_cv_enable_static_executables" = xno],
    [AS_CASE(
      [$host],
      [*cygwin* | *mingw* | *msys*],
      [AC_DEFINE(
        [HAVE_DLLMAIN],
        [1],
        [Define to 1 to enable the DllMain function.])
      AC_SUBST(
        [HAVE_DLLMAIN],
        [1])

      AC_SUBST(
        [LIBSIGSCAN_DLL_EXPORT],
        ["-DLIBSIGSCAN_DLL_EXPORT"])

      AC_SUBST(
        [LIBSIGSCAN_DLL_IMPORT],
        ["-DLIBSIGSCAN_DLL_IMPORT"])
      ])
    ])
  ])