~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_have_sasl.m4

  • Committer: Monty Taylor
  • Date: 2011-03-07 21:37:51 UTC
  • mfrom: (2221.2.4 build)
  • Revision ID: mordred@inaugust.com-20110307213751-uhic4rghe4dmdi8d
Merge Monty - Pandora-build updates. Allow building of only libdrizzle.
Merge Andrew - libdrizzle result reuse problem.
Merge David - Slave plugin bugfixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
AC_DEFUN([PANDORA_REQUIRE_SASL],[
56
56
  AC_REQUIRE([_PANDORA_SEARCH_SASL])
57
57
  AS_IF([test "x${ac_cv_sasl}" = "xno"],
58
 
    AC_MSG_ERROR([SASL (libsasl or libsasl2) is required for ${PACKAGE}]))
 
58
    PANDORA_MSG_ERROR([SASL (libsasl or libsasl2) is required for ${PACKAGE}]))
59
59
])
60
60
 
61
61
AC_DEFUN([_PANDORA_SEARCH_LIBSASL],[
92
92
AC_DEFUN([PANDORA_REQUIRE_LIBSASL],[
93
93
  AC_REQUIRE([_PANDORA_SEARCH_LIBSASL])
94
94
  AS_IF([test "x${ac_cv_libsasl}" = "xno"],
95
 
    AC_MSG_ERROR([libsasl is required for ${PACKAGE}]))
 
95
    PANDORA_MSG_ERROR([libsasl is required for ${PACKAGE}]))
96
96
])
97
97
 
98
98
AC_DEFUN([_PANDORA_SEARCH_LIBSASL2],[
129
129
AC_DEFUN([PANDORA_REQUIRE_LIBSASL2],[
130
130
  AC_REQUIRE([_PANDORA_SEARCH_LIBSASL2])
131
131
  AS_IF([test "x${ac_cv_libsasl2}" = "xno"],
132
 
    AC_MSG_ERROR([libsasl2 is required for ${PACKAGE}]))
 
132
    PANDORA_MSG_ERROR([libsasl2 is required for ${PACKAGE}]))
133
133
])