From 7649cd2cc9165ad8019d9d33af697927fd2e64b4 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Fri, 10 Jan 2014 07:23:56 -0800 Subject: * configure: Generate HAVE_VALGRIND as #define-d to 1, rathern than just fdefined. * gc.c: Use #if HAVE_VALGRIND instaed of #ifdef HAVE_VALGRIND, consistently with other HAVE_* config variables. * lib.c: Likewise. * lib.h: Likewise. * txr.c: Likewise. * txr.h: Likewise. --- txr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'txr.c') diff --git a/txr.c b/txr.c index 15fc4ab1..6ad49e1d 100644 --- a/txr.c +++ b/txr.c @@ -296,7 +296,7 @@ int txr_main(int argc, char **argv) argv++, argc--; continue; } else if (!strcmp(*argv, "--vg-debug")) { -#ifdef HAVE_VALGRIND +#if HAVE_VALGRIND opt_vg_debug = 1; argv++, argc--; continue; -- cgit v1.2.3