1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
|
AC_DEFUN([PAM_MYSQL_CHECK_CONST], [
AC_CACHE_CHECK([$1 availability], [ac_cv_const_[]$1], [
AC_TRY_COMPILE([$4], [
int dummy = (int)$1;
], [
ac_cv_const_[]$1=yes
], [
ac_cv_const_[]$1=no
])
])
if test "$ac_cv_const_[]$1" = "yes"; then
ifelse([$2],[],[:],[$2])
else
ifelse([$3],[],[:],[$3])
fi
])
AC_DEFUN([PAM_MYSQL_CHECK_PAM_PROTOS], [
ac_save_CFLAGS="$CFLAGS"
CFLAGS="$INCLUDES -Werror $CFLAGS"
AC_MSG_CHECKING([if the second argument of pam_get_user() takes const pointer])
AC_TRY_COMPILE([
#include <pam_appl.h>
#include <pam_modules.h>
], [
int data = 0;
pam_get_user((void *)&data, (const char **)&data, (void *)&data);
], [
AC_MSG_RESULT([yes])
AC_DEFINE([PAM_GET_USER_CONST], [const], [Define to `const' if the 2nd arg of pam_get_user() takes const pointer])
], [
AC_MSG_RESULT([no])
AC_DEFINE([PAM_GET_USER_CONST], [], [Define to `const' if the 2nd arg of pam_get_user() takes const pointer])
])
AC_MSG_CHECKING([if the third argument of pam_get_data() takes const pointer])
AC_TRY_COMPILE([
#include <pam_appl.h>
#include <pam_modules.h>
], [
int data = 0;
pam_get_data((void *)&data, (void *)&data, (const void **)&data);
], [
AC_MSG_RESULT([yes])
AC_DEFINE([PAM_GET_DATA_CONST], [const], [Define to `const' if the 2nd arg of pam_get_data() takes const pointer])
], [
AC_MSG_RESULT([no])
AC_DEFINE([PAM_GET_DATA_CONST], [], [Define to `const' if the 2nd arg of pam_get_data() takes const pointer])
])
AC_MSG_CHECKING([if the third argument of pam_get_item() takes const pointer])
AC_TRY_COMPILE([
#include <pam_appl.h>
#include <pam_modules.h>
], [
int data = 0;
pam_get_item((void *)&data, 0, (const void **)&data);
], [
AC_MSG_RESULT([yes])
AC_DEFINE([PAM_GET_ITEM_CONST], [const], [Define to `const' if the 2nd arg of pam_get_item() takes const pointer])
], [
AC_MSG_RESULT([no])
AC_DEFINE([PAM_GET_ITEM_CONST], [], [Define to `const' if the 2nd arg of pam_get_item() takes const pointer])
])
AC_MSG_CHECKING([if the second argument of pam_conv.conv() takes const pointer])
AC_TRY_COMPILE([
#include <pam_appl.h>
#include <pam_modules.h>
], [
int (*conv)(int num_msg, const struct pam_message **msg,
struct pam_response **resp, void *appdata_ptr) = 0;
struct pam_conv c = { conv, 0 };
c.conv = 0;
], [
AC_MSG_RESULT(yes)
AC_DEFINE([PAM_CONV_CONST], [const], [Define to `const' if the 2nd arg of pam_conv.conv takes const pointer.])
], [
AC_MSG_RESULT(no)
AC_DEFINE([PAM_CONV_CONST], [], [Define to `const' if the 2nd arg of pam_conv.conv takes const pointer.])
])
CFLAGS="$ac_save_CFLAGS"
])
AC_DEFUN([PAM_MYSQL_CHECK_PAM_CONSTS], [
ac_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$INCLUDES $CPPFLAGS"
PAM_MYSQL_CHECK_CONST([PAM_CONV_AGAIN], [
AC_DEFINE([HAVE_PAM_CONV_AGAIN], [1], [Define to 1 if PAM defines PAM_CONV_AGAIN constant.])
], [], [
#include <pam_appl.h>
#include <pam_modules.h>
])
PAM_MYSQL_CHECK_CONST([PAM_INCOMPLETE], [
AC_DEFINE([HAVE_PAM_INCOMPLETE], [1], [Define to 1 if PAM defines PAM_INCOMPLETE constant.])
], [], [
#include <pam_appl.h>
#include <pam_modules.h>
])
PAM_MYSQL_CHECK_CONST([PAM_NEW_AUTHTOK_REQD], [
AC_DEFINE([HAVE_PAM_NEW_AUTHTOK_REQD], [1], [Define to 1 if PAM defines PAM_NEW_AUTHTOK_REQD constant.])
], [], [
#include <pam_appl.h>
#include <pam_modules.h>
])
PAM_MYSQL_CHECK_CONST([PAM_AUTHTOK_RECOVERY_ERR], [], [
PAM_MYSQL_CHECK_CONST([PAM_AUTHTOK_RECOVER_ERR], [
AC_DEFINE([LINUX_PAM_CONST_BUG], [1], [Define to 1 if the implementation does not define PAM_AUTHTOK_RECOVER_ERR])
], [], [
#include <pam_appl.h>
#include <pam_modules.h>
])
], [
#include <pam_appl.h>
#include <pam_modules.h>
])
CPPFLAGS="$ac_save_CPPFLAGS"
])
AC_DEFUN([PAM_MYSQL_CHECK_PAM], [
pam_include_path=
pam_prefix=
for _pfx in $1; do
for dir in "$_pfx/include" "$_pfx/include/security" "$_pfx/include/pam"; do
if test -e "$dir/pam_modules.h"; then
ac_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -I$_pfx/include -I$dir"
AC_CHECK_HEADERS([pam_appl.h], [
AC_MSG_CHECKING([pam_modules.h usability])
AC_TRY_COMPILE([
#include <pam_appl.h>
#include <pam_modules.h>
], [], [
AC_MSG_RESULT([yes])
pam_prefix="$_pfx"
pam_include_path="$dir"
break
], [
AC_MSG_RESULT([no])
])
])
CPPFLAGS="$ac_save_CPPFLAGS"
fi
done
done
if test -z "$pam_include_path"; then
AC_MSG_ERROR([Cannot find pam headers. Please check if your system is ready for pam module development.])
fi
INCLUDES="$INCLUDES -I$pam_include_path -I$pam_prefix/include"
PAM_MYSQL_CHECK_PAM_CONSTS
PAM_MYSQL_CHECK_PAM_PROTOS
])
AC_DEFUN([PAM_MYSQL_CHECK_LIBMYSQLCLIENT], [
AC_MSG_CHECKING([if] $1 [is a mysql_config script])
_cfg="$1"
AS_IF([test -x "$_cfg" -a -r "$_cfg" -a -f "$_cfg"],[
dnl $1 may be a path to mysql_config
AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_MYSQL_H], [1], [Define to `1' if you have the <mysql.h> header file.])
mysql_config="$1"
],[
AC_MSG_RESULT([no])
PKG_CHECK_MODULES([MYSQLCLIENT],[mysqlclient],[
mysql_pkg_config=yes
AC_DEFINE([HAVE_MYSQL_H], [1], [Define to `1' if you have the <mysql.h> header file.])
],[
mysql_pkg_config=no
mysql_lib_path=
mysql_include_path=
mysql_lib_name=mysqlclient
for _pfx in $1; do
_cfg="$_pfx/bin/mysql_config"
AC_MSG_CHECKING([mysql_config availability in $_pfx/bin])
if test -x "$_cfg" -a -r "$_cfg" -a -f "$_cfg"; then
AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_MYSQL_H], [1], [Define to `1' if you have the <mysql.h> header file.])
mysql_config="$_cfg"
break
else
AC_MSG_RESULT([no])
fi
for dir in "$_pfx/lib" "$_pfx/lib/mysql"; do
AC_MSG_CHECKING([$mysql_lib_name availability in $dir])
name="$mysql_lib_name"
if eval test -e "$dir/$libname_spec$shrext_cmds" -o -e "$dir/$libname_spec.$libext"; then
AC_MSG_RESULT([yes])
AC_MSG_CHECKING([$dir/$name usability])
ac_save_LIBS="$LIBS"
LIBS="$LIBS -L$dir"
AC_CHECK_LIB([$mysql_lib_name], [mysql_init], [
AC_MSG_RESULT([yes])
mysql_lib_path="$dir"
], [
AC_MSG_RESULT([no])
])
LIBS="$ac_save_LIBS"
if test ! -z "$mysql_lib_path"; then
break
fi
else
AC_MSG_RESULT([no])
fi
done
for dir in "$_pfx/include" "$_pfx/include/mysql"; do
AC_MSG_CHECKING([mysql headers availability in $dir])
if test -e "$dir/mysql.h"; then
AC_MSG_RESULT([yes])
AC_MSG_CHECKING([mysql headers usability])
ac_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -I$dir"
AC_CHECK_HEADER([mysql.h], [
AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_MYSQL_H], [1], [Define to `1' if you have the <mysql.h> header file.])
mysql_include_path="$dir"
], [
AC_MSG_RESULT([no])
])
CPPFLAGS="$ac_save_CPPFLAGS"
if test ! -z "$mysql_include_path"; then
break
fi
else
AC_MSG_RESULT([no])
fi
done
done
])
])
if test "$mysql_pkg_config" = yes; then
CFLAGS="$CFLAGS $MYSQLCLIENT_CFLAGS"
LIBS="$LIBS $MYSQLCLIENT_LIBS"
elif test -z "$mysql_config"; then
if test -z "$mysql_lib_path" -o -z "$mysql_include_path"; then
AC_MSG_ERROR([Cannot locate mysql client library. Please check your mysql installation.])
fi
INCLUDES="$INCLUDES -I$mysql_include_path"
LIBS="$LIBS -L$mysql_lib_path -l$mysql_lib_name"
else
CFLAGS="$CFLAGS `\"$mysql_config\" --cflags`"
LIBS="$LIBS `\"$mysql_config\" --libs`"
fi
ac_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $INCLUDES"
AC_CHECK_FUNCS([mysql_real_query mysql_real_escape_string make_scrambled_password_323], [], [])
CPPFLAGS="$ac_save_CPPFLAGS"
])
AC_DEFUN([PAM_MYSQL_CHECK_CYRUS_SASL_V1], [
sasl_v1_CFLAGS=
sasl_v1_LIBS=
sasl_v1_lib_name="sasl"
for _pfx in $1; do
for dir in "$_pfx/include"; do
if test -e "$dir/sasl.h" -a -z "$sasl_CFLAGS"; then
ac_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -I$dir"
AC_MSG_CHECKING([if sasl.h is one of Cyrus SASL version 1])
AC_TRY_RUN([
#include <sasl.h>
int main()
{
return (SASL_VERSION_MAJOR == 1 ? 0: 1);
}
], [
AC_MSG_RESULT([yes])
sasl_v1_CFLAGS="-I$dir"
], [
AC_MSG_RESULT([no])
])
CPPFLAGS="$ac_save_CPPFLAGS"
fi
done
for dir in "$_pfx/lib"; do
if test -z "$sasl_v1_LIBS"; then
ac_save_LIBS="$LIBS"
LIBS="$LIBS -L$dir"
name="$sasl_v1_lib_name"
if eval test -e "$dir/$libname_spec$shrext_cmds" -o -e "$dir/$libname_spec.$libext"; then
AC_CHECK_LIB([$sasl_v1_lib_name], [sasl_client_init], [
sasl_v1_LIBS="-L$dir -l$sasl_v1_lib_name"
],[])
fi
LIBS="$ac_save_LIBS"
fi
done
done
if test -z "$sasl_v1_CFLAGS" -o -z "$sasl_v1_LIBS"; then
ifelse([$3],[],[:],[$3])
else
ifelse([$2],[],[:],[$2])
fi
])
AC_DEFUN([PAM_MYSQL_CHECK_CYRUS_SASL_V2], [
sasl_v2_CFLAGS=
sasl_v2_LIBS=
sasl_v2_lib_name="sasl2"
for _pfx in $1; do
for dir in "$_pfx/include/sasl_v1" "$_pfx/include/sasl_v2" "$_pfx/include"; do
if test -e "$dir/sasl.h" -a -z "$sasl_v2_CFLAGS"; then
ac_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS -I$dir"
AC_MSG_CHECKING([if sasl.h is one of Cyrus SASL version 2])
AC_TRY_RUN([
#include <sasl.h>
int main()
{
return (SASL_VERSION_MAJOR == 2 ? 0: 1);
}
], [
AC_MSG_RESULT([yes])
sasl_v2_CFLAGS="-I$dir"
], [
AC_MSG_RESULT([no])
])
CPPFLAGS="$ac_save_CPPFLAGS"
fi
done
for dir in "$_pfx/lib"; do
if test -z "$sasl_v2_LIBS"; then
ac_save_LIBS="$LIBS"
LIBS="$LIBS -L$dir"
name="$sasl_v2_lib_name"
if eval test -e "$dir/$libname_spec$shrext_cmds" -o -e "$dir/$libname_spec.$libext"; then
AC_CHECK_LIB([$sasl_v2_lib_name], [sasl_v2_client_init], [
sasl_v2_LIBS="-L$dir -l$sasl_v2_lib_name"
],[])
fi
LIBS="$ac_save_LIBS"
fi
done
done
if test -z "$sasl_v2_CFLAGS" -o -z "$sasl_v2_LIBS"; then
ifelse([$3],[],[:],[$3])
else
ifelse([$2],[],[:],[$2])
fi
])
AC_DEFUN([PAM_MYSQL_CHECK_MD5_HEADERS], [
AC_MSG_CHECKING([if md5.h is derived from Cyrus SASL Version 1])
AC_TRY_COMPILE([
#include <md5global.h>
#include <md5.h>
], [
MD5_CTX ctx;
_sasl_MD5Init(&ctx);
], [
AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_SASL_MD5_H], [1], [Define to 1 if md5.h in the include path is derived from cyrus-sasl_v1 package])
], [
AC_MSG_RESULT([no])
AC_CHECK_HEADERS([md5.h])
])
AC_MSG_CHECKING([if md5.h is Solaris's])
AC_TRY_COMPILE([
#include <md5.h>
], [
md5_calc(0, 0, 0);
], [
AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_SOLARIS_MD5_H], [1], [Define to 1 if md5.h in the include path is Solaris's])
AC_CHECK_LIB([md5], [md5_calc], [
AC_DEFINE([HAVE_SOLARIS_LIBMD5], [1], [Define to 1 if Solaris's libmd5 is available])
LIBS="$LIBS -lmd5"
])
], [
AC_MSG_RESULT([no])
AC_CHECK_HEADERS([md5.h])
AC_CHECK_FUNCS([MD5Data])
])
])
AC_DEFUN([PAM_MYSQL_CHECK_IPV6], [
ac_save_CFLAGS="$CFLAGS"
CFLAGS="$INCLUDES $CFLAGS"
PAM_MYSQL_CHECK_CONST([PF_INET6], [
AC_CHECK_TYPES([struct sockaddr_in6,struct in6_addr], [
AC_DEFINE([HAVE_IPV6], [1], [Define to 1 if IPv6 is available.])
], [], [
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
])
], [], [
#include <sys/types.h>
#include <sys/socket.h>
])
CFLAGS="$ac_save_CFLAGS"
])
AC_DEFUN([PAM_MYSQL_CHECK_GETHOSTBYNAME_R], [
ac_save_CFLAGS="$CFLAGS"
CFLAGS="$INCLUDES $CFLAGS"
AC_CHECK_FUNCS([gethostbyname_r], [
AC_MSG_CHECKING([if gethostbyname_r() is part of glibc])
AC_TRY_COMPILE([
#include <netdb.h>
], [
int x = gethostbyname_r("", (struct hostent *)0, (char *)0, 0, (struct hostent **)0, (int *)0);
], [
AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_GNU_GETHOSTBYNAME_R], [1], [Define to 1 if gethostbyname_r() is part of glibc])
], [
AC_MSG_RESULT([no])
AC_MSG_CHECKING([if gethostbyname_r() is part of SUN libc])
AC_TRY_COMPILE([
#include <netdb.h>
], [
struct hostent *x = gethostbyname_r("", (struct hostent *)0, (char *)0, 0, (int *)0);
], [
AC_MSG_RESULT([yes])
AC_DEFINE([HAVE_SUNOS_GETHOSTBYNAME_R], [1], [Define to 1 if gethostbyname_r() is part of SUN libc])
], [
AC_MSG_RESULT([no])
])
])
], [])
CFLAGS="$ac_save_CFLAGS"
])
|