summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-01-22 01:32:55 +0000
committerRalf Baechle <ralf@linux-mips.org>2007-01-22 01:32:55 +0000
commitcac0b0cfb7f587c371ccf2fa359ff37a23d45736 (patch)
tree028062789e9949e00c8630bf98517abaf6e9214a
parent07e097222ee4b8748f98a1c7cc9738fa5422710d (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 cd10044..feb64a8 100644
--- a/configure.in
+++ b/configure.in
@@ -26,7 +26,7 @@ dnl Checks for working glibc 2.1 headers
AC_MSG_CHECKING(for working netax25/ax25.h header file)
AC_HEADER_EGREP(ax25_fwd_struct, netax25/ax25.h, has_ax25=yes, has_ax25=no)
if test "$has_ax25" = "yes" ; then
- AC_DEFINE(HAVE_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)
else
AC_MSG_RESULT(no)
@@ -34,7 +34,7 @@ fi
AC_MSG_CHECKING(for working netrom/netrom.h header file)
AC_HEADER_EGREP(unsigned int ndigis, netrom/netrom.h, has_netrom=yes, has_netrom=no)
if test "$has_netrom" = "yes" ; then
- AC_DEFINE(HAVE_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)
else
AC_MSG_RESULT(no)
@@ -42,7 +42,7 @@ fi
AC_MSG_CHECKING(for working netrose/rose.h header file)
AC_HEADER_EGREP(rose_facilities_struct, netrose/rose.h, has_rose=yes, has_rose=no)
if test "$has_rose" = "yes" ; then
- AC_DEFINE(HAVE_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)
else
AC_MSG_RESULT(no)