~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_have_libboost_date_time.m4

  • Committer: Monty Taylor
  • Date: 2010-08-06 23:03:18 UTC
  • mto: (1666.4.9 rplugin-innobase)
  • mto: This revision was merged to the branch mainline in revision 1712.
  • Revision ID: mordred@inaugust.com-20100806230318-6lj8jrx1xrqcxhm4
Updated pandora-build files to version 0.145

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl Copyright (C) 2010 Monty Taylor
 
2
dnl This file is free software; Monty Taylor
 
3
dnl gives unlimited permission to copy and/or distribute it,
 
4
dnl with or without modifications, as long as this notice is preserved.
 
5
 
 
6
AC_DEFUN([_PANDORA_SEARCH_BOOST_DATE_TIME],[
 
7
  AC_REQUIRE([AC_LIB_PREFIX])
 
8
  AC_REQUIRE([ACX_PTHREAD])
 
9
 
 
10
  dnl --------------------------------------------------------------------
 
11
  dnl  Check for Boost.Date_Time
 
12
  dnl --------------------------------------------------------------------
 
13
 
 
14
  AC_LANG_PUSH(C++)
 
15
  AC_LIB_HAVE_LINKFLAGS(boost_date_time-mt,,[
 
16
    #include <boost/date_time.hpp>
 
17
  ],[
 
18
    boost::gregorian::date weekstart(2002,2,1);
 
19
  ])
 
20
  AS_IF([test "x${ac_cv_libboost_date_time_mt}" = "xno"],[
 
21
    AC_LIB_HAVE_LINKFLAGS(boost_date_time,,[
 
22
      #include <boost/date_time.hpp>
 
23
    ],[
 
24
      boost::gregorian::date weekstart(2002,2,1);
 
25
    ])
 
26
  ])
 
27
  AC_LANG_POP()
 
28
  
 
29
  AM_CONDITIONAL(HAVE_BOOST_DATE_TIME,
 
30
    [test "x${ac_cv_libboost_date_time}" = "xyes" -o "x${ac_cv_libboost_date_time_mt}" = "xyes"])
 
31
  BOOST_LIBS="${BOOST_LIBS} ${LTLIBBOOST_DATE_TIME_MT} ${LTLIBBOOST_DATE_TIME}"
 
32
  AC_SUBST(BOOST_LIBS) 
 
33
])
 
34
 
 
35
AC_DEFUN([PANDORA_HAVE_BOOST_DATE_TIME],[
 
36
  PANDORA_HAVE_BOOST($1)
 
37
  _PANDORA_SEARCH_BOOST_DATE_TIME($1)
 
38
])
 
39
 
 
40
AC_DEFUN([PANDORA_REQUIRE_BOOST_DATE_TIME],[
 
41
  PANDORA_REQUIRE_BOOST($1)
 
42
  _PANDORA_SEARCH_BOOST_DATE_TIME($1)
 
43
  AS_IF([test "x${ac_cv_libboost_date_time}" = "xno" -a "x${ac_cv_libboost_date_time_mt}" = "xno"],
 
44
      AC_MSG_ERROR([Boost.Date_Time is required for ${PACKAGE}]))
 
45
])
 
46