michael@98: Index: tv/tvbrowse.cpp michael@98: --- tv/tvbrowse.cpp.orig 2000-09-20 22:34:02 +0200 michael@98: +++ tv/tvbrowse.cpp 2006-01-15 00:23:04 +0100 michael@97: @@ -28,8 +28,8 @@ michael@97: #include michael@97: #include michael@97: #include michael@97: -#include michael@97: -#include michael@97: +#include michael@97: +#include michael@97: michael@97: #define Uses_TEvent michael@97: #include michael@98: Index: tv/tvxbase.cpp michael@98: --- tv/tvxbase.cpp.orig 2000-09-20 22:34:02 +0200 michael@98: +++ tv/tvxbase.cpp 2006-01-15 00:23:04 +0100 michael@97: @@ -23,7 +23,7 @@ michael@97: Foundation, Inc., or see http://www.gnu.org/. michael@97: */ michael@97: michael@97: -#include michael@97: +#include michael@97: michael@97: #define Uses_TApplication michael@97: #define Uses_TButton michael@98: Index: xbase/dbf.h michael@98: --- xbase/dbf.h.orig 2001-01-13 21:20:53 +0100 michael@98: +++ xbase/dbf.h 2006-01-15 00:23:04 +0100 michael@97: @@ -65,7 +65,7 @@ michael@97: #include michael@97: #include michael@97: michael@97: -#include michael@97: +#include michael@97: #include michael@97: michael@97: /*! \file dbf.h michael@98: Index: xbase/ndx.cpp michael@98: --- xbase/ndx.cpp.orig 2001-03-21 01:28:53 +0100 michael@98: +++ xbase/ndx.cpp 2006-01-15 00:23:04 +0100 michael@97: @@ -66,7 +66,8 @@ michael@97: #endif michael@97: michael@97: #include michael@97: -#include michael@97: +#include michael@97: +using std::cout; michael@97: michael@97: #ifdef XB_INDEX_NDX michael@97: michael@98: Index: xbase/stack.cpp michael@98: --- xbase/stack.cpp.orig 2000-11-10 20:04:17 +0100 michael@98: +++ xbase/stack.cpp 2006-01-15 00:23:04 +0100 michael@97: @@ -59,7 +59,8 @@ michael@97: michael@97: #include michael@97: #include michael@97: -#include michael@97: +#include michael@97: +using std::cout; michael@97: michael@97: #include michael@97: michael@98: Index: xbase/xbstring.cpp michael@98: --- xbase/xbstring.cpp.orig 2001-02-20 18:53:26 +0100 michael@98: +++ xbase/xbstring.cpp 2006-01-15 00:23:04 +0100 michael@97: @@ -582,7 +582,7 @@ michael@97: //! Short description. michael@97: /*! michael@97: */ michael@97: -XBDLLEXPORT ostream& operator << ( ostream& os, const xbString& xbs ) { michael@97: +XBDLLEXPORT std::ostream& operator << ( std::ostream& os, const xbString& xbs ) { michael@97: return os << xbs.data; michael@97: } michael@97: michael@98: Index: xbase/xbstring.h michael@98: --- xbase/xbstring.h.orig 2001-01-27 06:00:32 +0100 michael@98: +++ xbase/xbstring.h 2006-01-15 00:23:04 +0100 michael@97: @@ -56,7 +56,11 @@ michael@97: #endif michael@97: michael@97: #include michael@97: -#include michael@97: +#include michael@97: + michael@97: +using std::endl; michael@97: +using std::cin; michael@97: +using std::cout; michael@97: michael@97: /*! \file xbstring.h michael@97: */ michael@97: @@ -119,7 +123,7 @@ michael@97: bool operator <= ( const xbString& ) const; michael@97: bool operator >= ( const xbString& ) const; michael@97: michael@97: - friend ostream& operator << ( ostream&, const xbString& ); michael@97: + friend std::ostream& operator << ( std::ostream&, const xbString& ); michael@97: michael@97: xbString &remove(size_t pos = 0, int n = npos); michael@97: xbString mid(size_t pos = 0, int n = npos) const; michael@98: Index: ltmain.sh michael@98: --- ltmain.sh.orig 2000-06-01 08:03:18 +0200 michael@98: +++ ltmain.sh 2006-01-15 10:05:44 +0100 michael@97: @@ -728,7 +728,7 @@ michael@97: ;; michael@97: esac michael@97: deplibs="$deplibs $arg" michael@97: - lib_search_path="$lib_search_path `expr $arg : '-L\(.*\)'`" michael@97: + lib_search_path="$lib_search_path `expr x$arg : 'x-L\(.*\)'`" michael@97: ;; michael@97: michael@97: -l*) deplibs="$deplibs $arg" ;;