~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_have_libdrizzle.m4

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
AC_DEFUN([PANDORA_REQUIRE_LIBDRIZZLE],[
38
38
  AC_REQUIRE([PANDORA_HAVE_LIBDRIZZLE])
39
39
  AS_IF([test "x${ac_cv_libdrizzle}" = "xno"],[
40
 
    PANDORA_MSG_ERROR([libdrizzle is required for ${PACKAGE}])
 
40
    AC_MSG_ERROR([libdrizzle is required for ${PACKAGE}])
41
41
  ],[
42
42
    dnl We need at least 0.8 on Solaris non-sparc
43
43
    AS_IF([test "$target_cpu" != "sparc" -a "x${TARGET_SOLARIS}" = "xtrue"],[
56
56
    [pandora_cv_libdrizzle_recent=yes],
57
57
    [pandora_cv_libdrizzle_recent=no])])
58
58
  AS_IF([test "$pandora_cv_libdrizzle_recent" = "no"],[
59
 
    PANDORA_MSG_ERROR([Your version of libdrizzle is too old. ${PACKAGE} requires at least version 0.8])
 
59
    AC_MSG_ERROR([Your version of libdrizzle is too old. ${PACKAGE} requires at least version 0.8])
60
60
  ])
61
61
])