pkgsrc/wm/fvwm/patches/patch-ad
mef 24df96c706 (1) Bump version 2.4.20 to 2.6.5 based on PR pkg/47409.
The changes between them are too big, see NEWS
     in source tar ball. The release dates in between
     are recorded below.

(2) patches/patch-a[ace] are removed, assuming
    they are included in upstream.

(3) patches/patch-configure is added for modifying
    install path from fvwm to fvwm2.

(4) patches/patch-ad: Add comment lines.

(5) Add options xrender xcursor xft2, thanks
    Vitaly Shevtsov.

                CVS HEAD (20-Apr-2012)
    stable release 2.6.4 (01-Feb-2012)
    stable release 2.6.3 (30-Sept-2011)
    stable release 2.6.2 (06-Aug-2011)
    stable release 2.6.1 (16-Apr-2011)
    stable release 2.6.0 (15-Apr-2011)

      beta release 2.5.31 (09-Aug-2010)
      beta release 2.5.30 (09-May-2010)
      beta release 2.5.29 (03-Apr-2010)
      beta release 2.5.28 (20-Sep-2009)
      beta release 2.5.27 (23-Feb-2009)
      beta release 2.5.26 (7-May-2008)
      beta release 2.5.25 (26-Feb-2008)
      beta release 2.5.24 (24-Nov-2007)
      beta release 2.5.23 (1-Sep-2007)
      beta release 2.5.22 (29-Aug-2007)
      beta release 2.5.21 (20-Jan-2007)
      beta release 2.5.20 (15-Jan-2007)

    stable release 2.4.20 (6-Dec-2006)
2013-01-20 06:53:53 +00:00

23 lines
779 B
Text

$NetBSD: patch-ad,v 1.3 2013/01/20 06:53:53 mef Exp $
Avoid following problem:
----
In file included from gravity.c:19:0:
../config.h:562:9: warning: conflicting types for built-in function 'alloca'
In file included from ../config.h:577:0,
from gravity.c:19:
/usr/include/stdlib.h:250:7: error: conflicting types for 'alloca'
../config.h:562:9: note: previous declaration of 'alloca' was here
----
--- config.h.in.orig 2006-12-09 11:54:06.000000000 +0000
+++ config.h.in 2006-12-12 08:52:22.000000000 +0000
@@ -432,6 +432,8 @@
#else
# ifdef _AIX
#pragma alloca
+# elif defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__)
+# include <stdlib.h>
# else
# ifndef alloca /* predefined by HP cc +Olibcalls */
char *alloca ();