summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Brinkmann <marcus@gnu.org>2001-10-12 00:04:58 +0000
committerMarcus Brinkmann <marcus@gnu.org>2001-10-12 00:04:58 +0000
commit7a621a43d62a7fb333f38404789151259f09457a (patch)
treeec0be76fd4d4fcc7779a92cfa58e3518c4d08232
parenta9dc14628d21d6472a5ce8ebaf2f53f809a0d6f6 (diff)
2001-10-12 Marcus Brinkmann <marcus@gnu.org>
* configure.in: If parted/parted.h is found, define HAVE_PARTED_PARTED_H explicitely.
-rw-r--r--ChangeLog5
-rw-r--r--configure.in6
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e8e3d1f..def82146 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-12 Marcus Brinkmann <marcus@gnu.org>
+
+ * configure.in: If parted/parted.h is found, define
+ HAVE_PARTED_PARTED_H explicitely.
+
2001-08-25 Roland McGrath <roland@frob.com>
* configure.in: Add a check for Parted's libraries.
diff --git a/configure.in b/configure.in
index 93947bbb..3299af40 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-AC_REVISION([$Id: configure.in,v 1.21 2001/08/26 00:10:50 roland Exp $])
+AC_REVISION([$Id: configure.in,v 1.22 2001/10/12 00:04:58 marcus Exp $])
AC_PREREQ(2.12) dnl Minimum Autoconf version required.
AC_INIT(hurd/hurd_types.h) dnl A distinctive file to look for in srcdir.
@@ -128,7 +128,9 @@ parted=$with_parted
save_LIBS=
LIBS=
test $parted = no || {
- AC_CHECK_HEADER(parted/parted.h, , parted=no)
+ AC_CHECK_HEADER(parted/parted.h,
+ [AC_DEFINE(HAVE_PARTED_PARTED_H)],
+ parted=no)
}
test $parted = no || {
AC_CHECK_LIB(uuid, uuid_generate, , parted=no)