mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-03 10:00:51 +00:00
Install fixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6830 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b53e8a667e
commit
f04a31ac1b
5 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2000-06-27 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
|
* 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 <rfm@gnu.org>
|
2000-06-27 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/NSPort.m: Add default support for coding using the
|
* Source/NSPort.m: Add default support for coding using the
|
||||||
|
|
|
@ -147,7 +147,6 @@ Ordering.h \
|
||||||
Port.h \
|
Port.h \
|
||||||
RawCStream.h \
|
RawCStream.h \
|
||||||
Retaining.h \
|
Retaining.h \
|
||||||
RunLoop.h \
|
|
||||||
StdioStream.h \
|
StdioStream.h \
|
||||||
Stream.h \
|
Stream.h \
|
||||||
Streaming.h \
|
Streaming.h \
|
||||||
|
|
|
@ -62,7 +62,7 @@ $(SOURCES) $(HEADERS)
|
||||||
|
|
||||||
include Makefile.preamble
|
include Makefile.preamble
|
||||||
|
|
||||||
- include GNUmakefile.local
|
-include GNUmakefile.local
|
||||||
|
|
||||||
include $(GNUSTEP_MAKEFILES)/objc.make
|
include $(GNUSTEP_MAKEFILES)/objc.make
|
||||||
include $(GNUSTEP_MAKEFILES)/tool.make
|
include $(GNUSTEP_MAKEFILES)/tool.make
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
# after-all::
|
# after-all::
|
||||||
|
|
||||||
# Things to do before installing
|
# Things to do before installing
|
||||||
before-install:: documentation
|
before-install::
|
||||||
|
|
||||||
# Things to do after installing
|
# Things to do after installing
|
||||||
after-install::
|
after-install::
|
||||||
|
|
|
@ -2204,9 +2204,11 @@ main(int argc, char **argv)
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
int
|
||||||
main()
|
main()
|
||||||
{
|
{
|
||||||
NSLog(@"No libxml available");
|
NSLog(@"No libxml available");
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue