From: Antonio S. <sc...@te...> - 2004-04-07 00:41:55
|
At 19:08 6/4/2004, Hans Ulrich Niedermann wrote: >BTW, how are you compiling libexif with MSVC? On unixoid systems, you >run > ./configure > make > make install > >On Windows, you don't have a shell to execute configure, so how do you >do that? In my case, I have Cygwin installed. I ran "bash" then "./configure" just to get a "config.h" file. Then I cleaned and adjusted the "config.h" to meet my needs. In fact it is really simple: #define GETTEXT_PACKAGE "libexif-9" #ifdef WIN32 #define snprintf _snprintf #endif Then I use it to compile the libexif in Visual C++ with a standard project, and I also use it in many Unices: Linux, IRIX, SunOS and AIX. I tested my application only in Windows up to now. But soon I will test it in UNIX to check the exif tags with libjpeg. With version 0.7 I will try to extract tags together with libTIFF. Best, Antonio Scuri |