Re: [lxc-devel] LXC as an alternative to linux-vserver

2012-11-10 Thread Daniel Lezcano
On 11/05/2012 02:43 PM, Serge Hallyn wrote: > Quoting Daniel Lezcano (daniel.lezc...@free.fr): >> The patches are for these are a out-dated but available at >> git.kernel.org and in the download section of lxc.sourceforge.net. > Newer versions are at > http://git.kernel.org/?p=linux/kernel/git/ebi

[lxc-devel] [GIT] lxc branch, master, updated. 4aa7ac35696b87867b1e85410a80527696ff4d64

2012-11-10 Thread Daniel Lezcano
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "lxc". The branch, master has been updated via 4aa7ac35696b87867b1e85410a80527696ff4d64 (commit) via aa69e175ff64267b76f4432e

[lxc-devel] [PATCH 2/3] build: make sure to expand all variables that are substituted.

2012-11-10 Thread Diego Elio Pettenò
This fixes lxc-sshd still referring to '${libdir}'. Signed-off-by: Diego Elio Pettenò --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a9a88c5..cf653ef 100644 --- a/configure.ac +++ b/configure.ac @@ -70,7 +70,7 @@ AS_AC_EXPAN

[lxc-devel] [PATCH 1/3] build: use libtool for linking the library, and link lxc-init statically.

2012-11-10 Thread Diego Elio Pettenò
The shared object versioning on the library (soname) was completely wrong, as the ABI doesn't seem to be guaranteed between one version and the other, so proposing all of them as .so.0 is very wrong. Furthermore you generally want lxc-init static so that you don't have to add (or have a compatible

[lxc-devel] [PATCH 3/3] lxc: include sched.h to have a declaration of clone().

2012-11-10 Thread Diego Elio Pettenò
This avoids an implicit declaration. Signed-off-by: Diego Elio Pettenò --- src/lxc/namespace.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lxc/namespace.c b/src/lxc/namespace.c index 3e6fc3a..1f7684e 100644 --- a/src/lxc/namespace.c +++ b/src/lxc/namespace.c @@ -30,6 +30,7 @@ #inclu