9cd6a39c3e
Mozilla Firefox is a free, open-source and cross-platform web browser for Windows, Linux, MacOS X and many other operating systems. It is fast and easy to use, and offers many advantages over other web browsers, such as tabbed browsing and the ability to block pop-up windows. Firefox also offers excellent bookmark and history management, and it can be extended by developers using industry standards such as XML, CSS, JavaScript, C++, etc. Many extensions are available. This package tracks 38 ESR.
15 lines
448 B
C++
15 lines
448 B
C++
$NetBSD: patch-media_libsoundtouch_src_cpu__detect__x86.cpp,v 1.1 2015/07/09 14:13:52 ryoon Exp $
|
|
|
|
--- media/libsoundtouch/src/cpu_detect_x86.cpp.orig 2014-04-18 02:03:48.000000000 +0000
|
|
+++ media/libsoundtouch/src/cpu_detect_x86.cpp
|
|
@@ -130,7 +130,9 @@ uint detectCPUextensions(void)
|
|
#endif
|
|
|
|
return res & ~_dwDisabledISA;
|
|
-
|
|
+#elif defined(__GNUC__)
|
|
+ // No cpuid.h --> no cpuid support
|
|
+ return 0;
|
|
#else
|
|
|
|
/// One of these is true:
|