From: Andre Date: Sat, 15 Apr 2006 18:56:15 +0000 (+0200) Subject: configure.ac: Add check for unix socket credentials X-Git-Tag: v0.2.12~90 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=547d3714848f60fdd9ea52d7a6b2d6873ee59c25 configure.ac: Add check for unix socket credentials --- diff --git a/configure.ac b/configure.ac index e9977e3f..0c40b4d7 100644 --- a/configure.ac +++ b/configure.ac @@ -126,6 +126,20 @@ if test "$enable_ssldir" = "yes"; then enable_ssldir=""; fi CHECK_SSL($enable_ssldir) server_ldflags="$srver_ldflags $SSL_LDFLAGS $SSL_LIBS" +########################################################################### ucred + +AC_MSG_CHECKING(for struct ucred) +AC_TRY_LINK([ + #include + #include +],[ + struct ucred sucred; sucred.pid=0; +],[have_ucred=yes],[have_ucred=no]) +AC_MSG_RESULT($have_ucred) +if test ${have_ucred} = yes; then + AC_DEFINE(HAVE_UCRED, 1, define to 1 you have struct ucred) +fi + ########################################################################### gtk2 pkg_modules="gtk+-2.0 >= 2.0.0" @@ -315,4 +329,5 @@ mysql support: $have_mysql ogg vorbis support: $have_ogg mp3dec support (libmad): $have_mad ortp support: $have_ortp +unix socket credentials: $have_ucred ])