Re: [Faxpp-user] How to build faxpp?
Status: Beta
Brought to you by:
jpcs
|
From: John S. <joh...@or...> - 2008-03-27 14:51:07
|
Hi Xie, It looks like Windows doesn't provide the stdint.h header. Can you replace the include in include/faxpp/transcode.h with this: #ifdef _MSC_VER typedef unsigned __int8 uint8_t typedef unsigned __int16 uint16_t typedef unsigned __int32 uint32_t #else #include <stdint.h> #endif which should make faxpp compile properly. John Xie, Tao wrote: > Great thanks! > > I build it successfully under linux. But under windows with visual studio, it reports error of "cannot find the file stdint.h". > > Best regards, > > Xie, Tao > > (+8621)61166097 > > > -----Original Message----- > From: John Snelson [mailto:joh...@or...] > Sent: 2008年3月26日 22:39 > To: Xie, Tao > Cc: fax...@li... > Subject: Re: [Faxpp-user] How to build faxpp? > > Hi Xie, > > If your using a flavour of unix, cygwin or mingw you can simply run the > "configure" script, then run "make" to build the project. > > Unfortunately I haven't got around to getting Windows project files yet, > but you should be able to just add eveything in the src/ and include/ > directory to a project and build it without any problems. > > John > > Xie, Tao wrote: >> Hi all, >> >> I download faxpp-0.3, but I do not know how to build it. >> >> Any hints? >> >> >> >> Best regards, >> >> Xie, Tao >> >> (+8621)61166097 -- John Snelson, Oracle Corporation http://snelson.org.uk/john Berkeley DB XML: http://www.oracle.com/database/berkeley-db/xml XQilla: http://xqilla.sourceforge.net |