--- V75_00_24/MaxDB_ORG/sys/src/SAPDB/RunTime/RTE_SystemLinux.h.orig 2004-10-15 22:18:18.370019656 +0200 +++ V75_00_24/MaxDB_ORG/sys/src/SAPDB/RunTime/RTE_SystemLinux.h 2004-10-15 22:18:50.171185144 +0200 @@ -32,10 +32,6 @@ #ifndef RTE_SYSTEMLINUX_H #define RTE_SYSTEMLINUX_H -#if defined(__cplusplus) -extern "C" -#endif - /*! Own coroutine context used only if a assembly coroutine switch code exists */ @@ -45,6 +41,10 @@ struct RTE_OwnCoroutineContext void (*addr)() ; /*!< Initial entry address */ }; +#if defined(__cplusplus) +extern "C" +#endif + /*! @brief Implementation of own context setup interface --- V75_00_24/MaxDB_ORG/sys/src/SAPDB/Interfaces/SQLDBC/genSQLDBCdoc.pl.ori 2005-04-13 11:10:24.000000000 +0200 +++ V75_00_24/MaxDB_ORG/sys/src/SAPDB/Interfaces/SQLDBC/genSQLDBCdoc.pl 2005-04-13 14:16:05.000000000 +0200 @@ -39,8 +39,8 @@ use Getopt::Long; use Getopt::Std; use File::Copy; -my @doxygendirs = ("$ENV{OWN}/tool/bin/", "$ENV{TOOL}/pgm/", ""); - +#my @doxygendirs = ("$ENV{OWN}/tool/bin/", "$ENV{TOOL}/pgm/", ""); +my @doxygendirs = ("/usr/bin/", "$ENV{OWN}/tool/bin/", "$ENV{TOOL}/pgm/", ""); my $dotexe=".exe" if($^O=~/.*win32.*/i); my $doxygen; my $doxyver="1.3-rc2"; @@ -62,13 +62,14 @@ if (-d "$opt_dir") { my $found=0; my $versionok=0; foreach my $dir (@doxygendirs) { - $doxygen="${dir}doxygen$dotexe"; +# $doxygen="${dir}doxygen$dotexe"; + $doxygen="${dir}doxygen"; if (-x "$doxygen") { $found=1; - if (checkDoxygenVersion($doxygen, $doxyver)) { +# if (checkDoxygenVersion($doxygen, $doxyver)) { $versionok=1; last; - } +# } } } if (!$found) { @@ -95,41 +96,41 @@ if(system($cmd)) { exit 1; } -my $infile = "$opt_dir/tree.js"; -my $outfile = "$opt_dir/tree.js.tmp"; -open(FILE_IN, "<$infile") || die "Can't open '$infile' (input): $!"; -open(FILE_OUT, ">$outfile") || die "Can't open '$outfile' (output): $!"; -my $firstline=1; -while() { -# -# Skip if already modified -# - if ($_=~/\/\/ tree.js modified by genSQLDBCdoc/) { - exit 0; - } - if ($firstline) { - print FILE_OUT "// tree.js modified by genSQLDBCdoc\n"; - $firstline=0; - } -# -# Insert link for Native C Reference -# - if ($_=~/\s+insDoc\(.*\"SQLDBC_C.h\".*\"(SQLDBC__C.*)\".*/){ - $sqldbc_c_ref = $1; - } - if ($_=~/\s+insDoc\(.*\"Compound Members\".*/){ - print FILE_OUT "insDoc(foldersTree, gLnk(\"Native C Reference\", \"\", \"$sqldbc_c_ref\"))\n"; - } -# -# Insert Installation chapter -# - if ($_=~/\s+insDoc\(.*\"SQL Database Connectivity.*\".*/){ - print FILE_OUT $_; - print FILE_OUT "insDoc(foldersTree, gLnk(\"Installation\", \"\", \"install.html\"))\n"; - next; - } - print FILE_OUT $_; -} +#my $infile = "$opt_dir/tree.js"; +#my $outfile = "$opt_dir/tree.js.tmp"; +#open(FILE_IN, "<$infile") || die "Can't open '$infile' (input): $!"; +#open(FILE_OUT, ">$outfile") || die "Can't open '$outfile' (output): $!"; +#my $firstline=1; +#while() { +## +## Skip if already modified +## +# if ($_=~/\/\/ tree.js modified by genSQLDBCdoc/) { +# exit 0; +# } +# if ($firstline) { +# print FILE_OUT "// tree.js modified by genSQLDBCdoc\n"; +# $firstline=0; +# } +## +## Insert link for Native C Reference +## +# if ($_=~/\s+insDoc\(.*\"SQLDBC_C.h\".*\"(SQLDBC__C.*)\".*/){ +# $sqldbc_c_ref = $1; +# } +# if ($_=~/\s+insDoc\(.*\"Compound Members\".*/){ +# print FILE_OUT "insDoc(foldersTree, gLnk(\"Native C Reference\", \"\", \"$sqldbc_c_ref\"))\n"; +# } +## +## Insert Installation chapter +## +# if ($_=~/\s+insDoc\(.*\"SQL Database Connectivity.*\".*/){ +# print FILE_OUT $_; +# print FILE_OUT "insDoc(foldersTree, gLnk(\"Installation\", \"\", \"install.html\"))\n"; +# next; +# } +# print FILE_OUT $_; +#} chdir("$ENV{OWN}/usr");