Commit 0b04c521 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Gnter Knauf's netware build fixes

parent 8383945a
Loading
Loading
Loading
Loading
+26 −14
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ BASE = c:/novell
INSTDIR	= s:/libcurl

# Edit the path below to point to the base of your Zlib sources.
ZLIB_PATH = ../../../cw/zlib-src-1.1.4
#ZLIB_PATH = ../../../cw/zlib-src-1.1.4

# Edit the vars below to change NLM target settings.
TARGET  = libcurl
@@ -22,7 +22,6 @@ DESCR = cURL libcurl $(LIBCURL_VERSION_STR) - http://curl.haxx.se
MTSAFE	= YES
STACK	= 64000
SCREEN	= none
#MODULES	= libz.nlm
EXPORTS	= @libcurl.imp

# Edit the var below to point to your lib architecture.
@@ -99,10 +98,15 @@ NDK_ROOT = $(BASE)/ndk
SDK_CLIB = $(NDK_ROOT)/nwsdk
SDK_LIBC = $(NDK_ROOT)/libc
SDK_LDAP = $(NDK_ROOT)/cldapsdk/netware
CURL_INC = ../include

INCLUDES = -I$(CURL_INC)
INCLUDES = -I. -I../include

ifdef ZLIB_PATH
	INCLUDES += -I$(ZLIB_PATH)
	CFLAGS += -DHAVE_ZLIB_H -DHAVE_LIBZ
	IMPORTS = @$(ZLIB_PATH)/nw/zlib.imp
	MODULES = libz.nlm
endif

ifeq ($(LIBARCH),LIBC)
	INCLUDES += -I$(SDK_LIBC)/include -I$(SDK_LIBC)/include/nks
@@ -122,7 +126,7 @@ endif

ifeq ($(OSTYPE),linux)
DL	= '
-include $(BASE)/nlmconv/ncpfs.inc
#-include $(BASE)/nlmconv/ncpfs.inc
endif

OBJS	= \
@@ -169,6 +173,14 @@ OBJS = \
	$(OBJDIR)/http_ntlm.o \
	$(OBJDIR)/md5.o \
	$(OBJDIR)/strtoofft.o \
	$(OBJDIR)/strerror.o \
	$(OBJDIR)/hostares.o \
	$(OBJDIR)/hostasyn.o \
	$(OBJDIR)/hostip4.o \
	$(OBJDIR)/hostip6.o \
	$(OBJDIR)/hostsyn.o \
	$(OBJDIR)/hostthre.o \
	$(OBJDIR)/inet_ntop.o \
	$(OBJDIR)/nwlib.o


@@ -178,9 +190,9 @@ $(OBJDIR)/%.o: %.c
	@echo Compiling $<
	@$(CC) $(CFLAGS) -c $< -o $@

$(OBJDIR)/version.inc: $(CURL_INC)/curl/curl.h $(OBJDIR)
$(OBJDIR)/version.inc: ../include/curl/curlver.h $(OBJDIR)
	@echo Creating $@
	@awk -f ../packages/netware/get_ver.awk $< > $@
	@awk -f ../packages/NetWare/get_ver.awk $< > $@

dist: all
	-$(RM) $(OBJDIR)/*.o $(OBJDIR)/$(TARGET).map $(OBJDIR)/$(TARGET).ncv
@@ -239,9 +251,9 @@ ifeq ($(LIBARCH),CLIB)
	@echo $(DL)import @$(SDK_CLIB)/imports/threads.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_CLIB)/imports/nlmlib.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_CLIB)/imports/socklib.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapsdk.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapssl.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapx.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapsdk.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapssl.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapx.imp$(DL) >> $@
	@echo $(DL)module clib$(DL) >> $@
else
ifeq ($(LD),nlmconv)
@@ -255,9 +267,9 @@ endif
	@echo $(DL)check _LibCCheckUnload$(DL) >> $@
	@echo $(DL)import @$(SDK_LIBC)/imports/libc.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LIBC)/imports/netware.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapsdk.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapssl.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapx.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapsdk.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapssl.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapx.imp$(DL) >> $@
	@echo $(DL)module libc$(DL) >> $@
endif
ifdef MODULES
+0 −4
Original line number Diff line number Diff line
@@ -182,10 +182,6 @@
/* Define to 1 if you have the `ssl' library (-lssl). */
#undef HAVE_LIBSSL

/* If zlib is available */
#undef HAVE_LIBZ
//#define HAVE_LIBZ 1

/* Define to 1 if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1

+5 −4
Original line number Diff line number Diff line
@@ -9,7 +9,6 @@
	curl_easy_setopt,
	curl_escape,
	curl_unescape,
	curl_formparse,
	curl_formfree,
	curl_getdate,
	curl_getenv,
@@ -39,6 +38,8 @@
	curl_version_info,
	curl_share_init,
	curl_share_setopt,
	curl_share_cleanup

 	curl_share_cleanup,
 	curl_global_init_mem,
 	curl_easy_strerror,
 	curl_multi_strerror,
 	curl_share_strerror
+17 −11
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ BASE = c:/novell
INSTDIR	= s:/libcurl

# Edit the path below to point to the base of your Zlib sources.
ZLIB_PATH = ../../../cw/zlib-src-1.1.4
#ZLIB_PATH = ../../../cw/zlib-src-1.1.4

# Edit the vars below to change NLM target settings.
TARGET  = curl
@@ -104,7 +104,13 @@ CURL_INC = ../include
CURL_LIB = ../lib

INCLUDES = -I$(CURL_INC) -I$(CURL_LIB)

ifdef ZLIB_PATH
	INCLUDES += -I$(ZLIB_PATH)
	CFLAGS += -DHAVE_ZLIB_H -DHAVE_LIBZ
	IMPORTS+ = @$(ZLIB_PATH)/nw/zlib.imp
	MODULES+ = libz.nlm
endif

ifeq ($(LIBARCH),LIBC)
	INCLUDES += -I$(SDK_LIBC)/include -I$(SDK_LIBC)/include/nks
@@ -123,7 +129,7 @@ endif

ifeq ($(OSTYPE),linux)
DL	= '
-include $(BASE)/nlmconv/ncpfs.inc
#-include $(BASE)/nlmconv/ncpfs.inc
endif

OBJS	= \
@@ -141,9 +147,9 @@ $(OBJDIR)/%.o: %.c
	@echo Compiling $<
	@$(CC) $(CFLAGS) -c $< -o $@

$(OBJDIR)/version.inc: $(CURL_INC)/curl/curl.h $(OBJDIR)
$(OBJDIR)/version.inc: $(CURL_INC)/curl/curlver.h $(OBJDIR)
	@echo Creating $@
	@awk -f ../packages/netware/get_ver.awk $< > $@
	@awk -f ../packages/NetWare/get_ver.awk $< > $@

dist: all
	-$(RM) $(OBJDIR)/*.o $(OBJDIR)/$(TARGET).map $(OBJDIR)/$(TARGET).ncv
@@ -202,9 +208,9 @@ ifeq ($(LIBARCH),CLIB)
	@echo $(DL)import @$(SDK_CLIB)/imports/threads.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_CLIB)/imports/nlmlib.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_CLIB)/imports/socklib.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapsdk.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapssl.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapx.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapsdk.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapssl.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/clib/imports/ldapx.imp$(DL) >> $@
	@echo $(DL)module clib$(DL) >> $@
else
ifeq ($(LD),nlmconv)
@@ -218,9 +224,9 @@ endif
	@echo $(DL)check _LibCCheckUnload$(DL) >> $@
	@echo $(DL)import @$(SDK_LIBC)/imports/libc.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LIBC)/imports/netware.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapsdk.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapssl.imp$(DL) >> $@
	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapx.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapsdk.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapssl.imp$(DL) >> $@
#	@echo $(DL)import @$(SDK_LDAP)/libc/imports/lldapx.imp$(DL) >> $@
	@echo $(DL)module libc$(DL) >> $@
endif
ifdef MODULES
+0 −4
Original line number Diff line number Diff line
@@ -185,10 +185,6 @@
/* Define to 1 if you have the `ssl' library (-lssl). */
#undef HAVE_LIBSSL

/* If zlib is available */
#undef HAVE_LIBZ
//#define HAVE_LIBZ 1

/* Define to 1 if you have the <limits.h> header file. */
#define HAVE_LIMITS_H 1