Skip to content

Update systemd from 238 to 239 #980

Merged
merged 4 commits into from
Dec 19, 2018
Merged

Commits on Dec 17, 2018

  1. Configuration menu
    Copy the full SHA
    cc8ab69 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d92eb1c View commit details
    Browse the repository at this point in the history
  3. systemd: Explicitly set build type to Meson

    It looks like, changes in bee build type ordering causes the error
    below.
    
        [BEE] GNU autotools detection failed.
        [BEE] /dev/shm/bee-root/systemd/systemd-239-0/source/configure: does not seem to be generated
         by GNU autotools.
        [BEE] use BEE_BUILDTYPE=autotools to force it anyway
        [BEE] using magic buildtype 'make' from '/usr/libexec/bee/beesh.d/make.sh' ..
        [BEE]  -> B=S linking build dir /dev/shm/bee-root/systemd/systemd-239-0/build to source dir
        [BEE] changing to build directory: /dev/shm/bee-root/systemd/systemd-239-0/source
        [BEE] => entering mee_configure() ..
        /usr/bin/beesh: line 504: [: too many arguments
        [BEE] action 'bee_configure' is not defined: skipping..
        [BEE] <= leaving mee_configure() ..
        [BEE] => entering bee_build() ..
        [BEE] make -j100 PREFIX=/usr EPREFIX=/usr BINDIR=/usr/bin SBINDIR=/usr/sbin LIBEXECDIR=/usr/libexec SYSCONFDIR=/etc SHAREDSTATEDIR=/var LOCALSTATEDIR=/var LIBDIR=/usr/lib INCLUDEDIR=/usr/include DATAROOTDIR=/usr/share DATADIR=/usr/share INFODIR=/usr/share/info LOCALEDIR=/usr/share/locale MANDIR=/usr/share/man DOCDIR=/usr/share/doc/systemd
        ninja -C build
        ninja: Entering directory `build'
        ninja: fatal: chdir to 'build' - No such file or directory
        make: *** [Makefile:2: all] Error 1
        Command exited with non-zero status 2
    
    Therefore, set the build type explicitly.
    pmenzel committed Dec 17, 2018
    Configuration menu
    Copy the full SHA
    0872265 View commit details
    Browse the repository at this point in the history
  4. systemd: Disable DNS over TLS

    Fix the error, that `gnutls/socket.h` cannot be found.
    
        ../source/src/resolve/resolved-dns-transaction.c:17:10: fatal error: gnutls/socket.h: No such
         file or directory
         #include <gnutls/socket.h>
                  ^~~~~~~~~~~~~~~~~
        compilation terminated.
    
    [1]: https://github.com/systemd/systemd/issues/9403
    [2]: https://github.com/systemd/systemd/pull/9410
    pmenzel committed Dec 17, 2018
    Configuration menu
    Copy the full SHA
    13e1590 View commit details
    Browse the repository at this point in the history