comparison configure.in @ 34:07177825c91b

fix signed/unsigned to allow very small pst files with only leaf nodes
author carl
date Thu, 12 Jul 2007 14:59:13 -0700
parents b88ceb81dba2
children b2f247463b83
comparison
equal deleted inserted replaced
33:12cac756bc05 34:07177825c91b
13 # Give the user the choice to enter one of these: 13 # Give the user the choice to enter one of these:
14 # --enable-pst-debug 14 # --enable-pst-debug
15 # --enable-pst-debug=yes 15 # --enable-pst-debug=yes
16 # --enable-pst-debug=no 16 # --enable-pst-debug=no
17 # 17 #
18 AC_MSG_CHECKING([whether we are enabling pst debug code]) 18 AC_MSG_CHECKING([whether we are forcing debug dump file creation])
19 AC_ARG_ENABLE(pst-debug, 19 AC_ARG_ENABLE(pst-debug,
20 AC_HELP_STRING([--enable-pst-debug], [enable pst debug code]), 20 AC_HELP_STRING([--enable-pst-debug], [force debug dump file creation]),
21 [if test "${enable_pst_debug}" = "no" ; then 21 [if test "${enable_pst_debug}" = "no" ; then
22 AC_MSG_RESULT([no]) 22 AC_MSG_RESULT([no])
23 else 23 else
24 AC_DEFINE(DEBUG_ALL, 1, Define to 1 to enable pst debug code) 24 AC_DEFINE(DEBUG_ALL, 1, Define to 1 to force debug dump file creation)
25 AC_MSG_RESULT([yes]) 25 AC_MSG_RESULT([yes])
26 fi], 26 fi],
27 # Default value for configure 27 # Default value for configure
28 AC_MSG_RESULT([no]) 28 AC_MSG_RESULT([no])
29 ) 29 )