Changeset 131
- Timestamp:
- 26/10/08 16:40:39 (3 months ago)
- Location:
- jggtrans
- Files:
-
- 1 removed
- 2 modified
-
configure.ac (modified) (2 diffs)
-
libgadu/config.h.in (deleted)
-
src/ggtrans.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jggtrans/configure.ac
r105 r131 28 28 AC_ARG_WITH([efence],AC_HELP_STRING([--with-efence],[Link against ElectricFence library])) 29 29 30 AC_ARG_WITH([dmalloc],AC_HELP_STRING([--with-dmalloc],[Link against dmalloc library])) 31 30 32 if test "x$enable_debug" != "xno" ; then 31 33 AC_DEFINE(DEBUG,1,[Define to enable debugging code]) … … 34 36 if test "x$with_efence" = "xyes" ; then 35 37 AC_CHECK_LIB([efence], [malloc]) 38 fi 39 40 if test "x$with_dmalloc" = "xyes" ; then 41 AC_CHECK_LIB([dmalloc], [malloc]) 42 AC_DEFINE(DMALLOC,1,[Define to enable dmalloc]) 43 AC_DEFINE(DMALLOC_FUNC_CHECK,1,[Define to enable dmalloc function arguments check]) 36 44 fi 37 45 -
jggtrans/src/ggtrans.h
r34 r131 33 33 #endif 34 34 35 #ifdef DMALLOC 36 #include "dmalloc.h" 37 #endif 38 35 39 #ifdef ENABLE_NLS 36 40 /* gettext shortcut for translating messages */
