From: David Sommerseth Date: Fri, 7 Jun 2013 10:15:30 +0000 (+0200) Subject: autoconf: Fix typo X-Git-Tag: v2.4_alpha1~546 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8065cd1c65273ef05ba2ac66f15224e170a57290;p=thirdparty%2Fopenvpn.git autoconf: Fix typo In config.h, it would state: /* Enable systemd support */ #define ENABLE_PLUGIN 1 instead of /* Enable plug-in support */ #define ENABLE_PLUGIN 1 Signed-off-by: David Sommerseth Acked-by: Gert Doering Message-Id: <1370600130-6075-1-git-send-email-dazo@users.sourceforge.net> URL: http://article.gmane.org/gmane.network.openvpn.devel/7658 Signed-off-by: Gert Doering --- diff --git a/configure.ac b/configure.ac index 229479662..65c639c52 100644 --- a/configure.ac +++ b/configure.ac @@ -1012,7 +1012,7 @@ fi if test "${enable_plugins}" = "yes"; then OPTIONAL_DL_LIBS="${DL_LIBS}" - AC_DEFINE([ENABLE_PLUGIN], [1], [Enable systemd support]) + AC_DEFINE([ENABLE_PLUGIN], [1], [Enable plug-in support]) else enable_plugin_auth_pam="no" enable_plugin_down_root="no"