From: Michael W. <mw...@it...> - 2003-07-10 12:22:51
|
On Wed, Jul 09, 2003 at 01:06:05PM -0400, KEVIN ZEMBOWER wrote: > I'm trying to get my first installation of MDB tools working. I'm also not familiar with CVS, so I couldn't get this command to work: > www:~# cvs -d:pserver:ano...@cv...:/cvsroot/mdbtools login [snip] > I tried putting in 'anonymous' and my email address in response to the > password prompt, but neither was accepted. Try just pressing ENTER without typing anything for the password. > Then, I got the 0.5rc2 tarball and did the dance: tar zxvf > mdbtools-0.5rc2.tar.gz; cd mdbtools-0.5rc2/; ./configure --enable-sql; > make; su -; make install. All seemed to go well, except for some > complaints about missing libglade and libgnomeui, which didn't stop > the build. mdbtools seems to be working, except for a Segmentation > fault when the '-H' (omit the header row) is used: [snip] > kevinz@www:~/budgetdb$ mdb-export -H budgettables.mdb BCODE > Segmentation fault > kevinz@www:~/budgetdb$ > > Any ideas on how to troubleshoot this problem? I tried to search the You could try compiling everything with debugging and then run that command under gdb. e.g. $ CFLAGS="-g" ./configure ... $ make $ gdb mdb-export [...] (gdb) run -H budgettables.mdb BCODE Then when it crashes, type: (gdb) backtrace If you post that to the list someone should be able to tell what the problem is. -- Michael Wood <mw...@it...> |