stlport/stlport.patch

Sat, 03 Oct 2009 16:18:52 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Oct 2009 16:18:52 +0200
changeset 220
a6cd892638c1
permissions
-rw-r--r--

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: build/Makefiles/gmake/targetdirs.mak
     2 --- build/Makefiles/gmake/targetdirs.mak.orig	2009-01-07 23:43:14.257973250 +0100
     3 +++ build/Makefiles/gmake/targetdirs.mak	2009-01-07 23:43:20.537852206 +0100
     4 @@ -80,10 +80,7 @@
     6  define createdirs
     7  @for d in $@ ; do \
     8 -  if [ -e $$d -a -f $$d ] ; then \
     9 -    echo "ERROR: Regular file $$d present, directory instead expected" ; \
    10 -    exit 1; \
    11 -  elif [ ! -d $$d ] ; then \
    12 +  if [ ! -d $$d ] ; then \
    13      mkdir -p $$d ; \
    14    fi ; \
    15  done
    16 Index: stlport/stl/config/host.h
    17 --- stlport/stl/config/host.h.orig	2009-01-07 23:44:43.751377659 +0100
    18 +++ stlport/stl/config/host.h	2009-01-07 23:44:20.070524718 +0100
    19 @@ -316,9 +316,7 @@
    20  /*
    21  #define __SunOS_5_9
    22   */
    23 -/*
    24  #define __SunOS_5_10
    25 - */
    26  #endif
    28  #if defined(__sun)

mercurial