head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.2 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.3.0.18 pkgsrc-2012Q4-base:1.3 pkgsrc-2012Q3:1.3.0.16 pkgsrc-2012Q3-base:1.3 pkgsrc-2012Q2:1.3.0.14 pkgsrc-2012Q2-base:1.3 pkgsrc-2012Q1:1.3.0.12 pkgsrc-2012Q1-base:1.3 pkgsrc-2011Q4:1.3.0.10 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q3:1.3.0.8 pkgsrc-2011Q3-base:1.3 pkgsrc-2011Q2:1.3.0.6 pkgsrc-2011Q2-base:1.3 pkgsrc-2011Q1:1.3.0.4 pkgsrc-2011Q1-base:1.3 pkgsrc-2010Q4:1.3.0.2 pkgsrc-2010Q4-base:1.3 pkgsrc-2010Q3:1.1.0.10 pkgsrc-2010Q3-base:1.1 pkgsrc-2010Q2:1.1.0.8 pkgsrc-2010Q2-base:1.1 pkgsrc-2010Q1:1.1.0.6 pkgsrc-2010Q1-base:1.1 pkgsrc-2009Q4:1.1.0.4 pkgsrc-2009Q4-base:1.1 pkgsrc-2009Q3:1.1.0.2 pkgsrc-2009Q3-base:1.1; locks; strict; comment @# @; 1.4 date 2013.01.27.00.18.29; author wiz; state dead; branches; next 1.3; 1.3 date 2010.12.27.14.28.39; author obache; state Exp; branches; next 1.2; 1.2 date 2010.10.22.17.55.28; author drochner; state Exp; branches; next 1.1; 1.1 date 2009.07.24.12.10.18; author obache; state Exp; branches; next ; desc @@ 1.4 log @Remove nucleo and metisse. Nucleo doesn't build against any ffmpeg in pkgsrc, and the last release 0.7.6 (this was 0.7.5) is from 2009, so development seems to have stopped. @ text @$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) { @ 1.3 log @Change patch-a{e,g} to same as patch-ad, to use native fmax/fmin will be used if available on NetBSD/DragonFly. (It should be done at same time). @ text @d1 1 a1 1 $NetBSD: patch-ag,v 1.2 2010/10/22 17:55:28 drochner Exp $ @ 1.2 log @make this build with newer NetBSD (where fmin()/fmax() is supported): get static inline replacements out of the namespace @ text @d1 1 a1 1 $NetBSD$ d5 1 a5 1 @@@@ -22,6 +22,22 @@@@ d10 2 d13 1 a13 1 +xxxfmin(double x, double y) d19 1 a19 1 +xxxfmax(double x, double y) d23 1 a23 2 +#define fmin xxxfmin +#define fmax xxxfmax @ 1.1 log @Update metisse to 0.4.1. This is mostly a maintenance release compared to 0.4.0. It fixes build issues when building with _FORTIFY_SOURCE and it includes all the security patches from Mandriva. Pkgsrc Changes: * set LICENSE gnu-gpl-v3 * marked as user-destdir ready. * add option: mmx and python , fixes PR 41735. * set selected X's one to default font path. @ text @d5 1 a5 1 @@@@ -22,6 +22,20 @@@@ d11 1 a11 1 +fmin(double x, double y) d17 1 a17 1 +fmax(double x, double y) d21 2 @