~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Monty Taylor
  • Date: 2008-11-24 05:39:31 UTC
  • mto: This revision was merged to the branch mainline in revision 610.
  • Revision ID: mordred@solanthus.local-20081124053931-tzlxsgkdvs3b7n8n
Reverted libuuid check code. 

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