Commits
- Commit:
d24ddaa6a9de118f70658f7fd917c37cc787b425
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: include support for MacOS
This adds support for MacOS (Monteray onward, although should work on
older MacOSes).
The BSD wrapper for poll/ppoll has been lifted from the work the folks
over at OpenSSH have done -- thanks!
- Commit:
21172b6740b44855888a74c6d40b8efd53744d02
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
Release 0.67
- Commit:
97799ccd4b67a81f97039305d4fdd66588da9962
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: add support for landlock
landlock is a new set of linux APIs that is conceptually similar to
unveil(2): the idea is to restrict what a process can do on a
specified part of the filesystem. There are some differences in the
behaviour: the major one being that the landlock ruleset is inherited
across execve(2).
This just restricts the libexec helpers by completely revoking ANY
filesystem access; after all they are the biggest attack surface. got
send/fetch/clone *may* end up spawning ssh(1), so at the moment is not
possible to landlock the main process.
From Omar Polo.
- Commit:
89425ac3087993a34063c921014369e3320d36a6
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
Release 0.66
- Commit:
7cacbda68302e35afc316f115b101992f4069493
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
Release 0.65
- Commit:
844307c69e1213b5967a67673e2ed02e0d34f181
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
Release 0.64
- Commit:
e13fe3fb5a1403300ce0653dc3ff74a6f33f9b43
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
release: 0.62
Update CHANGELOG and configure.ac for the 0.62 release.
- Commit:
fbbbc6078a0f61f247a3631a2858d490cbc44cb5
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: release 0.61
Update configure.ac and CHANGELOG for 0.61
- Commit:
5a7ef102e32811458b2bdf94bf772cc692504511
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
regress: enable tests
Enable the compilation and execution of the tests under regress/
- Commit:
0ca5b679a408be58a7330776fdb1a4748ca7a9bd
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: propagate AM_CFLAGS/AM_CPPFLAGS
Allow for warnings via AM_CFLAGS in a common Makefile, and let
those values propagate to all other Makefiles. Currently the more
useful checks are disabled until upstream changes are made to reduce
warnings.
While here, also fix the version string to remove quotes.
- Commit:
839511b2e2ef1858aa18758d757677b5b8af7269
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix typo in configure's libcrypto check; patch by Evan Silberman
- Commit:
326237a6c2a5c369201269e581d6eccd38376efc
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
FreeBSD: tighten UUID check
If UUID libraries are already detected, don't ignore them by then
checking pkg-config, etc.
Noticed by Christian "naddy" Weisgerber.
- Commit:
92a9e85d28a30997176ce0d3c2915e3ea70782c7
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: add FreeBSD support
This adds the capability to compile got-portable on FreeBSD.
- Commit:
d3f2ad5edfc8b98f7c83b5197519fe35d3e0f07e
- From:
- Thomas Adam <thomas.adam@smoothwall.net>
- Date:
regress: port cmdline tests
This commit introduces the 'make tests' target which will run the
cmdline/* tests.
- Commit:
7dfae8a29c3caf385b499e4900bc47f61fa598cd
- From:
- Thomas Adam <thomas.adam@smoothwall.net>
- Date:
configure: bump version
Follow the same version as got itself.
- Commit:
2b0eee35db2db91d58fc4f76944a384911659ce0
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas.adam@smoothwall.net>
- Date:
enable gotadmin
Add gotadmin to configure.ac, etc., so it can be built and installed.
OK thomas.adam
- Commit:
acf52a76031e15e6a2bbe327bc4291a2867ae143
- From:
- Thomas Adam <thomas@xteddy.org>
- Via:
- Thomas Adam <thomas.adam@smoothwall.net>
- Date:
ncurses: only look for widechar version
When checking for ncurses, only check against the widechar version of
the library, otherwise the code won't work correctly, despite it
compiling properly.
Helped by Thomas Dickey.
- Commit:
dd038bc6ec835ad3fd3c0b5303b8af9ad506c8cc
- From:
- Thomas Adam <thomas@xteddy.org>
- Via:
- Thomas Adam <thomas.adam@smoothwall.net>
- Date:
portable: initial Linux compilation
This commit modifies the GoT main branch to be able to compile it under
linux.