[OTR-dev] otr projects visual studio workspaces
s0rr0w
mr.s0rr0w at gmail.com
Thu Oct 20 19:11:35 EDT 2005
hi all,
since I want to work on otrproxy and actually I can do this mainly
on win32 platforms, I made dsw/dsp workspaces of libotr and
otrproxy for visual studio 6 (vs.net are easily derived).
I created the project using sourcesafe
http://sourceforge.net/projects/gpgvs/
actually you can build, without changing original code:
libgpg-error-1.1
libgcrypt-1.2.2
(but you can use also libgcrypt binaries you have)
libotr-2.0.2
otrproxy-0.3.0
libotr-head (at 21-10-2005)
I have not yet made test on otrproxy, I will do.
If useful, feel free to use and ask.
Thank you for otr effort, keep on :)
Francesco "s0rr0w" Picasso
------------------------------------------------------------------
Note: the only change I had to make to original source code was in
libotr\context.h
typedef struct fingerprint {
struct fingerprint *next;
struct fingerprint **tous;
unsigned char *fingerprint;
struct context *context;
char *trust;
} Fingerprint;
this structure cannot compile (with vs) in a C++ file even if using
extern "C". So I did this little "alteration"
typedef struct _fingerprint_ {
struct _fingerprint_ *next;
struct _fingerprint_ **tous;
unsigned char *fingerprint;
struct context *context;
char *trust;
} Fingerprint;
that's all.
More information about the OTR-dev
mailing list