Source: ucto Version: 0.14-2 Tags: patch upstream User: [email protected] Usertags: ftcbfs
ucto fails to cross build from source, because its configure script fails to find a working c++ compiler. It tries the compiler name "c++". While it exists without a triplet, it doesn't exist with a triplet. Please also try "g++". Please consider applying the attached patch. Helmut
--- ucto-0.14.orig/configure.ac +++ ucto-0.14/configure.ac @@ -12,7 +12,7 @@ AC_SUBST([SYSCONFDIR]) # Checks for programs. -AC_PROG_CXX( [c++] ) +AC_PROG_CXX([c++ g++]) # use libtool AC_PROG_LIBTOOL
-- debian-science-maintainers mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers
