From f129dc5f9a08673a9839eb7b6b1faa647fecdcb4 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Tue, 16 Oct 2012 01:35:41 +0100 Subject: [PATCH] Makefile.am, configure.ac: Build pathmtu unconditionally. Organization: Straylight/Edgeware From: Mark Wooding It's notionally portable nowadays, so shouldn't be restricted to Linux only. --- Makefile.am | 2 -- configure.ac | 13 ------------- 2 files changed, 15 deletions(-) diff --git a/Makefile.am b/Makefile.am index c3d5bf67..1576daa9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,9 +41,7 @@ SUBDIRS += pkstream SUBDIRS += init ## Path MTU discovery. -if PATHMTU SUBDIRS += pathmtu -endif ## Wireshark. if HAVE_WIRESHARK diff --git a/configure.ac b/configure.ac index 66d216d0..ad39a1f4 100644 --- a/configure.ac +++ b/configure.ac @@ -122,19 +122,6 @@ AC_ARG_WITH([tracing], AC_DEFINE([NTRACE], [1], [Disable all tracing.])], [:]) -dnl-------------------------------------------------------------------------- -dnl Path MTU discovery. - -case $host_os in - linux*) - pmtu=yes - ;; - *) - pmtu=no - ;; -esac -AM_CONDITIONAL([PATHMTU], [test $pmtu = yes]) - dnl-------------------------------------------------------------------------- dnl Tunnel devices. -- [mdw]