m4/ucred.m4: don't define _GNU_SOURCE

Not necessary anymore, because we enable this flag unconditionally
now.
This commit is contained in:
Max Kellermann 2014-03-15 18:25:17 +01:00
parent 7d353bbe2a
commit b10276ff98

View File

@ -1,5 +1,4 @@
# Check if "struct ucred" is available. If not, try harder with
# _GNU_SOURCE.
# Check if "struct ucred" is available.
#
# Author: Max Kellermann <max@duempel.org>
@ -10,19 +9,6 @@ AC_DEFUN([STRUCT_UCRED],[
[struct ucred cred;],
mpd_cv_have_struct_ucred=yes,
mpd_cv_have_struct_ucred=no)
if test x$mpd_cv_have_struct_ucred = xno; then
# glibc 2.8 forces _GNU_SOURCE on us
AC_TRY_COMPILE(
[#define _GNU_SOURCE
#include <sys/socket.h>],
[struct ucred cred;],
mpd_cv_have_struct_ucred=yes,
mpd_cv_have_struct_ucred=no)
if test x$mpd_cv_have_struct_ucred = xyes; then
# :(
CFLAGS="$CFLAGS -D_GNU_SOURCE"
fi
fi
])
AC_MSG_RESULT($mpd_cv_have_struct_ucred)