Mercurial > libpst
comparison configure.in @ 122:bdb38b434c0a
more changes from Fridrich Strba to avoid installing our config.h
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 02 Feb 2009 21:55:48 -0800 |
parents | 8399ef94c11b |
children | ab2a11e72250 |
comparison
equal
deleted
inserted
replaced
121:8399ef94c11b | 122:bdb38b434c0a |
---|---|
11 AC_MSG_CHECKING([for Win32]) | 11 AC_MSG_CHECKING([for Win32]) |
12 case "$host" in | 12 case "$host" in |
13 *-mingw*) | 13 *-mingw*) |
14 os_win32=yes | 14 os_win32=yes |
15 ;; | 15 ;; |
16 *cygwin*) | |
17 os_win32=yes | |
18 enable_dii=no # cygwin would find windir/system32/convert, not image magick convert | |
19 ;; | |
20 *) | 16 *) |
21 os_win32=no | 17 os_win32=no |
22 ;; | 18 ;; |
23 esac | 19 esac |
24 AC_MSG_RESULT($os_win32) | 20 AC_MSG_RESULT($os_win32) |
25 AM_CONDITIONAL(OS_WIN32, [test "$os_win32" = "yes"]) | 21 AM_CONDITIONAL(OS_WIN32, [test "$os_win32" = "yes"]) |
22 | |
23 # Check for Win32 platform | |
24 AC_MSG_CHECKING([for Win32 platform in general]) | |
25 case "$host" in | |
26 *-cygwin*) | |
27 platform_win32=yes | |
28 ;; | |
29 *) | |
30 platform_win32=$os_win32 | |
31 ;; | |
32 esac | |
33 AC_MSG_RESULT($platform_win32) | |
34 AM_CONDITIONAL(PLATFORM_WIN32, [test "$platform_win32" = "yes"]) | |
26 | 35 |
27 | 36 |
28 # Checks for programs. | 37 # Checks for programs. |
29 # The following lines adds the --enable-dii option to configure: | 38 # The following lines adds the --enable-dii option to configure: |
30 # | 39 # |
239 debian/changelog \ | 248 debian/changelog \ |
240 html/Makefile \ | 249 html/Makefile \ |
241 info/Makefile \ | 250 info/Makefile \ |
242 libpst.pc \ | 251 libpst.pc \ |
243 libpst.spec \ | 252 libpst.spec \ |
244 libpst/Makefile \ | |
245 man/Makefile \ | 253 man/Makefile \ |
246 src/Makefile \ | 254 src/Makefile \ |
247 src/pst2dii.cpp \ | 255 src/pst2dii.cpp \ |
248 xml/Makefile \ | 256 xml/Makefile \ |
249 xml/libpst \ | 257 xml/libpst \ |