]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
configure.ac: Add check for unix socket credentials
authorAndre <maan@p133.(none)>
Sat, 15 Apr 2006 18:56:15 +0000 (20:56 +0200)
committerAndre <maan@p133.(none)>
Sat, 15 Apr 2006 18:56:15 +0000 (20:56 +0200)
configure.ac

index e9977e3f740e01b1bf9b99bae27b66f7ba6c1387..0c40b4d76bd3cfbf0697a0dbf1c41a2756a4de09 100644 (file)
@@ -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 <sys/types.h>
+       #include <sys/socket.h>
+],[
+       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
 ])