Results 1 to 10 of 11
I'm trying to install Tora under OpenSuSE 10.1. This worked perfect on previous versions (9.3 and 10.0). Tora is an Oracle administration tool, also available for linux. I used the ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 06-06-2006 #1
Toolkit for Oracle on OpenSuSE10.1
I'm trying to install Tora under OpenSuSE 10.1. This worked perfect on previous versions (9.3 and 10.0). Tora is an Oracle administration tool, also available for linux. I used the following options to configure it:
Configuration checks complete successfully. All QT requirements met, also oci8 check passed successfully, and it seems to be ready to compile.Code:./configure --with-qt-dir=/usr/lib/qt3/ --with-qt-libraries=/usr/lib/qt3/lib/ --with-qt-includes=/usr/lib/qt3/include/ --with-oracle=/home/rustam/oracle/product/10.2.0/client_1 --with-kde --with-prefix=/home/rustam/tora
But, compilation fails with the following message:
Any suggestions?Code:tothread.cpp: In member function ‘void toThread::start()’: tothread.cpp:190: error: ‘toThreadStartWrapper’ was not declared in this scope tothread.cpp: In member function ‘void toThread::startAsync()’: tothread.cpp:199: error: ‘toThreadStartWrapper’ was not declared in this scope make[1]: *** [tora-tothread.o] Error 1 make[1]: Leaving directory `/home/rustam/Downloads/tora-1.3.21' make: *** [all] Error 2
Note 1: QT, which installed from SuSE CD was compiled with multithreading support.
Note 2: I tried to configure Tora with "--disable-threading" option also but failed.
- 06-06-2006 #2
I'm don't often post questions on this forum, but when I do, it means that I really need your help, guys. Please, don't let me down
ANY comments on above subject, plz. TIA.
- 06-14-2006 #3Just Joined!
- Join Date
- Jun 2006
- Posts
- 2
Same problem on FC5 and workaround
I got the exact same error compiling on FC5. Google turned up two posts referencing patches to fix it being committed to the tora tree (http://lists.pld-linux.org/mailman/p...22/106775.html) , so I built from source. Basically do:
- svn co https://svn.sourceforge.net/svnroot/tora tora
- cd into the tora directory
- ./autogen.sh
- from here configure/compile as you normally would
I've only started the resulting tora once and successfully connected to an oracle database, beyond that I can only assume it is working normally.
- 06-14-2006 #4Just Joined!
- Join Date
- Jun 2006
- Posts
- 2
s/built from source/built from latest source in svn/
- 06-15-2006 #5
10x, I'll try it and post results.
- 06-20-2006 #6
- 08-28-2006 #7Just Joined!
- Join Date
- Aug 2006
- Posts
- 1
i did step 1...step 2...step 3 and step 4...but i still get the error message when i do a make.
Originally Posted by griznog
im also running fedora core 5
any ideas?
- 08-29-2006 #8
I gave up using TORA due to many difficulties and uncomfortable child windows management. Can't get output window, query window and schema browser get open together. Found another great tool called Aqua Datastudio. Written on java, thus platform independent and yet as quick as native QT application. Try it.
- 10-09-2006 #9Just Joined!
- Join Date
- Jan 2005
- Posts
- 2
Toolkit for Oracle Fedora 5
Using the previous postings I was able to figure out a simple fix for the toThreadStartWrapper declaration error in tothread.cpp. Simply add the function declaration "void *toThreadStartWrapper(void *t);" to file "tothread.cpp" after line #157. The file should look like this after the change.
#define THREAD_ASSERT(x) if((x)!=0) { \
throw (qApp->translate("toThread","Thread function \"%1\" failed.").arg(QString::fromLatin1( #x ))); }
void *toThreadStartWrapper(void *t);
void toThread::initAttr()
Hope this helps someone.
- 12-24-2006 #10Just Joined!
- Join Date
- Dec 2006
- Posts
- 1
hm(
how can i update from svn?


Reply With Quote
