Emacs Daemon as Service

2020-03-24 Thread Uros Perisic
Hi everyone, I'm kind of stuck here. I'm trying to write an emacs service: ``` #!/usr/bin/execlineb -P s6-setuidgid uros emacs --fg-daemon --user uros ``` Though the server starts it cannot connect to the X display. I assume there's an explicit way to handle this in s6. Or should I start another

*** No rule to make target '-lexecline', needed by 's6-ftrig-listen'

2020-03-24 Thread Jens Rehsack
Hi, when s6-2.9.1.0 is compiled with execline-2.6.0.0, following build error pops up: make: *** No rule to make target '-lexecline', needed by 's6-ftrig-listen'. Stop. Attached patch fixes that. (I do git send-mail if preferred) 0001-package-deps.mak-lexecline-is-no-in-tree-dep.patch

Re: *** No rule to make target '-lexecline', needed by 's6-ftrig-listen'

2020-03-24 Thread Laurent Bercot
Good catch, thanks for the report. Your fix isn't ideal though: the correct way is to replace LIBEXECLINE with EXECLINE_LIB in configure and deps-exe/*, and run gen-deps.sh again. (LIBFOOBAR is for in-package libraries, and EXECLINE_LIB for external ones; gen-deps.sh handles the difference

Re: *** No rule to make target '-lexecline', needed by 's6-ftrig-listen'

2020-03-24 Thread Jens Rehsack
> Am 24.03.2020 um 13:30 schrieb Laurent Bercot : > > > Good catch, thanks for the report. > > Your fix isn't ideal though: the correct way is to replace > LIBEXECLINE with EXECLINE_LIB in configure and deps-exe/*, and run > gen-deps.sh again. That's to far for me since I know that I have a