Skip to content

Commit

Permalink
Build: Fix text wrapping in an output message.
Browse files Browse the repository at this point in the history
  • Loading branch information
JiaT75 committed Oct 31, 2023
1 parent 8c36ab7 commit 148e206
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -857,11 +857,12 @@ CFLAGS="$OLD_CFLAGS"
# win95, and the compiler does not support attribute constructor, then we
# would end up with a multithreaded build that is thread-unsafe. As a
# result this configuration is not allowed.
if test "x$enable_small$enable_threads$have_func_attribute_constructor"\
if test "x$enable_small$enable_threads$have_func_attribute_constructor" \
= xyeswin95no; then
AC_MSG_ERROR([--enable-threads=win95 and --enable-small cannot be
used at the same time with a compiler that doesn't support
__attribute__((__constructor__))])
AC_MSG_ERROR([
--enable-threads=win95 and --enable-small cannot be used
at the same time with a compiler that doesn't support
__attribute__((__constructor__))])
fi

# __attribute__((__ifunc__())) can be used to choose between different
Expand Down

0 comments on commit 148e206

Please sign in to comment.