xbase/xbase.patch

Sat, 24 Mar 2012 21:40:49 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 24 Mar 2012 21:40:49 +0100
changeset 414
fd611cde817f
parent 97
da688f850c6d
permissions
-rw-r--r--

Introduce many changes to the buildconf and source code including:
(01) clean up, update, and partially update default config files,
(02) seems that Melware is unable to perform release engineering so
update chan_capi to new daily snapshot to solve echo problems,
(03) correct Asterisk inadequate hard coded gmime version check,
(04) force postgresql pthreads linkage to solve build problem,
(05) remove buggy hard coded LibXML configure definitions,
(06) remove local architecture specification to allow GCC
internal logic to determine proper CPU type instead,
(07) remove vendor sound install target causing uncontrolled
downloads and non RPM managed file installation,
(08) solve long outstanding bug in tcptls causing Asterisk
to ignore any intermediate CA certificate signatures,
(09) back out Digium engineering team's bright idea of replacing the
very portable and pervasive POSIX rand(1) with ast_random(), and
then not even implementing it causing all references to fail in
platforms not providing the very new POSIX.1-2008 mkdtemp(3)
function only distributed by BSD and some Linux,
(10) withdraw advanced linker symbol manipulations from SVR5 builds
until either Binutils supports hybrid versioned and anonymous
linker scripts or GCC stops hard coding versioned linker scripts,
(11) correct missing library linkage, some tailored to a specific OS,
(12) remove outdated logic for the no longer distributed gmime-config(1),
(13) remove local gmime buildconf hacks now that Asterisk has corrected
their own build configuration to almost portably support gmime,
(14) solve build problems relating to undetected LibXML paths,
(15) correct erroneous out of tree include definitions,
(16) improve some variable and comment naming,
(17) simplify sound language path hierarchy creation,
and correct australian english installation logic.

michael@98 1 Index: tv/tvbrowse.cpp
michael@98 2 --- tv/tvbrowse.cpp.orig 2000-09-20 22:34:02 +0200
michael@98 3 +++ tv/tvbrowse.cpp 2006-01-15 00:23:04 +0100
michael@97 4 @@ -28,8 +28,8 @@
michael@97 5 #include <stdlib.h>
michael@97 6 #include <stdio.h>
michael@97 7 #include <string.h>
michael@97 8 -#include <iomanip.h>
michael@97 9 -#include <strstream.h>
michael@97 10 +#include <sstream>
michael@97 11 +#include <iomanip>
michael@97 12
michael@97 13 #define Uses_TEvent
michael@97 14 #include <tvision/tv.h>
michael@98 15 Index: tv/tvxbase.cpp
michael@98 16 --- tv/tvxbase.cpp.orig 2000-09-20 22:34:02 +0200
michael@98 17 +++ tv/tvxbase.cpp 2006-01-15 00:23:04 +0100
michael@97 18 @@ -23,7 +23,7 @@
michael@97 19 Foundation, Inc., or see http://www.gnu.org/.
michael@97 20 */
michael@97 21
michael@97 22 -#include <iostream.h>
michael@97 23 +#include <iostream>
michael@97 24
michael@97 25 #define Uses_TApplication
michael@97 26 #define Uses_TButton
michael@98 27 Index: xbase/dbf.h
michael@98 28 --- xbase/dbf.h.orig 2001-01-13 21:20:53 +0100
michael@98 29 +++ xbase/dbf.h 2006-01-15 00:23:04 +0100
michael@97 30 @@ -65,7 +65,7 @@
michael@97 31 #include <xbase/xtypes.h>
michael@97 32 #include <xbase/xdate.h>
michael@97 33
michael@97 34 -#include <iostream.h>
michael@97 35 +#include <iostream>
michael@97 36 #include <stdio.h>
michael@97 37
michael@97 38 /*! \file dbf.h
michael@98 39 Index: xbase/ndx.cpp
michael@98 40 --- xbase/ndx.cpp.orig 2001-03-21 01:28:53 +0100
michael@98 41 +++ xbase/ndx.cpp 2006-01-15 00:23:04 +0100
michael@97 42 @@ -66,7 +66,8 @@
michael@97 43 #endif
michael@97 44
michael@97 45 #include <xbase/xbase.h>
michael@97 46 -#include <iostream.h>
michael@97 47 +#include <iostream>
michael@97 48 +using std::cout;
michael@97 49
michael@97 50 #ifdef XB_INDEX_NDX
michael@97 51
michael@98 52 Index: xbase/stack.cpp
michael@98 53 --- xbase/stack.cpp.orig 2000-11-10 20:04:17 +0100
michael@98 54 +++ xbase/stack.cpp 2006-01-15 00:23:04 +0100
michael@97 55 @@ -59,7 +59,8 @@
michael@97 56
michael@97 57 #include <string.h>
michael@97 58 #include <stdlib.h>
michael@97 59 -#include <iostream.h>
michael@97 60 +#include <iostream>
michael@97 61 +using std::cout;
michael@97 62
michael@97 63 #include <xbase/xstack.h>
michael@97 64
michael@98 65 Index: xbase/xbstring.cpp
michael@98 66 --- xbase/xbstring.cpp.orig 2001-02-20 18:53:26 +0100
michael@98 67 +++ xbase/xbstring.cpp 2006-01-15 00:23:04 +0100
michael@97 68 @@ -582,7 +582,7 @@
michael@97 69 //! Short description.
michael@97 70 /*!
michael@97 71 */
michael@97 72 -XBDLLEXPORT ostream& operator << ( ostream& os, const xbString& xbs ) {
michael@97 73 +XBDLLEXPORT std::ostream& operator << ( std::ostream& os, const xbString& xbs ) {
michael@97 74 return os << xbs.data;
michael@97 75 }
michael@97 76
michael@98 77 Index: xbase/xbstring.h
michael@98 78 --- xbase/xbstring.h.orig 2001-01-27 06:00:32 +0100
michael@98 79 +++ xbase/xbstring.h 2006-01-15 00:23:04 +0100
michael@97 80 @@ -56,7 +56,11 @@
michael@97 81 #endif
michael@97 82
michael@97 83 #include <stdlib.h>
michael@97 84 -#include <iostream.h>
michael@97 85 +#include <iostream>
michael@97 86 +
michael@97 87 +using std::endl;
michael@97 88 +using std::cin;
michael@97 89 +using std::cout;
michael@97 90
michael@97 91 /*! \file xbstring.h
michael@97 92 */
michael@97 93 @@ -119,7 +123,7 @@
michael@97 94 bool operator <= ( const xbString& ) const;
michael@97 95 bool operator >= ( const xbString& ) const;
michael@97 96
michael@97 97 - friend ostream& operator << ( ostream&, const xbString& );
michael@97 98 + friend std::ostream& operator << ( std::ostream&, const xbString& );
michael@97 99
michael@97 100 xbString &remove(size_t pos = 0, int n = npos);
michael@97 101 xbString mid(size_t pos = 0, int n = npos) const;
michael@98 102 Index: ltmain.sh
michael@98 103 --- ltmain.sh.orig 2000-06-01 08:03:18 +0200
michael@98 104 +++ ltmain.sh 2006-01-15 10:05:44 +0100
michael@97 105 @@ -728,7 +728,7 @@
michael@97 106 ;;
michael@97 107 esac
michael@97 108 deplibs="$deplibs $arg"
michael@97 109 - lib_search_path="$lib_search_path `expr $arg : '-L\(.*\)'`"
michael@97 110 + lib_search_path="$lib_search_path `expr x$arg : 'x-L\(.*\)'`"
michael@97 111 ;;
michael@97 112
michael@97 113 -l*) deplibs="$deplibs $arg" ;;

mercurial