diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-10-13 22:17:29 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-10-13 22:17:29 +0100 |
commit | e6f7180af15d6d01205a2dac2f4f1e410f0ffc32 (patch) | |
tree | f9c5d98c2293cdb0a10635a330d2b873fd585f91 /configure.ac | |
parent | ad5a561adbfb8241633e40ca9ff9d270522f96d8 (diff) | |
download | rtmux-e6f7180af15d6d01205a2dac2f4f1e410f0ffc32.tar.gz rtmux-e6f7180af15d6d01205a2dac2f4f1e410f0ffc32.tar.bz2 rtmux-e6f7180af15d6d01205a2dac2f4f1e410f0ffc32.zip |
tmux no longer uses openat() so we can remove the compatibilty function.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index c383e483..77c82d5e 100644 --- a/configure.ac +++ b/configure.ac @@ -458,13 +458,6 @@ if test "x$found_cfmakeraw" = xyes; then fi AM_CONDITIONAL(NO_CFMAKERAW, [test "x$found_cfmakeraw" = xno]) -# Look for openat, compat/openat.c used if missing. -AC_CHECK_FUNC(openat, found_openat=yes, found_openat=no) -if test "x$found_openat" = xyes; then - AC_DEFINE(HAVE_OPENAT) -fi -AM_CONDITIONAL(NO_OPENAT, [test "x$found_openat" = xno]) - # Look for reallocarray, compat/reallocarray.c used if missing. AC_CHECK_FUNC(reallocarray, found_reallocarray=yes, found_reallocarray=no) if test "x$found_reallocarray" = xyes; then |