mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-05-04 17:26:40 -04:00
This removes the postal address of the FSF and replaces
it with their URL.
Mostly generated with
sed -i -e 's@if not, write to the Free Software Foundation, Inc.,\
@if not, see <https://www.gnu.org/licenses/>.@'
sed -i -e '/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/d'
sed -i -e '/59 Temple Place, Suite 330, Boston, MA 02111-1307 USA/d'
With some manual fix-ups afterwards.
Change-Id: Ic3959970fa9ab993e98d4b38c025fd0efc7b92f2
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <20250803145126.23494-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg32481.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
71 lines
1.9 KiB
Text
71 lines
1.9 KiB
Text
dnl OpenVPN -- An application to securely tunnel IP networks
|
|
dnl over a single UDP port, with support for SSL/TLS-based
|
|
dnl session authentication and key exchange,
|
|
dnl packet encryption, packet authentication, and
|
|
dnl packet compression.
|
|
dnl
|
|
dnl Copyright (C) 2008-2012 Alon Bar-Lev <alon.barlev@gmail.com>
|
|
dnl
|
|
dnl This program is free software; you can redistribute it and/or modify
|
|
dnl it under the terms of the GNU General Public License as published by
|
|
dnl the Free Software Foundation; either version 2 of the License, or
|
|
dnl (at your option) any later version.
|
|
dnl
|
|
dnl This program is distributed in the hope that it will be useful,
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
dnl GNU General Public License for more details.
|
|
dnl
|
|
dnl You should have received a copy of the GNU General Public License along
|
|
dnl with this program; if not, see <https://www.gnu.org/licenses/>.
|
|
|
|
dnl Compatibility layer for <autoconf-2.60 <automake-1.10
|
|
dnl REMOVE THIS IN FUTURE!
|
|
|
|
ifdef(
|
|
[AS_VAR_IF],
|
|
,
|
|
[
|
|
AC_DEFUN([AS_VAR_IF], [dnl
|
|
if test "$$1" = "$2"; then
|
|
m4_ifval([$3], [$3], [:])
|
|
else
|
|
m4_ifval([$4], [$4], [:])
|
|
fi
|
|
])
|
|
]
|
|
)
|
|
ifdef(
|
|
[AC_USE_SYSTEM_EXTENSIONS],
|
|
,
|
|
[AC_DEFUN([AC_USE_SYSTEM_EXTENSIONS], [GNU_SOURCE])]
|
|
)
|
|
ifdef(
|
|
[AC_PROG_SED],
|
|
,
|
|
[AC_DEFUN([AC_PROG_SED], [AC_CHECK_PROGS([SED], [sed])])]
|
|
)
|
|
ifdef(
|
|
[PKG_CHECK_VAR],
|
|
,
|
|
[
|
|
AC_DEFUN([PKG_CHECK_VAR],
|
|
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
|
|
AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])
|
|
|
|
_PKG_CONFIG([$1], [variable="][$3]["], [$2])
|
|
AS_VAR_COPY([$1], [pkg_cv_][$1])
|
|
|
|
AS_VAR_IF([$1], [""], [$5], [$4])
|
|
])
|
|
]
|
|
)
|
|
|
|
if test -z "${docdir}"; then
|
|
docdir="\$(datadir)/doc/\$(PACKAGE_NAME)"
|
|
AC_SUBST([docdir])
|
|
fi
|
|
if test -z "${htmldir}"; then
|
|
htmldir="\$(docdir)"
|
|
AC_SUBST([htmldir])
|
|
fi
|