summaryrefslogtreecommitdiffstats
path: root/txr.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-01-10 07:23:56 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-01-10 07:23:56 -0800
commit7649cd2cc9165ad8019d9d33af697927fd2e64b4 (patch)
treec8fc015fea133e53a8ba96557b50887211cc6bd3 /txr.c
parent8817d95ca84e7ce4478a29a82b65632979125980 (diff)
downloadtxr-7649cd2cc9165ad8019d9d33af697927fd2e64b4.tar.gz
txr-7649cd2cc9165ad8019d9d33af697927fd2e64b4.tar.bz2
txr-7649cd2cc9165ad8019d9d33af697927fd2e64b4.zip
* 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.
Diffstat (limited to 'txr.c')
-rw-r--r--txr.c2
1 files changed, 1 insertions, 1 deletions
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;