Remove redundant -lstdc++ configure check

This became unused after commit 346a9e7.
This commit is contained in:
Kleis Auke Wolthuizen 2020-12-29 13:40:36 +01:00
parent 0982d0efbb
commit 7e9c7059be
1 changed files with 0 additions and 18 deletions

View File

@ -141,24 +141,6 @@ AM_CONDITIONAL(ENABLE_DEPRECATED, [test x"$enable_deprecated" = x"yes"])
# this gets pasted into version.h as a #define
AC_SUBST(VIPS_ENABLE_DEPRECATED)
# we are a C library with some optional C++ components inside it
# on most platforms, but not all, we just include -lstdc++ in the link line
# for programs
# we ought to have a proper configure test for this :(
AC_MSG_CHECKING([for needs -lstdc++])
case "$host_os" in
freebsd*)
vips_needs_stdcpp=no
;;
*)
vips_needs_stdcpp=yes
;;
esac
AC_MSG_RESULT([$vips_needs_stdcpp])
AC_MSG_CHECKING([for native Win32])
case "$host" in
*-*-mingw*)