Commits
- Commit:
381ce3eacb7813cdf7c8c914744dcc5ba304cc7b
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: add object_qid.c where required
Part of a wider change.
- Commit:
5007bd0d88e88e4e812dbb82ec4cf157920f62ea
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: linux: add libmd
On some systems libmd isn't explicitly implied, so detect this via
pkg-config at configure time.
Problem reported by @stsp
- Commit:
4fccd2fe0ffbbc668b66abe63614470635f92f1b
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: configure: split out dependencies
Rather than assume all dependencies are required for all programs, split
them out.
This will make packaging easier, as well as splitting the code to use
subprojects.
Note that due to the use of config.h semantics, in most cases the
got_compat.h header file is now at the top of the .c file it is included
in, so that it can handle the system header inclusion properly.
- Commit:
54bac5ec34cd08d8ecedaab13def1cfce4e4dae2
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: update Makefiles
sha1.c -> hash.c
- Commit:
9efb7226be6de6927ff8e03da3c82cd71cf960df
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: cross-compile pages.c
When building the template files on the host (which is cross-compiled),
do so just by handling pages.c appropriately.
Based on a patch by op@, and modified by me.
- Commit:
2ee1d31001feed71783d443b0c84e03edd5f4851
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: move tmpl.h to EXTRA_DIST
This header isn't needed for direct compilation, but should be included
as part of the main tarball.
- Commit:
5518bc7b0d88e0fc9551e96e18fa2f0e93747ccf
- From:
- Omar Polo <op@omarpolo.com>
- Date:
portable: gotwebd: add tmpl.h to gotwebd_SOURCES
unbreaks `make dist'
- Commit:
cb11302ca643bbb042a84f1e4784202c0f9a1252
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: gotwebd: use template
This updates -portable's gotwebd instance to make use of the new
templating engine.
- Commit:
4e80a172c62f9b329f0f876405c8d391358e5e6a
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: support infrastructure for gotd/gotsh
Provide the ability for -portable to continue to compile, until such
time that gotd and gotsh have been enabled in -portable.
- Commit:
fc16ecdf72bdc27684fed33e40cfaad4a7018517
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: sort makefile source lines
For all key Makefile.am files in use, sort the files so that they're
more easily identifiable -- especially when adding/removing source
files.
- Commit:
400c1baa797ea52d7f44e2d997bbf0341912a6f4
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
move got_gotconfig_read() into new file read_gotconfig_privsep.c
- Commit:
d348087d319f40c9237d272e23cd12fdec5bd123
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
move code for reading Git's config file into new file read_gitconfig_privsep.c
The end goal here is to remove the dependency of repository.c on privsep.c
during compilation.
- Commit:
b61ceafcc71b10ab2295bf09b9ddb34a07666f73
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
move functions which open objects into new file object_open_privsep.c
For the future, this will make it possible to provide alternative
implementations of functions now stored in object_open_privsep.c.
This will probably be needed by future gotd(8) which runs inside
a chroot(2) environment and without the "exec" pledge(2) promise,
making it impossible to run libexec helpers on the fly.
Details of this design are not yet settled, but moving functions
into a separate compilation unit won't hurt in any case.
- Commit:
b033d7a680ecb16ee6150f33c8ad88f25c93e728
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: gotwebd: install to sbin
When installing gotwebd, put this under ${prefix}/sbin
- Commit:
8f795179913a172632debbcf459cdea3562a2279
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: provide sockaddr-linux implementation
Someof the socket code has been factored out of gotwebd and put
centrally so that platform-specific targets can be created, without the
need of heavily modifying the central socket code to contain numerous
ifdefs.
- Commit:
732c70f595eef7db741177f2dfd61b8bd27f156e
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: gotwebd: add headers to EXTRA_DIST
Add the header files under gotwebd to EXTRA_DIST so that they're
included in the distribution tarball.
- Commit:
ff36aeea6fe48eb9071eccc41d2a31a47d109be3
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: gotwebd: first stab at compilation
This is not yet "clean", but does compile. A few things to consider:
* See comments beginning with "TA:"