Displaying 20 results from an estimated 400 matches similar to: "[PATCH] build: check for single libsystemd before libsystemd-journal"
2016 Apr 05
0
[PATCH v3 2/5] configure: Added libtsk compile-time check
Ensure libtsk is available at compile time.
If not, daemon routines depending on it won't be available.
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
m4/guestfs_daemon.m4 | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/m4/guestfs_daemon.m4 b/m4/guestfs_daemon.m4
index 88936b2..09cfecd 100644
--- a/m4/guestfs_daemon.m4
+++ b/m4/guestfs_daemon.m4
@@ -118,3 +118,11 @@
2016 Mar 29
0
[PATCH 1/2] added filesystem_walk0 API
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
daemon/Makefile.am | 3 +-
daemon/tsk.c | 186 +++++++++++++++++++++++++++++++++++++++++++++++++++
generator/actions.ml | 16 +++++
m4/guestfs_daemon.m4 | 8 +++
src/MAX_PROC_NR | 2 +-
5 files changed, 213 insertions(+), 2 deletions(-)
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index 4e2051b..036def9
2013 Aug 20
0
[PATCH] daemon: fix build without systemd-journal
Fix typo in OPTGROUP_JOURNAL_NOT_AVAILABLE
Define empty journal_finalize, called by mount.c
Signed-off-by: Olaf Hering <olaf@aepfle.de>
---
daemon/journal.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/daemon/journal.c b/daemon/journal.c
index 0cb50e3..97e1874 100644
--- a/daemon/journal.c
+++ b/daemon/journal.c
@@ -216,6 +216,11 @@
2016 Jun 13
0
[PATCH v8 1/3] New API: internal_filesystem_walk
- generator: Added tsk_dirent struct
The tsk_dirent struct contains the information gathered via TSK APIs.
The struct contains the following fields:
* tsk_inode: inode of a file
* tsk_type: type of file such as for dirwalk command
* tsk_size: file size in bytes
* tsk_name: path relative to its disk partition
* tsk_flags: bitfield containing extra information
- configure: Added libtsk
2016 Jul 12
2
Option configure
On Tue, Jul 12, 2016 at 9:32 AM, Sonic <sonicsmith at gmail.com> wrote:
> It appears that Samba does not check for
> libsystemd (only libsystemd-daemon and libsystemd-journal) during the
> config phase so unless one is running some ancient version of systemd
> the "--with-systemd" configure option may be quite useless.
Might be wrong on this, see the
2016 Jul 13
2
Option configure
Am 12.07.2016 um 15:32 schrieb Sonic:
> On Tue, Jul 12, 2016 at 8:11 AM, mathias dufresne <infractory at gmail.com> wrote:
>> It looks to me that configure script can't find Centos 7 systemd
>> installation files. Any idea of what I would have missed?
> Same issues with Debian Jessie - nothing you missed. Apparently
> libsystemd-daemon and libsystemd-journal are
2016 Jul 12
0
Option configure
On Tue, Jul 12, 2016 at 8:11 AM, mathias dufresne <infractory at gmail.com> wrote:
> It looks to me that configure script can't find Centos 7 systemd
> installation files. Any idea of what I would have missed?
Same issues with Debian Jessie - nothing you missed. Apparently
libsystemd-daemon and libsystemd-journal are deprecated and merged
into a single libsystemd file (must have
2016 Jul 12
0
Option configure
2016-07-12 15:49 GMT+02:00 Sonic <sonicsmith at gmail.com>:
> On Tue, Jul 12, 2016 at 9:32 AM, Sonic <sonicsmith at gmail.com> wrote:
> > It appears that Samba does not check for
> > libsystemd (only libsystemd-daemon and libsystemd-journal) during the
> > config phase so unless one is running some ancient version of systemd
> > the
2017 Nov 23
0
Compiling Samba 4.7 with systemd support on Fedora 26
Am 23.11.2017 um 23:51 schrieb Arnab Roy:
> Here you go...
>
> Checking for program gcc or cc : /usr/bin/gcc
and you think your ./configure command line don't matter or if you just
type ./confugure without any params state so?
Checking for libsystemd-daemon
: not found
Checking for libsystemd-journal
: not found
Checking
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings:
Patches 1-12 split configure.ac into smaller files using the
m4_include mechanism.
Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into
three new manual pages:
guestfs-hacking(3) - how to extend and contribute to libguestfs
guestfs-internals(3) - architecture and internals
guestfs-security(3) - security and CVEs
Patch 16 is a
2019 Sep 18
2
[PATCH] build: remove unused gnulib modules
Remove gnulib modules that provide stuff clearly not used within
libguestfs (library, daemon, and C tools). Among directly and
indirectly modules used previous (and now no more), they are:
cycle-check
dev-ino
dup3
dup3-tests
fcntl-safer
fcntl-safer-tests
filevercmp
filevercmp-tests
fts
getaddrinfo
getaddrinfo-tests
hostent
i-ring
i-ring-tests
inet_ntop
2017 Nov 23
2
Compiling Samba 4.7 with systemd support on Fedora 26
Thanks Michael, after starting the service within a few secs it dies in my
case with this error samba winbind Got sig[15] terminate (is_parent=1)
Let me know if you need any further information.
Many Thanks
On Thu, Nov 23, 2017 at 4:54 PM, Michael Wandel <m.wandel at t-online.de>
wrote:
> On 23.11.2017 17:49, Arnab Roy wrote:
> > Hi Michael,
> >
> > I didnt change
2018 Feb 12
0
[PATCH v2 1/1] Switch from YAJL to Jansson
While YAJL mostly works fine, it did not see any active development in
the last 3 years. OTOH, Jansson is another JSON C implementation, with
a very liberal license, and a much nicer API.
Hence, switch all of libguestfs from YAJL to Jansson:
- configure checks, and buildsystem in general
- packages pulled in the appliance
- actual implementations
- contrib scripts
- documentation
This also
2018 Aug 22
2
openssh 7.6 and 7.7 on Oracle Linux 7 (compiled from source) doesn't start correctly with systemd
On Wed, Aug 22, 2018 at 11:23:11AM +0000, Peter Stuge wrote:
> I guess that Oracle has patched sshd to call sd_notify() and thus
Well, RedHat.
> introduced dependency on the systemd libraries for sshd. I don't
Yup
% ldd /usr/sbin/sshd | grep syst
libsystemd.so.0 => /lib64/libsystemd.so.0 (0x00007f0e5b715000)
--
rgds
Stephen
2017 Nov 23
0
[PATCH 1/1] Switch from YAJL to Jansson
While YAJL mostly works fine, it did not see any active development in
the latest 3 years. OTOH, Jansson is another JSON C implementation,
with a very liberal license, and a much nicer API.
Hence, switch all of libguestfs from YAJL to Jansson:
- configure checks, and buildsystem in general
- packages pulled in the appliance
- actual implementations
- contrib scripts
- documentation
This also
2016 Jul 12
5
Option configure
2016-07-10 2:12 GMT+02:00 Andrew Bartlett <abartlet at samba.org>:
> On Sat, 2016-07-09 at 11:27 +0200, Marc Muehlfeld wrote:
> > Hello,
> >
> > Am 09.07.2016 um 09:14 schrieb Rowland penny:
> > > > What is the purpose of the option
> > > > *
> > > > **--with-**systemd**
> > > > ****Enable****systemd****integration*
>
2023 Jun 20
1
[PATCH] ssh-agent: add systemd socket-based activation
On 6/19/23 20:20, Damien Miller wrote:
>
> On Fri, 16 Jun 2023, Ronan Pigott wrote:
>
>> This adds support for systemd socket-based activation in the ssh-agent.
>> When using socket activation, the -a flag value must match the socket
>> path provided by systemd, as a sanity check. Support for this feature is
>> enabled by the --with-systemd configure flag.
2020 Oct 05
2
logging lines in krb5.conf
On 10/5/2020 12:16 PM, Rowland penny via samba wrote:
> On 05/10/2020 17:01, Jason Keltz via samba wrote:
>> On 10/5/2020 11:58 AM, Rowland penny via samba wrote:
>>
>>> On 05/10/2020 16:30, Jason Keltz via samba wrote:
>>>> Hi.
>>>>
>>>> Using MIT5 backend with Samba..
>>> I hope you mean on the clients, the use of MIT as the
2016 Nov 09
0
[PATCH v2 1/6] appliance: add yara dependency
libyara3 on Debian/Ubuntu
yara on SUSE/RedHat
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
appliance/packagelist.in | 4 ++++
daemon/Makefile.am | 3 ++-
m4/guestfs_daemon.m4 | 14 ++++++++++++++
3 files changed, 20 insertions(+), 1 deletion(-)
diff --git a/appliance/packagelist.in b/appliance/packagelist.in
index f278f66..2da7533 100644
---
2016 Dec 18
0
[PATCH v3 1/6] appliance: add yara dependency
libyara3 on Debian/Ubuntu
yara on SUSE/RedHat
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
---
appliance/packagelist.in | 4 ++++
daemon/Makefile.am | 3 ++-
m4/guestfs_daemon.m4 | 14 ++++++++++++++
3 files changed, 20 insertions(+), 1 deletion(-)
diff --git a/appliance/packagelist.in b/appliance/packagelist.in
index bbbe4b2..352133c 100644
---