mirror of
https://git.freebsd.org/ports.git
synced 2025-07-15 00:09:15 -04:00
Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight
13 lines
453 B
C++
13 lines
453 B
C++
--- plugins/sf2_player/sf2_player.cpp.orig 2015-03-08 02:47:14 UTC
|
|
+++ plugins/sf2_player/sf2_player.cpp
|
|
@@ -23,6 +23,10 @@
|
|
*
|
|
*/
|
|
|
|
+#include <math.h>
|
|
+#if __FreeBSD_version <= 704100 || (__FreeBSD_version >= 800000 && __FreeBSD_version < 802502) || (__FreeBSD_version >= 900000 && __FreeBSD_version < 900027)
|
|
+ #define log2(x) ( log (x) * (1./M_LN2) )
|
|
+#endif
|
|
#include <QtCore/QDebug>
|
|
#include <QtGui/QLayout>
|
|
#include <QtGui/QLabel>
|