|
|
@ -3,7 +3,6 @@ dnl Distributed under the MIT software license, see the accompanying
|
|
|
|
dnl file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
dnl file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
|
|
# GCC 8.1 and earlier requires -lstdc++fs
|
|
|
|
# GCC 8.1 and earlier requires -lstdc++fs
|
|
|
|
# Clang 8.0.0 (libc++) and earlier requires -lc++fs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m4_define([_CHECK_FILESYSTEM_testbody], [[
|
|
|
|
m4_define([_CHECK_FILESYSTEM_testbody], [[
|
|
|
|
#include <filesystem>
|
|
|
|
#include <filesystem>
|
|
|
@ -26,20 +25,12 @@ AC_DEFUN([CHECK_FILESYSTEM], [
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
],[
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
SAVED_LIBS="$LIBS"
|
|
|
|
LIBS="$LIBS -lstdc++fs"
|
|
|
|
LIBS="$SAVED_LIBS -lstdc++fs"
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([whether std::filesystem needs -lstdc++fs])
|
|
|
|
AC_MSG_CHECKING([whether std::filesystem needs -lstdc++fs])
|
|
|
|
AC_LINK_IFELSE([AC_LANG_SOURCE([_CHECK_FILESYSTEM_testbody])],[
|
|
|
|
AC_LINK_IFELSE([AC_LANG_SOURCE([_CHECK_FILESYSTEM_testbody])],[
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
],[
|
|
|
|
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([whether std::filesystem needs -lc++fs])
|
|
|
|
|
|
|
|
LIBS="$SAVED_LIBS -lc++fs"
|
|
|
|
|
|
|
|
AC_LINK_IFELSE([AC_LANG_SOURCE([_CHECK_FILESYSTEM_testbody])],[
|
|
|
|
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
|
|
|
|
],[
|
|
|
|
],[
|
|
|
|
AC_MSG_FAILURE([cannot figure out how to use std::filesystem])
|
|
|
|
AC_MSG_FAILURE([cannot figure out how to use std::filesystem])
|
|
|
|
])
|
|
|
|
|
|
|
|
])
|
|
|
|
])
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|