diff --git a/ChangeLog b/ChangeLog index 8347dd0c0..c0f853d91 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2000-06-27 Adam Fedor + + * Tools/gsdoc.m: Make sure exit status is 0 when no libxml + + * Makefile.postamble: Don't make documentation on install. Can't + guarentee that library path is setup correctly yet. + 2000-06-27 Richard Frith-Macdonald * Source/NSPort.m: Add default support for coding using the diff --git a/Source/GNUmakefile b/Source/GNUmakefile index b123f91b1..68ccacf9f 100644 --- a/Source/GNUmakefile +++ b/Source/GNUmakefile @@ -147,7 +147,6 @@ Ordering.h \ Port.h \ RawCStream.h \ Retaining.h \ -RunLoop.h \ StdioStream.h \ Stream.h \ Streaming.h \ diff --git a/Tools/GNUmakefile b/Tools/GNUmakefile index 66933f79b..6e8e5678c 100644 --- a/Tools/GNUmakefile +++ b/Tools/GNUmakefile @@ -62,7 +62,7 @@ $(SOURCES) $(HEADERS) include Makefile.preamble -- include GNUmakefile.local +-include GNUmakefile.local include $(GNUSTEP_MAKEFILES)/objc.make include $(GNUSTEP_MAKEFILES)/tool.make diff --git a/Tools/Makefile.postamble b/Tools/Makefile.postamble index 733f154fe..f91fb4763 100644 --- a/Tools/Makefile.postamble +++ b/Tools/Makefile.postamble @@ -15,7 +15,7 @@ # after-all:: # Things to do before installing -before-install:: documentation +before-install:: # Things to do after installing after-install:: diff --git a/Tools/gsdoc.m b/Tools/gsdoc.m index 197d1c460..394d9a83d 100644 --- a/Tools/gsdoc.m +++ b/Tools/gsdoc.m @@ -2204,9 +2204,11 @@ main(int argc, char **argv) } #else +int main() { NSLog(@"No libxml available"); + return 0; } #endif