AC_CHECK_MEMBERS([struct termios2.c_ispeed, struct termios2.c_ospeed],
[AC_DEFINE(HAVE_TERMIOS2_SPEED, 1)], [], [[#include <linux/termios.h>]])
+# Check for readlinkat.
+AC_CHECK_FUNC([readlinkat], [AC_DEFINE(HAVE_READLINKAT, 1)], [])
+
saved="$CFLAGS"; CFLAGS="$CFLAGS -Werror"
AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
__attribute__((visibility("hidden"))) void foo(void) { }
char name[PATH_MAX], target[PATH_MAX];
struct dirent entry, *result;
struct serial_struct serial_info;
+#ifndef HAVE_READLINKAT
+ char buf[sizeof(entry.d_name) + 16];
+#endif
int len, fd, ioctl_result;
DIR *dir;
int ret = SP_OK;
DEBUG("Iterating over results");
while (!readdir_r(dir, &entry, &result) && result) {
+#ifdef HAVE_READLINKAT
len = readlinkat(dirfd(dir), entry.d_name, target, sizeof(target));
+#else
+ snprintf(buf, sizeof(buf), "/sys/class/tty/%s", entry.d_name);
+ len = readlink(buf, target, sizeof(target));
+#endif
if (len <= 0 || len >= (int) sizeof(target)-1)
continue;
target[len] = 0;