-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Applied updates and changes for deployment
- Loading branch information
1 parent
ee43d1f
commit 7afd495
Showing
14 changed files
with
43 additions
and
617 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Build from source on FreeBSD. | ||
name: build_freebsd | ||
on: [push] | ||
permissions: read-all | ||
jobs: | ||
build_freebsd: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Building from source | ||
id: build_freebsd | ||
uses: vmactions/freebsd-vm@v1 | ||
with: | ||
usesh: true | ||
mem: 4096 | ||
# Note that the test scripts require bash | ||
prepare: | | ||
pkg install -y autoconf automake bash gettext git libtool openssl pkgconf | ||
run: | | ||
tests/build.sh | ||
tests/runtests.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ AC_PREREQ([2.71]) | |
|
||
AC_INIT( | ||
[libhmac], | ||
[20231106], | ||
[20231127], | ||
[[email protected]]) | ||
|
||
AC_CONFIG_SRCDIR( | ||
|
@@ -77,7 +77,7 @@ dnl Check if libhmac Python bindings (pyhmac) required headers and functions are | |
AX_PYTHON_CHECK_ENABLE | ||
|
||
AS_IF( | ||
[test "x${ac_cv_enable_python}" != xno || test "x${ac_cv_enable_python2}" != xno || test "x${ac_cv_enable_python3}" != xno], | ||
[test "x${ac_cv_enable_python}" != xno], | ||
[dnl Headers included in pyhmac/pyhmac_error.c | ||
AC_CHECK_HEADERS([stdarg.h varargs.h]) | ||
|
@@ -153,8 +153,6 @@ AC_CONFIG_FILES([libcerror/Makefile]) | |
AC_CONFIG_FILES([libcthreads/Makefile]) | ||
AC_CONFIG_FILES([libhmac/Makefile]) | ||
AC_CONFIG_FILES([pyhmac/Makefile]) | ||
AC_CONFIG_FILES([pyhmac-python2/Makefile]) | ||
AC_CONFIG_FILES([pyhmac-python3/Makefile]) | ||
AC_CONFIG_FILES([libclocale/Makefile]) | ||
AC_CONFIG_FILES([libcnotify/Makefile]) | ||
AC_CONFIG_FILES([libcsplit/Makefile]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.