Hi guys,
I updated all files with the latest CVS versions to get back to
learning what you have been up to. (I have not yet digested the
emails. I figured looking at the latest code might be a good way
to start learning the changes.) I ran into a minor snag. I noticed
that semantic-al.el is a file that is required, but it is not in CVS.
So I tried "make" in an attempt to create semantic-al.el.
This failed while byte compiling wisent-java.el, because
semantic-java.el could not be located. The following patch is to fix
this problem by adding "./bovine" to the load-path.
Index: Makefile
===================================================================
RCS file: /cvsroot/cedet/cedet/semantic/Makefile,v
retrieving revision 1.4
diff -c -r1.4 Makefile
*** Makefile 11 Aug 2002 18:38:07 -0000 1.4
--- Makefile 17 Aug 2002 06:06:51 -0000
***************
*** 13,19 ****
example_MISC=semantic-example.el
init_LISP=semantic-load.el semantic-autogen.el
EMACS=emacs
! LOADPATH=../speedbar/ ../eieio/
semantic_LISP=semantic.el semantic-util.el semantic-ctxt.el semantic-lex.el semantic-edit.el semantic-fw.el
Languages_LISP=semantic-texi.el
tools_LISP=semantic-imenu.el semantic-sb.el working.el semanticdb.el document.el document-vars.el sformat.el semantic-chart.el semantic-util-modes.el semantic-analyze.el semantic-ia.el semantic-cb.el semantic-ia-sb.el semanticdb-file.el semanticdb-search.el semanticdb-mk.el
--- 13,19 ----
example_MISC=semantic-example.el
init_LISP=semantic-load.el semantic-autogen.el
EMACS=emacs
! LOADPATH=../speedbar/ ../eieio/ ./bovine/
semantic_LISP=semantic.el semantic-util.el semantic-ctxt.el semantic-lex.el semantic-edit.el semantic-fw.el
Languages_LISP=semantic-texi.el
tools_LISP=semantic-imenu.el semantic-sb.el working.el semanticdb.el document.el document-vars.el sformat.el semantic-chart.el semantic-util-modes.el semantic-analyze.el semantic-ia.el semantic-cb.el semantic-ia-sb.el semanticdb-file.el semanticdb-search.el semanticdb-mk.el
Index: wisent/Makefile
===================================================================
RCS file: /cvsroot/cedet/cedet/semantic/wisent/Makefile,v
retrieving revision 1.1
diff -u -r1.1 Makefile
--- wisent/Makefile 11 Aug 2002 18:26:32 -0000 1.1
+++ wisent/Makefile 17 Aug 2002 06:07:33 -0000
@@ -14,7 +14,7 @@
wy_MISC=wisent-awk.wy wisent-calc.wy wisent-cim.wy wisent-java-tags.wy wisent-java.wy wisent-python.wy wisent-wy.wy
languages_LISP=wisent-awk.el wisent-calc.el wisent-cim.el wisent-java.el wisent-java-tags.el wisent-python.el wisent-java-lex.el
EMACS=emacs
-LOADPATH=../
+LOADPATH=../ ../bovine/
wisent_LISP=wisent.el wisent-wy.el wisent-bovine.el wisent-comp.el wisent-expr.el
VERSION=2.0beta3
DISTDIR=$(top)semantic-$(VERSION)/wisent
|