summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-10-28 19:52:51 +0100
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-10-28 19:52:51 +0100
commit30b99053ed08eb6260b4f9fc6f39634e8953d6e5 (patch)
tree798e679411c0a20ee0d9b45d609e9e448dfa4e70
parentfd1b96e450b3bc3a13e675d955f7e5f373c3e8ef (diff)
Use dnl instead of # for comments.
This way they don't get added to the generated configure script.
-rw-r--r--configure.ac48
1 files changed, 24 insertions, 24 deletions
diff --git a/configure.ac b/configure.ac
index 45704a7..d6a505e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,23 +1,23 @@
-# -*- Autoconf -*-
-# Process this file with autoconf to produce a configure script.
-
-# This file is part of libasyncns.
-#
-# Copyright 2005-2008 Lennart Poettering
-#
-# libasyncns is free software; you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License as
-# published by the Free Software Foundation, either version 2.1 of the
-# License, or (at your option) any later version.
-#
-# libasyncns is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with libasyncns. If not, see
-# <http://www.gnu.org/licenses/>.
+dnl -*- Autoconf -*-
+dnl Process this file with autoconf to produce a configure script.
+dnl
+dnl This file is part of libasyncns.
+dnl
+dnl Copyright 2005-2008 Lennart Poettering
+dnl
+dnl libasyncns is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU Lesser General Public License as
+dnl published by the Free Software Foundation, either version 2.1 of the
+dnl License, or (at your option) any later version.
+dnl
+dnl libasyncns is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+dnl Lesser General Public License for more details.
+dnl
+dnl You should have received a copy of the GNU Lesser General Public
+dnl License along with libasyncns. If not, see
+dnl <http://www.gnu.org/licenses/>.
AC_PREREQ(2.62)
AC_INIT([libasyncns],[0.7],[mznflapaf (at) 0pointer (dot) de])
@@ -35,7 +35,7 @@ if type -p stow > /dev/null && test -d /usr/local/stow ; then
ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
fi
-# Checks for programs.
+dnl Checks for programs.
AC_PROG_CC
AC_PROG_CC_C99
AC_PROG_CPP
@@ -49,13 +49,13 @@ AC_PROG_LIBTOOL
CC_CHECK_CFLAGS_APPEND([-pipe -Wall -W -Wextra -pedantic -Wformat -Wold-style-definition -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Winline -Wno-unused-parameter])
-# Checks for header files.
+dnl Checks for header files.
AC_HEADER_ASSERT
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS([arpa/inet.h fcntl.h netdb.h stdlib.h string.h sys/socket.h unistd.h sys/prctl.h netinet/in.h arpa/nameser_compat.h])
-# Checks for typedefs, structures, and compiler characteristics.
+dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_PID_T
AC_TYPE_SIZE_T
@@ -64,7 +64,7 @@ AC_TYPE_UINT16_T
AC_TYPE_UINT8_T
AC_HEADER_TIME
-# Checks for library functions.
+dnl Checks for library functions.
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_FUNC_SELECT_ARGTYPES