Sat, 03 Oct 2009 16:18:52 +0200
Update version, adjust corresponding buildconf, and correct logic.
1: Make minor corrections and improvements to scripts patch logic.
2: Upgrade to most recent stable release version 3.0.2.
3: Force selection of a single db backend, as multiple ones never
were supported (changing 'with_db<end>' identifiers accordingly.)
4: Unfortunately add gawk requirement although only partly needed.
5: Add openssl::with_threads requirement to solve strange and hard
to debug problems on Solaris leading to connection failures:
'host-dir JobId 0: Error: openssl.c:86 Connect failure: ERR=error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number'
and
'host-dir JobId 40: Fatal error: TLS negotiation failed with FD at "back1.host.com:9102"'
1 Index: glob/glob.c
2 --- glob/glob.c.orig 2006-03-10 03:20:45 +0100
3 +++ glob/glob.c 2006-04-01 19:09:18 +0200
4 @@ -216,13 +216,13 @@
5 # ifdef HAVE_ALLOCA_H
6 # include <alloca.h>
7 # else /* Not HAVE_ALLOCA_H. */
8 -# ifndef _AIX
9 +# if !defined (_AIX) && !defined (__FreeBSD__)
10 # ifdef WINDOWS32
11 # include <malloc.h>
12 # else
13 extern char *alloca ();
14 # endif /* WINDOWS32 */
15 -# endif /* Not _AIX. */
16 +# endif /* Not _AIX && not __FreeBSD__. */
17 # endif /* sparc or HAVE_ALLOCA_H. */
18 # endif /* GCC. */
20 Index: make.h
21 --- make.h.orig 2006-02-16 00:54:43 +0100
22 +++ make.h 2006-04-01 19:09:18 +0200
23 @@ -31,7 +31,7 @@
24 # ifdef _AIX
25 #pragma alloca
26 # else
27 -# ifndef alloca /* predefined by HP cc +Olibcalls */
28 +# if !defined (alloca) && !defined (__FreeBSD__) /* predefined by HP cc +Olibcalls, part of stdlib.h on FreeBSD */
29 char *alloca ();
30 # endif
31 # endif