From 49cc211819851b76c58fb37eeb579bd88a5ac65a Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Mon, 16 Jan 2012 03:32:49 +0000 Subject: Create a new internal interface for defining new make functions. This allows us to create new functions without changing function.c. You still have to modify the GNU make code (for now) though: this is simply a preliminary step to possibly allowing make to load modules. Modify the Guile integration to use this method rather than ifdefs in function.c. --- make.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'make.h') diff --git a/make.h b/make.h index 1a89b9c..8caf14a 100644 --- a/make.h +++ b/make.h @@ -466,8 +466,7 @@ const char *strcache_add_len (const char *str, unsigned int len); int strcache_setbufsize (unsigned int size); /* Guile support */ -char *guile_eval_string (char *str); -void setup_guile (void); +int setup_guile (void); #ifdef HAVE_VFORK_H -- cgit v1.2.3