1b8bc0d8aSopenharmony_ciIf this is a combined source/binary distribution tree, then you can find
2b8bc0d8aSopenharmony_ci
3b8bc0d8aSopenharmony_ci   * the binary DLL     in the subdirectory  binary-dist/bin/
4b8bc0d8aSopenharmony_ci   * the include files  in the subdirectory  binary-dist/include/
5b8bc0d8aSopenharmony_ci
6b8bc0d8aSopenharmony_ciAs for building libexif yourself on or for Win32, you can
7b8bc0d8aSopenharmony_ci
8b8bc0d8aSopenharmony_ci   a) hack yourself a build system somehow
9b8bc0d8aSopenharmony_ci      This seems to be the Windows way of doing things.
10b8bc0d8aSopenharmony_ci   b) Use MinGW32
11b8bc0d8aSopenharmony_ci
12b8bc0d8aSopenharmony_ciIf you use MinGW32 (including MSYS) on Windows, building libexif should
13b8bc0d8aSopenharmony_cifollow the usual pattern of
14b8bc0d8aSopenharmony_ci
15b8bc0d8aSopenharmony_ci   ./configure
16b8bc0d8aSopenharmony_ci   make
17b8bc0d8aSopenharmony_ci   make install
18b8bc0d8aSopenharmony_ci
19b8bc0d8aSopenharmony_cias for any Unix like system and you can just follow the general
20b8bc0d8aSopenharmony_ciinstructions.
21b8bc0d8aSopenharmony_ci
22b8bc0d8aSopenharmony_ciSomething neat to do is to use a MinGW32 cross compiler on a Unix
23b8bc0d8aSopenharmony_cisystem (Debian ships one for example). Then you can run
24b8bc0d8aSopenharmony_ci
25b8bc0d8aSopenharmony_ci    ./configure --host=i586-mingw32msvc --disable-nls
26b8bc0d8aSopenharmony_ci    make
27b8bc0d8aSopenharmony_ci    make install
28b8bc0d8aSopenharmony_ci
29b8bc0d8aSopenharmony_ciIf you want to build a combined source/binary distribution tarball/zipfile,
30b8bc0d8aSopenharmony_cithen add the --enable-ship-binaries option to the ./configure command line.
31