diff options
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ucred.m4 | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/m4/ucred.m4 b/m4/ucred.m4 index cdc6ea3b3..f53649985 100644 --- a/m4/ucred.m4 +++ b/m4/ucred.m4 @@ -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) |