2
0
mirror of git://github.com/lxc/lxc synced 2025-08-29 00:02:02 +00:00
lxc/configure.in

43 lines
991 B
Plaintext
Raw Normal View History

2008-08-06 14:32:29 +00:00
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
2008-10-06 18:49:02 +00:00
AC_INIT([lxc], [0.3.0])
2008-08-06 14:32:29 +00:00
AC_CONFIG_SRCDIR([configure.in])
AC_CONFIG_AUX_DIR([config])
AM_CONFIG_HEADER([src/config.h])
AM_INIT_AUTOMAKE([-Wno-portability])
AC_CANONICAL_HOST
AC_PROG_RANLIB
AM_PROG_CC_C_O
AC_GNU_SOURCE
AC_PROG_LIBTOOL
AC_CHECK_HEADERS([linux/netlink.h linux/genetlink.h], [], AC_MSG_ERROR([netlink headers not found]),
[#include <linux/types.h>
#include <bits/sockaddr.h>
#include <linux/socket.h>])
2008-08-06 14:32:29 +00:00
AC_PROG_GCC_TRADITIONAL
if test "x$GCC" = "xyes"; then
2008-08-06 14:54:00 +00:00
CFLAGS="$CFLAGS -Wall"
2008-08-06 14:32:29 +00:00
fi
AC_CONFIG_FILES([
Makefile
lxc.spec
config/Makefile
src/Makefile
src/lxc/Makefile
src/lxc/lxc-ps
etc/Makefile
etc/lxc-macvlan.conf
etc/lxc-no-netns.conf
2008-09-03 13:41:02 +00:00
etc/lxc-empty-netns.conf
2008-08-06 14:32:29 +00:00
etc/lxc-phys.conf
etc/lxc-veth.conf
etc/lxc-complex-config
test/Makefile
])
AC_CONFIG_COMMANDS([default],[[]],[[]])
AC_OUTPUT