~ldgoodridge95/ubuntu/vivid/upstart/rm-libjson0-dev

« back to all changes in this revision

Viewing changes to configure.ac

Tags: upstream-1.7
Import upstream version 1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Process this file with autoconf to produce a configure script.
2
2
 
3
3
AC_PREREQ(2.61)
4
 
AC_INIT([upstart], [1.8], [upstart-devel@lists.ubuntu.com])
 
4
AC_INIT([upstart], [1.7], [upstart-devel@lists.ubuntu.com])
5
5
NIH_COPYRIGHT([[Copyright © 2013 Scott James Remnant, Canonical Ltd.]])
6
6
AC_CONFIG_SRCDIR([init/main.c])
7
7
AC_CONFIG_MACRO_DIR([m4])
52
52
 
53
53
AM_CONDITIONAL([HAVE_UDEV], [test "$have_udev" = yes])
54
54
 
55
 
AC_ARG_ENABLE(selinux,
56
 
              AS_HELP_STRING([--enable-selinux], [enable SELinux support]),
57
 
              [], [enable_selinux=no])
58
 
 
59
 
if test "x$enable_selinux" = "xyes" ; then
60
 
        PKG_CHECK_MODULES(SELINUX, [libselinux])
61
 
        AC_DEFINE(HAVE_SELINUX, 1, [Define if we have SELinux])
62
 
fi
63
 
 
64
55
# Checks for header files.
65
56
AC_CHECK_HEADERS([valgrind/valgrind.h, sys/prctl.h])
66
57
 
110
101
AC_CONFIG_FILES([ Makefile intl/Makefile
111
102
                  dbus/Makefile init/Makefile util/Makefile conf/Makefile
112
103
                  extra/Makefile doc/Makefile contrib/Makefile po/Makefile.in
113
 
                  scripts/Makefile scripts/data/Makefile ])
 
104
                  scripts/Makefile ])
114
105
AC_CONFIG_HEADERS([config.h])
115
106
AC_OUTPUT