~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to m4/pandora_sasl.m4

  • Committer: Lee Bieber
  • Date: 2011-03-07 18:45:40 UTC
  • mfrom: (2221.1.8 only-libdrizzle)
  • mto: This revision was merged to the branch mainline in revision 2222.
  • Revision ID: kalebral@gmail.com-20110307184540-grw6ljb1ojab4ojz
Merge Monty - Allows folks to only build and install libdrizzle

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
])