Mercurial > libpst
comparison configure.in @ 67:90aa7814ad1f stable-0-6-8
Initial version of pst2dii to convert to Summation dii load file format.
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 05 Mar 2008 18:58:40 -0800 |
parents | cfd6175f9334 |
children | b12f4e50e2e8 |
comparison
equal
deleted
inserted
replaced
66:32f771bc9c1c | 67:90aa7814ad1f |
---|---|
6 AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION) | 6 AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION) |
7 | 7 |
8 # Checks for programs. | 8 # Checks for programs. |
9 my_build_dii=yes | 9 my_build_dii=yes |
10 AC_PATH_PROG(CONVERT, convert) | 10 AC_PATH_PROG(CONVERT, convert) |
11 if test "x$CONVERT" = x ; then | 11 if test "x$CONVERT" = "x" ; then |
12 AC_MSG_WARN([convert not found. pst2dii disabled]) | 12 AC_MSG_WARN([convert not found. pst2dii disabled]) |
13 my_build_dii=no | 13 my_build_dii=no |
14 fi | 14 fi |
15 AM_CONDITIONAL(BUILD_DII, test $my_build_dii = yes) | 15 AM_CONDITIONAL(BUILD_DII, test $my_build_dii = yes) |
16 | 16 |
31 AM_CONDITIONAL(NEED_XGETOPT, [test yes = yes]) | 31 AM_CONDITIONAL(NEED_XGETOPT, [test yes = yes]) |
32 ) | 32 ) |
33 AC_HEADER_DIRENT | 33 AC_HEADER_DIRENT |
34 AC_HEADER_STDC | 34 AC_HEADER_STDC |
35 AC_CHECK_HEADERS([fcntl.h limits.h malloc.h netinet/in.h stdint.h stdlib.h string.h sys/param.h wchar.h]) | 35 AC_CHECK_HEADERS([fcntl.h limits.h malloc.h netinet/in.h stdint.h stdlib.h string.h sys/param.h wchar.h]) |
36 if test "$my_build_dii" = "yes"; then | |
37 AC_CHECK_HEADERS([gd.h]) | |
38 fi | |
36 | 39 |
37 # Checks for typedefs, structures, and compiler characteristics. | 40 # Checks for typedefs, structures, and compiler characteristics. |
38 AC_HEADER_STDBOOL | 41 AC_HEADER_STDBOOL |
39 AC_C_CONST | 42 AC_C_CONST |
40 AC_TYPE_OFF_T | 43 AC_TYPE_OFF_T |