forked from libyal/libfsntfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacinclude.m4
More file actions
21 lines (17 loc) · 691 Bytes
/
acinclude.m4
File metadata and controls
21 lines (17 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dnl Function to detect if libfsntfs dependencies are available
AC_DEFUN([AX_LIBFSNTFS_CHECK_LOCAL],
[dnl Headers included in libregf/libregf_file.h, libregf/libregf_key.h
dnl libregf/libregf_key_item_values.h and libregf/libregf_value_item_values.h
AC_CHECK_HEADERS([wctype.h])
dnl Functions used in libregf/libregf_file.h, libregf/libregf_key.h
dnl libregf/libregf_key_item_values.h and libregf/libregf_value_item_values.h
AC_CHECK_FUNCS([towupper])
AS_IF(
[test "x$ac_cv_func_towupper" != xyes],
[AC_MSG_FAILURE(
[Missing function: towupper],
[1])
])
dnl Check for internationalization functions in libfsntfs/libfsntfs_i18n.c
AC_CHECK_FUNCS([bindtextdomain])
])