diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-08-16 17:14:27 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-08-16 17:14:27 +0300 |
commit | 061e380c705015574ca53f3d956c67344c6cc62a (patch) | |
tree | f641db416e49c574bbfe267150dcf346cebca393 /configure.ac | |
parent | 37da097963cf0e988f0afc94bd63075965846ea0 (diff) | |
download | sciteco-061e380c705015574ca53f3d956c67344c6cc62a.tar.gz |
avoid linebreak in AC_CHECK_FUNCS(): might fix openSUSE 15.5 and 15.6 nightly builds on OBS
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 4821cf9..9dd03b3 100644 --- a/configure.ac +++ b/configure.ac @@ -174,8 +174,7 @@ AC_CHECK_FUNCS([memset setlocale strchr strrchr fstat sscanf], , [ # glib defines G_OS_UNIX instead... case $host in *-*-linux* | *-*-*bsd* | *-*-darwin* | *-*-cygwin* | *-*-haiku*) - AC_CHECK_FUNCS([realpath readlink pathconf fchown dup dup2 getpid - open read kill mmap popen pclose isatty], , [ + AC_CHECK_FUNCS([realpath readlink pathconf fchown dup dup2 getpid open read kill mmap popen pclose isatty], , [ AC_MSG_ERROR([Missing libc function]) ]) AC_SEARCH_LIBS(dladdr, [dl], , [ |