~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Brian Aker
  • Date: 2008-11-24 22:07:28 UTC
  • mfrom: (590.2.18 devel)
  • Revision ID: brian@tangent.org-20081124220728-4qhh08ktv5x4o0jo
Merge of Monty's (plus fix for increment style/useless +1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
552
552
# Check for libuuid
553
553
#--------------------------------------------------------------------
554
554
 
555
 
SEARCH_FOR_LIB(uuid, uuid_generate, uuid/uuid.h, 
556
 
               AC_MSG_ERROR([libuuid is required for Drizzle]))
557
 
 
 
555
dnl Do this by hand instead of with SEARCH_FOR_LIB, because uuid is weird.
 
556
AC_CHECK_HEADERS(uuid/uuid.h)
 
557
if test "x$ac_cv_header_uuid_uuid_h" = "xno"
 
558
then
 
559
  AC_MSG_ERROR([Couldn't find uuid/uuid.h. Try installing libuuid development packages])
 
560
fi
 
561
AC_CHECK_LIB(uuid, uuid_generate)
558
562
 
559
563
#--------------------------------------------------------------------
560
564
# Check for libevent