aboutsummaryrefslogtreecommitdiffhomepage
path: root/.fmsbw/20-freebsd14-osx-sciteco
AgeCommit message (Collapse)AuthorFilesLines
4 days20-freebsd14-osx-sciteco: fixed linking against the system's libncursesRobin Haberkorn1-1/+1
Should hopefully fix errors about invalid $TERM.
4 days./configure: define TE_CHECK_MODULES() which takes static linking into accountRobin Haberkorn1-3/+0
* There already was --enable-static-executables which would pass `-static` to the linker, but it did not help with library dependencies (that have to be pulled in transitively when linking statically). pkg-config does have `--static` support though. * Now all pkg-config found libraries will use `pkg-config --static` when --enable-static-executables, which simplifies linking statically. Previously you'd either need to set PKG_CONFIG="pkg-config --static" or you would have to manually list library dependencies.
4 daysAX_WITH_NCURSES: support $CURSES_CFLAGS and $CURSES_LIBSRobin Haberkorn1-1/+5
* We wouldn't detect the correct flags (ax_cv_curses_enhanced and ax_cv_curses_color) when CURSES_CFLAGS and CURSES_LIBS are given. * Allows to force ncurses to the SDK/system one when building for OS X (20-freebsd14-osx-sciteco).
6 daysadded 20-freebsd14-osx-sciteco: this builds OS X nightly binaries via osxcrossRobin Haberkorn1-0/+72
* In contrast to the old Github workflow, we can no longer create pkgs, but instead create tar balls. You don't necessarily have to unpack it into the root, though, since the binaries are relocatable. * We cannot execute the resulting binaries, so the testsuite is no longer run under OS X. It could be executed with Darling, but only under Linux. * Resulting binaries are currently apparently fully statically linked.