Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide fixes to the build system #37

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Commits on Jul 19, 2016

  1. Makefile.in: Use LIBS from configure rather than specifying -lfcgi ma…

    …nually.
    
    fcgiwrap uses libfcgi, and libfcgi uses libm.  This is an issue when
    using static libs, because -lm does not get properly added to the link
    flags in this case.  A solution is to provide LIBS=-lm to configure
    when needed.  However, fcgiwrap does not use Automake and its
    Makefile.in ignores LIBS from configure.  Fix that.
    
    Signed-off-by: Thomas Claveirole <[email protected]>
    pbassa committed Jul 19, 2016
    Configuration menu
    Copy the full SHA
    b5626f7 View commit details
    Browse the repository at this point in the history
  2. configure.ac: Check for libsystemd, not libsystemd-daemon.

    Newer versions of systemd do not provide libsystemd-daemon anymore.
    Therefore, use libsystemd instead.
    
    Signed-off-by: Thomas Claveirole <[email protected]>
    pbassa committed Jul 19, 2016
    Configuration menu
    Copy the full SHA
    e621d6a View commit details
    Browse the repository at this point in the history