diff options
author | Jim Blandy <jimb@red-bean.com> | 1996-09-04 06:16:00 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1996-09-04 06:16:00 +0000 |
commit | 78bbef0de7e31efda67b167d1c5d1b7961785a37 (patch) | |
tree | 72964b5e87b1adc8addb27276398154c3bf4213b | |
parent | e2cac61bd50915890c9737239bf7d6f12119533a (diff) | |
download | guile-78bbef0de7e31efda67b167d1c5d1b7961785a37.tar.gz |
Put the library path in a header file, instead of passing it on
the command line in every compilation.
* Makefile.in (libpath.h): New target.
(feature.o): Depend on libpath.h.
(clean): Delete libpath.h.
(ALL_CFLAGS): Don't use -DLIBRARY_PATH here. Instead ...
* feature.c: ... #include "libpath.h" here.
* .cvsignore: Ignore libpath.h.
-rw-r--r-- | libguile/feature.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/feature.c b/libguile/feature.c index 2a0916cd7..186108871 100644 --- a/libguile/feature.c +++ b/libguile/feature.c @@ -42,6 +42,7 @@ #include <stdio.h> #include "_scm.h" +#include "libpath.h" #ifdef HAVE_STRING_H #include <string.h> |