Search found 6 matches

by ragbagken
Tue, 2008-07-22, 00:43
Forum: DCMTK - Installation
Topic: configure: error: cannot compute sizeof (char)
Replies: 5
Views: 12146

OK. Thank you, Marco. I'll look into it.
by ragbagken
Fri, 2008-07-18, 01:26
Forum: DCMTK - Installation
Topic: configure: error: cannot compute sizeof (char)
Replies: 5
Views: 12146

Here is the rest of config.log configure:9600: checking ieeefp.h presence configure:9607: c++ -E conftest.cc configure:9613: $? = 0 configure:9631: result: yes configure:9649: checking for ieeefp.h configure:9656: result: yes configure:9683: checking io.h usability configure:9692: c++ -c -Wall -peda...
by ragbagken
Fri, 2008-07-18, 01:15
Forum: DCMTK - Installation
Topic: configure: error: cannot compute sizeof (char)
Replies: 5
Views: 12146

Hi Marco, Thank you for your reply. Googling around it seems that the problem is with Unicode, which would make sense as the size of a char may be 16 bits on a multi-byte system. I have installed "libiconv" from Sunfreeware.com and added "/usr/local/lib" and "/opt/sfw/lib&qu...
by ragbagken
Thu, 2008-07-17, 05:45
Forum: DCMTK - Installation
Topic: configure: error: cannot compute sizeof (char)
Replies: 5
Views: 12146

configure: error: cannot compute sizeof (char)

I am trying to compile DCMTK on sparc sun solaris2.8 gcc 2.95.3. When I run "./Configure", it encounters an error: checking size of char... configure: error: cannot compute sizeof (char), 77 It seems to bomb out of module config, and continues OK, but when I try "make all", it sa...
by ragbagken
Mon, 2007-07-30, 02:01
Forum: DCMTK - General
Topic: Extracting messages from ofConsole
Replies: 5
Views: 6983

Redirecting COUT

Thank you for your help. I ended up doing something like this: // Join cout and cerr. ofConsole.join(); COUT << "CEcho\n"; // Do the CEcho, CFind or CMove... // Dump the COUT string to a file. fstream logstream; logstream.open("dicom.log", ios_base::out|ios_base::app); logstream ...
by ragbagken
Fri, 2007-07-13, 06:49
Forum: DCMTK - General
Topic: Extracting messages from ofConsole
Replies: 5
Views: 6983

Extracting messages from ofConsole

I am developing a windows GUI application with DCMTK. I have compiled everything with DCMTK_GUI, put I don't understand how to extract the messages from ofConsole. I want to write them to a log file. For example, I want to write the output from DimseCondition::dump(cond). Thank you for any help! (I ...