Guus Sliepen | 25 Mar 2012 18:48
Gravatar

[Announcement] Version 1.0.18 released

With pleasure we announce the release of version 1.0.18. Here is a
summary of the changes:

 * Fixed IPv6 in switch mode by turning off DecrementTTL by default.

 * Allow a port number to be specified in BindToAddress, which also allows tinc
   to listen on multiple ports.

 * Add support for multicast communication with UML/QEMU/KVM.

This version of tinc is compatible with 1.0pre8, 1.0 and later, but not
with earlier version of tinc.

--

-- 
Met vriendelijke groet / with kind regards,
     Guus Sliepen <guus@...>
With pleasure we announce the release of version 1.0.18. Here is a
summary of the changes:

 * Fixed IPv6 in switch mode by turning off DecrementTTL by default.

 * Allow a port number to be specified in BindToAddress, which also allows tinc
   to listen on multiple ports.

 * Add support for multicast communication with UML/QEMU/KVM.

This version of tinc is compatible with 1.0pre8, 1.0 and later, but not
with earlier version of tinc.
(Continue reading)

Anthony G. Basile | 26 Mar 2012 12:29
Favicon
Gravatar

[PATCH] configure.in: fix AC_ARG_ENABLE and AC_ARG_WITH

From: "Anthony G. Basile" <basile@...>

The current configure.in file does not correctly make use of these
macros.  The resulting configure file will therefore enable an item
even if --disable-FEATURE is given.  This patch restores the intended
behavior.
---
 configure.in |   50 +++++++++++++++++++++++++++++++++-----------------
 1 files changed, 33 insertions(+), 17 deletions(-)

diff --git a/configure.in b/configure.in
index 2ea69f6..a03baf6 100644
--- a/configure.in
+++ b/configure.in
 <at>  <at>  -73,30 +73,44  <at>  <at>  case $host_os in
 esac

 AC_ARG_ENABLE(uml,
-  AS_HELP_STRING([--enable-uml], [enable support for User Mode Linux]),
-  [ AC_DEFINE(ENABLE_UML, 1, [Support for UML])
-    uml=true
-  ]
+  AS_HELP_STRING([--disable-uml], [enable support for User Mode Linux]),
+  [ AS_IF([test "x$enable_uml" = "xyes"],
+      [ AC_DEFINE(ENABLE_UML, 1, [Support for UML])
+        uml=true
+      ],
+      [uml=false])
+  ],
+  [uml=disable]
(Continue reading)

Anthony G. Basile | 26 Mar 2012 12:47
Favicon
Gravatar

Re: [PATCH] configure.in: fix AC_ARG_ENABLE and AC_ARG_WITH

Hi guys,

I'm sorry guus just noticed in irc that

+  [uml=disable]

should read

+  [uml=false]

in the last parameter of AC_ARG_ENABLE(uml, ... ).  That was a typo.

--Tony

On 03/26/2012 06:29 AM, Anthony G. Basile wrote:
> From: "Anthony G. Basile"<basile@...>
>
> The current configure.in file does not correctly make use of these
> macros.  The resulting configure file will therefore enable an item
> even if --disable-FEATURE is given.  This patch restores the intended
> behavior.
> ---
>   configure.in |   50 +++++++++++++++++++++++++++++++++-----------------
>   1 files changed, 33 insertions(+), 17 deletions(-)
>
> diff --git a/configure.in b/configure.in
> index 2ea69f6..a03baf6 100644
> --- a/configure.in
> +++ b/configure.in
>  <at>  <at>  -73,30 +73,44  <at>  <at>  case $host_os in
(Continue reading)


Gmane