-
Notifications
You must be signed in to change notification settings - Fork 33
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
32cdb6a
commit 1a6339a
Showing
19 changed files
with
84 additions
and
706 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 |
---|---|---|
|
@@ -21,8 +21,6 @@ SUBDIRS = \ | |
liblnk \ | ||
lnktools \ | ||
pylnk \ | ||
pylnk-python2 \ | ||
pylnk-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( | ||
[liblnk], | ||
[20231030], | ||
[20231120], | ||
[[email protected]]) | ||
|
||
AC_CONFIG_SRCDIR( | ||
|
@@ -119,7 +119,7 @@ dnl Check if liblnk Python bindings (pylnk) required headers and functions are a | |
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 pylnk/pylnk_error.c | ||
AC_CHECK_HEADERS([stdarg.h varargs.h]) | ||
|
@@ -183,8 +183,6 @@ AC_CONFIG_FILES([libfwps/Makefile]) | |
AC_CONFIG_FILES([libfwsi/Makefile]) | ||
AC_CONFIG_FILES([liblnk/Makefile]) | ||
AC_CONFIG_FILES([pylnk/Makefile]) | ||
AC_CONFIG_FILES([pylnk-python2/Makefile]) | ||
AC_CONFIG_FILES([pylnk-python3/Makefile]) | ||
AC_CONFIG_FILES([lnktools/Makefile]) | ||
AC_CONFIG_FILES([po/Makefile.in]) | ||
AC_CONFIG_FILES([po/Makevars]) | ||
|
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
Oops, something went wrong.