1dnl SPDX-License-Identifier: GPL-2.0-or-later 2dnl Copyright (c) Red Hat Inc., 2008 3dnl Author: Masatake YAMATO <yamato@redhat.com> 4 5AC_DEFUN([LTP_CHECK_SYSCALL_MODIFY_LDT], 6[ 7AC_CHECK_FUNCS(modify_ldt) 8AC_CHECK_HEADERS(asm/ldt.h,[LTP_SYSCALL_MODIFY_LDT_HEADER=yes]) 9if test x"$LTP_SYSCALL_MODIFY_LDT_HEADER" = xyes; then 10 AC_CHECK_TYPES([struct user_desc, struct modify_ldt_ldt_s],[],[],[ 11#include <asm/ldt.h> 12]) 13fi]) 14