$NetBSD: patch-ag,v 1.3 2010/12/27 14:28:39 obache Exp $ --- FvwmCompositor/renderer/goodies.cxx.orig 2008-06-26 12:32:30.000000000 +0000 +++ FvwmCompositor/renderer/goodies.cxx @@ -22,6 +22,23 @@ #include "FoldablePolygon.H" #include "desktop/MetisseWindow.H" +#if defined(__NetBSD__) || defined(__DragonFly__) +#include +#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD__) && (__NetBSD_Version__ >= 599002100 || (__NetBSD_Version__ >= 501000000 && __NetBSD_Version__ < 599000000))) +static inline double +fmin(double x, double y) +{ + return (x < y) ? x : y; +} + +static inline double +fmax(double x, double y) +{ + return (x > y) ? x : y; +} +#endif +#endif + void goodies_marcking_feedback( GLfloat x, GLfloat y, int dist, int draw_dist, int dirs, GLfloat alpha) {