diff options
author | Gunter Knauf <gk@gknw.de> | 2008-02-18 15:30:11 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2008-02-18 15:30:11 +0000 |
commit | e2b50b203de95bd7db9ab0ab43c3af061685c9c4 (patch) | |
tree | f3ba73613a0a395a381c5b49ccd87acc89e9ffeb | |
parent | ab0de23d83e98c90f686020e09552307bba9fb19 (diff) |
added check symbol for linking with POSIX prelude.
-rw-r--r-- | lib/Makefile.netware | 1 | ||||
-rw-r--r-- | src/Makefile.netware | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware index a4bdab6d3..0dfcc517d 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -331,6 +331,7 @@ endif ifeq ($(findstring posixpre,$(PRELUDE)),posixpre) @echo $(DL)start POSIX_Start$(DL) >> $@ @echo $(DL)exit POSIX_Stop$(DL) >> $@ + @echo $(DL)check POSIX_CheckUnload$(DL) >> $@ else @echo $(DL)start _LibCPrelude$(DL) >> $@ @echo $(DL)exit _LibCPostlude$(DL) >> $@ diff --git a/src/Makefile.netware b/src/Makefile.netware index f2be75d41..dfb26804d 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -319,6 +319,7 @@ endif ifeq ($(findstring posixpre,$(PRELUDE)),posixpre) @echo $(DL)start POSIX_Start$(DL) >> $@ @echo $(DL)exit POSIX_Stop$(DL) >> $@ + @echo $(DL)check POSIX_CheckUnload$(DL) >> $@ else @echo $(DL)start _LibCPrelude$(DL) >> $@ @echo $(DL)exit _LibCPostlude$(DL) >> $@ |