Skip to content

Commit

Permalink
Applied updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Sep 16, 2024
1 parent 6bfd042 commit 3774fa0
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 15 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build_shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ jobs:
strategy:
matrix:
include:
- architecture: 'x64'
compiler: 'gcc'
configure_options: ''
- architecture: 'x64'
compiler: 'gcc'
configure_options: '--enable-wide-character-type'
Expand Down
2 changes: 1 addition & 1 deletion acinclude.m4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl Checks for required headers and functions
dnl
dnl Version: 20240413
dnl Version: 20240525

dnl Function to detect if libcdirectory dependencies are available
AC_DEFUN([AX_LIBCDIRECTORY_CHECK_LOCAL],
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ AC_PREREQ([2.71])

AC_INIT(
[libcdirectory],
[20240512],
[20240916],
[[email protected]])

AC_CONFIG_SRCDIR(
Expand Down
1 change: 1 addition & 0 deletions libcdirectory.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ features: ["debug_output"]

[library]
description: "Library to support cross-platform C directory functions"
features: ["wide_character_type"]
public_types: ["directory", "directory_entry"]

6 changes: 2 additions & 4 deletions m4/common.m4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl Checks for common headers and functions
dnl
dnl Version: 20240512
dnl Version: 20240513

dnl Function to test if a certain feature was disabled
AC_DEFUN([AX_COMMON_ARG_DISABLE],
Expand Down Expand Up @@ -599,9 +599,7 @@ AC_DEFUN([AX_CHECK_LIB_DEFINITIONS],

dnl Function to test if a library with specific functions is available
AC_DEFUN([AX_CHECK_LIB_FUNCTIONS],
[ac_cv_$1=yes
m4_foreach(
[m4_foreach(
[function],
[$3],
[AC_CHECK_LIB(
Expand Down
6 changes: 4 additions & 2 deletions m4/libcerror.m4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl Checks for libcerror required headers and functions
dnl
dnl Version: 20240511
dnl Version: 20240513

dnl Function to detect if libcerror is available
dnl ac_libcerror_dummy is used to prevent AC_CHECK_LIB adding unnecessary -l<library> arguments
Expand Down Expand Up @@ -38,7 +38,9 @@ AC_DEFUN([AX_LIBCERROR_CHECK_LIB],
AS_IF(
[test "x$ac_cv_header_libcerror_h" = xno],
[ac_cv_libcerror=no],
[AX_CHECK_LIB_FUNCTIONS(
[ac_cv_libcerror=yes
AX_CHECK_LIB_FUNCTIONS(
[libcerror],
[cerror],
[[libcerror_get_version],
Expand Down
6 changes: 4 additions & 2 deletions m4/libclocale.m4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl Checks for libclocale required headers and functions
dnl
dnl Version: 20240512
dnl Version: 20240513

dnl Function to detect if libclocale is available
dnl ac_libclocale_dummy is used to prevent AC_CHECK_LIB adding unnecessary -l<library> arguments
Expand Down Expand Up @@ -59,7 +59,9 @@ AC_DEFUN([AX_LIBCLOCALE_CHECK_LIB],
AS_IF(
[test "x$ac_cv_header_libclocale_h" = xno],
[ac_cv_libclocale=no],
[AX_CHECK_LIB_FUNCTIONS(
[ac_cv_libclocale=yes
AX_CHECK_LIB_FUNCTIONS(
[libclocale],
[clocale],
[[libclocale_get_version],
Expand Down
6 changes: 4 additions & 2 deletions m4/libuna.m4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl Checks for libuna or required headers and functions
dnl
dnl Version: 20240512
dnl Version: 20240513

dnl Function to detect if libuna is available
dnl ac_libuna_dummy is used to prevent AC_CHECK_LIB adding unnecessary -l<library> arguments
Expand Down Expand Up @@ -38,7 +38,9 @@ AC_DEFUN([AX_LIBUNA_CHECK_LIB],
AS_IF(
[test "x$ac_cv_header_libuna_h" = xno],
[ac_cv_libuna=no],
[AX_CHECK_LIB_FUNCTIONS(
[ac_cv_libuna=yes
AX_CHECK_LIB_FUNCTIONS(
[libuna],
[una],
[[libuna_get_version],
Expand Down

0 comments on commit 3774fa0

Please sign in to comment.