-
Notifications
You must be signed in to change notification settings - Fork 14
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
f77e61d
commit 341ec32
Showing
14 changed files
with
43 additions
and
621 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,6 @@ SUBDIRS = \ | |
libcnotify \ | ||
libfwnt \ | ||
pyfwnt \ | ||
pyfwnt-python2 \ | ||
pyfwnt-python3 \ | ||
po \ | ||
manuals \ | ||
tests \ | ||
|
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( | ||
[libfwnt], | ||
[20231106], | ||
[20231124], | ||
[[email protected]]) | ||
|
||
AC_CONFIG_SRCDIR( | ||
|
@@ -80,7 +80,7 @@ dnl Check if libfwnt Python bindings (pyfwnt) 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 pyfwnt/pyfwnt_error.c | ||
AC_CHECK_HEADERS([stdarg.h varargs.h]) | ||
|
@@ -130,8 +130,6 @@ AC_CONFIG_FILES([libcdata/Makefile]) | |
AC_CONFIG_FILES([libcnotify/Makefile]) | ||
AC_CONFIG_FILES([libfwnt/Makefile]) | ||
AC_CONFIG_FILES([pyfwnt/Makefile]) | ||
AC_CONFIG_FILES([pyfwnt-python2/Makefile]) | ||
AC_CONFIG_FILES([pyfwnt-python3/Makefile]) | ||
AC_CONFIG_FILES([po/Makefile.in]) | ||
AC_CONFIG_FILES([po/Makevars]) | ||
AC_CONFIG_FILES([manuals/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.