Hi,
let's add PIE in config.mk:
diff --git a/config.mk b/config.mk
index bc3d80e..364a649 100644
--- a/config.mk
+++ b/config.mk
@@ -21,7 +21,7 @@ LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS}
# flags
CPPFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\"
${XINERAMAFLAGS}
#CFLAGS
M Farkas-Dyck writes:
> I merged jspricke's scrollback code into latest master:
> https://github.com/strake/st
>
> Tested briefly, seems to work.
Produces rendering errors in the last line when having output while
scrolled up. Else, great job!
--
Christian Neukirchenhttp://chneukirchen.or
On 11 December 2014 at 10:49, wrote:
> let's add PIE in config.mk:
>
>
> diff --git a/config.mk b/config.mk
> index bc3d80e..364a649 100644
> --- a/config.mk
> +++ b/config.mk
> @@ -21,7 +21,7 @@ LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS}
> # flags
> CPPFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -
On 11/12/2014, Christian Neukirchen wrote:
> Produces rendering errors in the last line when having output while
> scrolled up.
I can't reproduce this; what are you doing?
ping
thx, will do ltr
On 11 December 2014 at 16:08, Dimitris Papastamos wrote:
> ping
>
If blinktimeout is set to a value greater than 1000, pselect will
receive a timeout argument with tv_nsec greater than 1E9 (1 sec), and
fail, making st crash. This patch just ensures that the timespec
structure is correctly filled with a value properly decomposed between
tv_sec and tv_nsec.
Report