1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 21:10:27 +02:00

* Makefile.am (DEFS): Added. automake adds -I options to DEFS,

and we don't want that.
(INCLUDES): Removed all -I options except for the root source
directory and the root build directory.

* *.*: Change includes so that they always use the "prefixes"
libguile/, qt/, guile-readline/, or libltdl/.
(Thanks to Tim Mooney.)
This commit is contained in:
Mikael Djurfeldt 2000-04-21 14:16:44 +00:00
parent e415cb0666
commit a059974535
100 changed files with 823 additions and 785 deletions

View file

@ -49,21 +49,21 @@
* libguile. See the comments in objects.h.
*/
#include "_scm.h"
#include "libguile/_scm.h"
#include "struct.h"
#include "procprop.h"
#include "chars.h"
#include "keywords.h"
#include "smob.h"
#include "eval.h"
#include "alist.h"
#include "ports.h"
#include "strings.h"
#include "vectors.h"
#include "libguile/struct.h"
#include "libguile/procprop.h"
#include "libguile/chars.h"
#include "libguile/keywords.h"
#include "libguile/smob.h"
#include "libguile/eval.h"
#include "libguile/alist.h"
#include "libguile/ports.h"
#include "libguile/strings.h"
#include "libguile/vectors.h"
#include "validate.h"
#include "objects.h"
#include "libguile/validate.h"
#include "libguile/objects.h"
SCM scm_metaclass_standard;
@ -490,7 +490,7 @@ scm_init_objects ()
SCM_SET_CLASS_DESTRUCTOR (et, scm_struct_free_entity);
scm_sysintern ("<entity>", et);
#include "objects.x"
#include "libguile/objects.x"
}
/*