Backing out buildsystem aspects of the Java interface backend to xpidl until we can land them safely xp. The xpidl_java.c backend remains.

This commit is contained in:
mccabe%netscape.com 1999-06-23 00:06:29 +00:00
parent 254f533268
commit ddc3eece85
3 changed files with 0 additions and 3 deletions

View File

@ -29,7 +29,6 @@ CSRCS = \
xpidl_header.c \ xpidl_header.c \
xpidl_typelib.c \ xpidl_typelib.c \
xpidl_doc.c \ xpidl_doc.c \
xpidl_java.c \
$(NULL) $(NULL)
# Compile directly against the static lib, so we can use xpidl during the build # Compile directly against the static lib, so we can use xpidl during the build

View File

@ -26,7 +26,6 @@ static ModeData modes[] = {
{"header", "Generate C++ header", "h", xpidl_header_dispatch}, {"header", "Generate C++ header", "h", xpidl_header_dispatch},
{"typelib", "Generate XPConnect typelib", "xpt", xpidl_typelib_dispatch}, {"typelib", "Generate XPConnect typelib", "xpt", xpidl_typelib_dispatch},
{"doc", "Generate HTML documentation", "html", xpidl_doc_dispatch}, {"doc", "Generate HTML documentation", "html", xpidl_doc_dispatch},
{"java", "Generate Java interface", "java", xpidl_java_dispatch},
{0} {0}
}; };

View File

@ -57,7 +57,6 @@ typedef nodeHandler *(*nodeHandlerFactory)();
extern nodeHandler *xpidl_header_dispatch(void); extern nodeHandler *xpidl_header_dispatch(void);
extern nodeHandler *xpidl_typelib_dispatch(void); extern nodeHandler *xpidl_typelib_dispatch(void);
extern nodeHandler *xpidl_doc_dispatch(void); extern nodeHandler *xpidl_doc_dispatch(void);
extern nodeHandler *xpidl_java_dispatch(void);
/* /*
* nodeHandler that reports an error. * nodeHandler that reports an error.