Commit Graph

23 Commits

Author SHA1 Message Date
Michael Forney a312a9a069 st: Flush wl_data_offer.receive after closing write end of pipe
Otherwise, we still might have it open when the peer is processing
the event.
2022-11-27 14:11:26 -08:00
Michael Forney ef092b8e2d st: Minor wayland bugfixes 2022-10-25 12:18:22 -07:00
Michael Forney 31b3e97804 st: Remove terminfo installation
Just use the one from netbsd-curses, which has been patched to
remove keys mapping to same sequence.
2021-06-05 11:44:34 -07:00
Michael Forney f1ad243a04 st: Fix SIGCHLD handler in plumb patch
When I applied the plumb patch, I altered it slightly so that st
didn't block on the plumb command returning, but messed up the
condition in the SIGCHLD handler wait loop.
2021-03-29 19:28:15 -07:00
Michael Forney db048e2891 st: Start codepoint dmenu on bottom of screen 2021-03-29 19:27:43 -07:00
Michael Forney fa6f5e88ad st: Don't wait for process to exit when plumbing 2020-12-03 21:10:54 -08:00
Michael Forney 9d3a8c3958 st: Add support for plumbing and fix initial TTY resize 2020-12-03 01:57:35 -08:00
Michael Forney d4297a13c8 Use -isystem to include library headers
This way, warnings from headers that come from another package (in
particular linux-headers) won't show up when they get included.

To make sure we still track dependencies, use -MD instead of -MMD.
2020-06-05 03:01:44 -07:00
Michael Forney fa02fa9d7b libxkbcommon: Add header target 2020-06-02 04:22:27 -07:00
Michael Forney 4f9e793714 fontconfig: Add header target 2020-06-02 04:20:10 -07:00
Michael Forney 5a498ee493 st: Send SIGHUP only when in PTY mode 2020-03-01 19:24:52 -08:00
Michael Forney aea11e0e4a Use our own linux-headers 2020-02-20 20:10:31 -08:00
Michael Forney 2255c43da7 Use $basedir to refer to paths relative to base source tree 2019-12-16 23:48:22 -08:00
Michael Forney 4332740046 Rename rev to ver, and keep track of package versions as well 2019-03-19 00:14:12 -07:00
Michael Forney bba4833013 Update to stable xdg-shell
Since xdg-shell-unstable-5-protocol.c and xdg-shell-protocol.c
define conflicting symbols, this commit updates swc, netsurf, mupdf,
and st all at once.
2018-11-03 01:20:57 -07:00
Michael Forney f377442fbc Revert accidentally updated submodules in b99ef6bfc5
`git commit -a` with ignored submodules strikes again. I really
should report a bug about this.
2018-03-16 10:16:40 -07:00
Michael Forney b99ef6bfc5 libdrm: Check if config.video_drivers is set 2018-03-10 19:08:35 -08:00
Michael Forney e5cfa84477 Move $outdir/fetch.stamp -> $dir/fetch 2017-10-23 21:43:33 -07:00
Michael Forney ba94a8513d Rewrite ninja generation scripts in Lua 2017-09-25 19:23:06 -07:00
Michael Forney 6fa5f88e60 Don't use -isystem
This way we can use -MMD to exclude system header files and still retain
dependency tracking within oasis.
2017-08-19 19:07:18 -07:00
Michael Forney 4a9f8e3cb8 st: Update to latest git 2016-12-21 20:36:47 -08:00
Michael Forney 2420bcc6b1 Compress man pages 2016-12-19 00:05:57 -08:00
Michael Forney 293f5a93b7 Move to flat package hierarchy
Note to self: never try to move submodules again

To migrate your existing submodules (more or less):

	set -x
	set -e

	mkdir .git/modules/pkg
	for old in */*/src ; do
	        new="pkg/${old#*/}"
	        if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then
			continue
		fi
		git -C ".git/modules/$old" config core.worktree "../../../../../$new"
		rmdir "$new"
		mv "$old" "$new"
	        sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp"
	        mv "$new/.git.tmp" "$new/.git"
		mkdir ".git/modules/${new%/src}"
	        mv ".git/modules/$old" ".git/modules/$new"

		rm "${old%/src}"/*.ninja
		mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/"
		rmdir "${old%/src}" || true
	done
	sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp
	mv .git/config.tmp .git/config
2016-12-13 23:10:30 -08:00