summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-01-22 01:23:37 +0000
committerRalf Baechle <ralf@linux-mips.org>2007-01-22 01:23:37 +0000
commitd897807d42226426b606100570b5a43a0d57c74f (patch)
treeaa9272e0d43de83c3be7a0ef12ea1bb42f1a6429
parent2c659fa15d85398074800bdd24170b61d0072c9c (diff)
Move all acconfig.h stuff into configure.in. This silences autoheader.
-rw-r--r--acconfig.h8
-rw-r--r--configure.in6
2 files changed, 3 insertions, 11 deletions
diff --git a/acconfig.h b/acconfig.h
deleted file mode 100644
index 65a2cfc..0000000
--- a/acconfig.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/* Define if you have a proper netax25/ax25.h header file. */
-#undef HAVE_NETAX25_AX25_H
-
-/* Define if you have a proper netrom/netrom.h header file. */
-#undef HAVE_NETROM_NETROM_H
-
-/* Define if you have a proper netrose/rose.h header file. */
-#undef HAVE_NETROSE_ROSE_H
diff --git a/configure.in b/configure.in
index f412df1..9270bb6 100644
--- a/configure.in
+++ b/configure.in
@@ -47,11 +47,11 @@ AC_CHECK_HEADERS(fcntl.h limits.h paths.h strings.h sys/file.h sys/ioctl.h sys/t
dnl Checks for working glibc 2.1 headers
AC_MSG_CHECKING(for working netax25/ax25.h header file)
-AC_EGREP_HEADER(ax25_fwd_struct, netax25/ax25.h,AC_DEFINE(HAVE_NETAX25_AX25_H) AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
+AC_EGREP_HEADER(ax25_fwd_struct, netax25/ax25.h,AC_DEFINE(HAVE_NETAX25_AX25_H, 1, [Define if you have a proper netax25/ax25.h header file.]) AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
AC_MSG_CHECKING(for working netrom/netrom.h header file)
-AC_EGREP_HEADER(unsigned int ndigis, netrom/netrom.h,AC_DEFINE(HAVE_NETROM_NETROM_H) AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
+AC_EGREP_HEADER(unsigned int ndigis, netrom/netrom.h,AC_DEFINE(HAVE_NETROM_NETROM_H, 1, [Define if you have a proper netrom/netrom.h header file.]) AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
AC_MSG_CHECKING(for working netrose/rose.h header file)
-AC_EGREP_HEADER(rose_facilities_struct, netrose/rose.h,AC_DEFINE(HAVE_NETROSE_ROSE_H) AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
+AC_EGREP_HEADER(rose_facilities_struct, netrose/rose.h,AC_DEFINE(HAVE_NETROSE_ROSE_H, 1, [Define if you have a proper netrose/rose.h header file.]) AC_MSG_RESULT(yes), AC_MSG_RESULT(no))
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST