From: Gunter Knauf Date: Mon, 4 Feb 2008 22:40:59 +0000 (+0000) Subject: fixed entry symbols when linked with posix prelude. X-Git-Tag: curl-7_18_1~168 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7bd098f670b7d78bed5266e0577171625fc9accf;p=thirdparty%2Fcurl.git fixed entry symbols when linked with posix prelude. --- diff --git a/lib/Makefile.netware b/lib/Makefile.netware index 6dad99999f..981b92d877 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -328,9 +328,14 @@ ifeq ($(POSIXFL),1) @echo $(DL)flag_on 4194304$(DL) >> $@ endif @echo $(DL)pseudopreemption$(DL) >> $@ +ifeq ($(findstring posixpre,$(PRELUDE)),posixpre) + @echo $(DL)start POSIX_Start$(DL) >> $@ + @echo $(DL)exit POSIX_Stop$(DL) >> $@ +else @echo $(DL)start _LibCPrelude$(DL) >> $@ @echo $(DL)exit _LibCPostlude$(DL) >> $@ @echo $(DL)check _LibCCheckUnload$(DL) >> $@ +endif @echo $(DL)import @$(SDK_LIBC)/imports/libc.imp$(DL) >> $@ @echo $(DL)import @$(SDK_LIBC)/imports/netware.imp$(DL) >> $@ ifndef DISABLE_LDAP diff --git a/src/Makefile.netware b/src/Makefile.netware index 661c7d1a4c..7818391bb2 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -316,9 +316,14 @@ ifeq ($(POSIXFL),1) endif @echo $(DL)flag_on 64$(DL) >> $@ @echo $(DL)pseudopreemption$(DL) >> $@ +ifeq ($(findstring posixpre,$(PRELUDE)),posixpre) + @echo $(DL)start POSIX_Start$(DL) >> $@ + @echo $(DL)exit POSIX_Stop$(DL) >> $@ +else @echo $(DL)start _LibCPrelude$(DL) >> $@ @echo $(DL)exit _LibCPostlude$(DL) >> $@ @echo $(DL)check _LibCCheckUnload$(DL) >> $@ +endif @echo $(DL)import @$(SDK_LIBC)/imports/libc.imp$(DL) >> $@ @echo $(DL)import @$(SDK_LIBC)/imports/netware.imp$(DL) >> $@ ifndef DISABLE_LDAP