From b08dfb8273f1700814a0f57625dc370a5e7afaa1 Mon Sep 17 00:00:00 2001 From: grischka Date: Sat, 18 Jul 2009 22:08:01 +0200 Subject: [PATCH] tcc: optionally build using libtcc --- tcc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tcc.c b/tcc.c index cadb5e91..501dc01b 100644 --- a/tcc.c +++ b/tcc.c @@ -18,7 +18,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifdef TCC_USE_LIBTCC +#include "tcc.h" +#else #include "libtcc.c" +#endif void help(void) { -- 2.11.4.GIT