pacho 15/06/20 14:53:58 Added: uae-0.8.26-underlinking.patch Log: Fix building (#505788) (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Revision Changes Path 1.1 app-emulation/uae/files/uae-0.8.26-underlinking.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/uae/files/uae-0.8.26-underlinking.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/uae/files/uae-0.8.26-underlinking.patch?rev=1.1&content-type=text/plain Index: uae-0.8.26-underlinking.patch =================================================================== --- configure.in +++ configure.in @@ -81,6 +81,16 @@ AC_CHECK_LIB(audio, alOpenPort, HAVE_SGIAUDIO_LIB=yes, HAVE_SGIAUDIO_LIB=no) AC_CHECK_LIB(asound, snd_pcm_open, HAVE_ALSA=yes, HAVE_ALSA=no) +dnl Check for libm for cos() +AC_SEARCH_LIBS([cos], [m], [], [ + AC_MSG_ERROR([unable to find the cos() function]) +]) + +dnl Check for libm for floor() +AC_SEARCH_LIBS([floor], [m], [], [ + AC_MSG_ERROR([unable to find the floor() function]) +]) + AC_PATH_XTRA AC_CONFIG_HEADER(src/sysconfig.h)
