Skip to content
Snippets Groups Projects
Makefile.netware 20.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • #################################################################
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    # $Id$
    
    #
    ## Makefile for building libcurl.nlm (NetWare version - gnu make)
    ## Use: make -f Makefile.netware
    ##
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ## Comments to: Guenter Knauf http://www.gknw.de/phpbb
    
    #
    #################################################################
    
    # Edit the path below to point to the base of your Novell NDK.
    
    ifndef NDKBASE
    
    
    # Edit the path below to point to the base of your Zlib sources.
    
    ifndef ZLIB_PATH
    ZLIB_PATH = ../../zlib-1.2.3
    endif
    
    # Edit the path below to point to the base of your OpenSSL package.
    ifndef OPENSSL_PATH
    
    OPENSSL_PATH = ../../openssl-0.9.8k
    
    endif
    
    # Edit the path below to point to the base of your LibSSH2 package.
    ifndef LIBSSH2_PATH
    
    LIBSSH2_PATH = ../../libssh2-1.0
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    # Edit the path below to point to the base of your libidn package.
    ifndef LIBIDN_PATH
    
    LIBIDN_PATH = ../../libidn-1.13
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    endif
    
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    INSTDIR	= ..$(DS)curl-$(LIBCURL_VERSION_STR)-bin-nw
    
    # Edit the vars below to change NLM target settings.
    TARGET  = libcurl
    VERSION	= $(LIBCURL_VERSION)
    
    COPYR	= Copyright (C) $(LIBCURL_COPYRIGHT_STR)
    
    DESCR	= cURL libcurl $(LIBCURL_VERSION_STR) ($(LIBARCH)) - http://curl.haxx.se
    
    MTSAFE	= YES
    STACK	= 64000
    SCREEN	= none
    EXPORTS	= @libcurl.imp
    
    
    # Uncomment the next line to enable linking with POSIX semantics.
    # POSIXFL = 1
    
    
    # Edit the var below to point to your lib architecture.
    ifndef LIBARCH
    LIBARCH = LIBC
    endif
    
    
    # must be equal to NDEBUG or DEBUG, CURLDEBUG
    ifndef DB
    
    DB	= NDEBUG
    
    # Optimization: -O<n> or debugging: -g
    ifeq ($(DB),NDEBUG)
    	OPT	= -O2
    	OBJDIR	= release
    else
    	OPT	= -g
    	OBJDIR	= debug
    endif
    
    
    # The following lines defines your compiler.
    ifdef CWFolder
    	METROWERKS = $(CWFolder)
    endif
    
    ifdef METROWERKS
    
    	# MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support
    	MWCW_PATH = $(subst \,/,$(METROWERKS))/Novell Support/Metrowerks Support
    
    	CC = mwccnlm
    else
    	CC = gcc
    endif
    
    # a native win32 awk can be downloaded from here:
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    # http://www.gknw.net/development/prgtools/awk-20070501.zip
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    AWK	= awk
    
    CP	= cp -afv
    
    # RM	= rm -f
    # if you want to mark the target as MTSAFE you will need a tool for
    # generating the xdc data for the linker; here's a minimal tool:
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    # http://www.gknw.net/development/prgtools/mkxdc.zip
    
    MPKXDC	= mkxdc
    
    
    # LIBARCH_U = $(shell $(AWK) 'BEGIN {print toupper(ARGV[1])}' $(LIBARCH))
    LIBARCH_L = $(shell $(AWK) 'BEGIN {print tolower(ARGV[1])}' $(LIBARCH))
    
    # Include the version info retrieved from curlver.h
    -include $(OBJDIR)/version.inc
    
    
    # Global flags for all compilers
    
    CFLAGS	+= $(OPT) -D$(DB) -DNETWARE -DHAVE_CONFIG_H -nostdinc
    
    
    ifeq ($(CC),mwccnlm)
    LD	= mwldnlm
    
    LDFLAGS	= -nostdlib $(PRELUDE) $(OBJL) -o $@ -commandfile
    
    ARFLAGS	= -nostdlib -type library -o
    
    CFLAGS	+= -msgstyle gcc -gccinc -inline off -opt nointrinsics -proc 586
    
    CFLAGS	+= -relax_pointers
    #CFLAGS	+= -w on
    ifeq ($(LIBARCH),LIBC)
    
    ifeq ($(POSIXFL),1)
    	PRELUDE = $(SDK_LIBC)/imports/posixpre.o
    else
    
    	PRELUDE = $(SDK_LIBC)/imports/libcpre.o
    
    	CFLAGS += -align 4
    
    	# PRELUDE = $(SDK_CLIB)/imports/clibpre.o
    
    	# to avoid the __init_* / __deinit_* whoes dont use prelude from NDK
    
    	PRELUDE = "$(MWCW_PATH)/libraries/runtime/prelude.obj"
    
    	# CFLAGS += -include "$(MWCW_PATH)/headers/nlm_clib_prefix.h"
    
    	CFLAGS += -align 1
    
    endif
    else
    LD	= nlmconv
    LDFLAGS	= -T
    
    CFLAGS	+= -fno-builtin -fpcc-struct-return -fno-strict-aliasing
    
    ifeq ($(LIBARCH),LIBC)
    
    ifeq ($(POSIXFL),1)
    	PRELUDE = $(SDK_LIBC)/imports/posixpre.gcc.o
    else
    
    	PRELUDE = $(SDK_LIBC)/imports/libcpre.gcc.o
    
    	PRELUDE = $(SDK_CLIB)/imports/clibpre.gcc.o
    
    	# to avoid the __init_* / __deinit_* whoes dont use prelude from NDK
    	# http://www.gknw.net/development/mk_nlm/gcc_pre.zip
    
    	# PRELUDE = $(NDK_ROOT)/pre/prelude.o
    
    	CFLAGS += -include $(NDKBASE)/nlmconv/genlm.h
    
    NDK_ROOT = $(NDKBASE)/ndk
    
    SDK_CLIB = $(NDK_ROOT)/nwsdk
    SDK_LIBC = $(NDK_ROOT)/libc
    SDK_LDAP = $(NDK_ROOT)/cldapsdk/netware
    
    CURL_INC = ../include
    CURL_LIB = ../lib
    ARES_LIB = ../ares
    
    INCLUDES = -I$(CURL_INC) -I$(CURL_LIB)
    
    	INCLUDES += -I$(ARES_LIB)
    
    	LDLIBS += $(ARES_LIB)/libcares.$(LIBEXT)
    
    ifdef WITH_SSH2
    	INCLUDES += -I$(LIBSSH2_PATH)/include
    ifdef LINK_STATIC
    
    	LDLIBS += $(LIBSSH2_PATH)/nw/libssh2.$(LIBEXT)
    
    	IMPORTS += @$(LIBSSH2_PATH)/nw/libssh2.imp
    
    	INCLUDES += -I$(OPENSSL_PATH)/outinc_nw_$(LIBARCH_L)
    
    	LDLIBS += $(OPENSSL_PATH)/out_nw_$(LIBARCH_L)/ssl.$(LIBEXT)
    	LDLIBS += $(OPENSSL_PATH)/out_nw_$(LIBARCH_L)/crypto.$(LIBEXT)
    
    	IMPORTS += GetProcessSwitchCount RunningProcess
    
    ifdef WITH_ZLIB
    	INCLUDES += -I$(ZLIB_PATH)
    ifdef LINK_STATIC
    	LDLIBS += $(ZLIB_PATH)/nw/$(LIBARCH)/libz.$(LIBEXT)
    else
    	MODULES += libz.nlm
    	IMPORTS += @$(ZLIB_PATH)/nw/$(LIBARCH)/libz.imp
    endif
    endif
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ifdef WITH_IDN
    	INCLUDES += -I$(LIBIDN_PATH)/include
    	LDLIBS += $(LIBIDN_PATH)/lib/libidn.$(LIBEXT)
    endif
    
    
    ifeq ($(LIBARCH),LIBC)
    
    	INCLUDES += -I$(SDK_LIBC)/include
    	# INCLUDES += -I$(SDK_LIBC)/include/nks
    
    	# INCLUDES += -I$(SDK_LIBC)/include/winsock
    
    	CFLAGS += -D_POSIX_SOURCE
    
    	INCLUDES += -I$(SDK_CLIB)/include/nlm
    
    	# INCLUDES += -I$(SDK_CLIB)/include/nlm/obsolete
    
    	# INCLUDES += -I$(SDK_CLIB)/include
    
    endif
    ifndef DISABLE_LDAP
    	INCLUDES += -I$(SDK_LDAP)/$(LIBARCH_L)/inc
    
    endif
    CFLAGS	+= $(INCLUDES)
    
    ifeq ($(MTSAFE),YES)
    
    	XDCOPT = -n
    endif
    ifeq ($(MTSAFE),NO)
    	XDCOPT = -u
    endif
    ifdef XDCOPT
    
    	XDCDATA = $(OBJDIR)/$(TARGET).xdc
    endif
    
    
    ifeq ($(findstring linux,$(OSTYPE)),linux)
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    DS	= /
    
    #-include $(NDKBASE)/nlmconv/ncpfs.inc
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    else
    DS	= \\
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    # Makefile.inc provides the CSOURCES and HHEADERS defines
    
    OBJS	:= $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(CSOURCES))) $(OBJDIR)/nwos.o
    
    OBJL	= $(OBJS) $(OBJDIR)/nwlib.o $(LDLIBS)
    
    Gisle Vanem's avatar
     
    Gisle Vanem committed
    nlm: prebuild $(TARGET).nlm
    
    lib: prebuild $(TARGET).$(LIBEXT)
    
    Yang Tse's avatar
    Yang Tse committed
    prebuild: $(OBJDIR) $(CURL_INC)/curl/curlbuild.h $(OBJDIR)/version.inc config.h
    
    
    $(OBJDIR)/%.o: %.c
    
    #	@echo Compiling $<
    	$(CC) $(CFLAGS) -c $< -o $@
    
    $(OBJDIR)/version.inc: ../include/curl/curlver.h $(OBJDIR)
    
    	@echo Creating $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@$(AWK) -f ../packages/NetWare/get_ver.awk $< > $@
    
    	@$(CP) $(TARGET).nlm $(INSTDIR)
    
    	@$(CP) $(TARGET).$(LIBEXT) $(INSTDIR)
    
    	@$(CP) ../CHANGES $(INSTDIR)
    	@$(CP) ../COPYING $(INSTDIR)
    	@$(CP) ../README $(INSTDIR)
    	@$(CP) ../RELEASE-NOTES $(INSTDIR)
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ifdef WITH_SSL
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    endif
    
    	-$(RM) -r $(OBJDIR)
    
    
    distclean: clean
    
    	-$(RM) $(TARGET).$(LIBEXT) $(TARGET).nlm
    	-$(RM) certdata.txt ca-bundle.crt
    
    $(OBJDIR) $(INSTDIR):
    	@$(MKDIR) $@
    
    $(TARGET).$(LIBEXT): $(OBJS)
    
    	@echo Creating $@
    	@-$(RM) $@
    	@$(AR) $(ARFLAGS) $@ $^
    
    ifdef RANLIB
    	@$(RANLIB) $@
    endif
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    $(TARGET).nlm: $(OBJDIR)/$(TARGET).def $(OBJL) $(XDCDATA)
    
    	@echo Linking $@
    	@-$(RM) $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@$(LD) $(LDFLAGS) $<
    
    
    $(OBJDIR)/%.xdc: Makefile.netware
    	@echo Creating $@
    	@$(MPKXDC) $(XDCOPT) $@
    
    $(OBJDIR)/%.def: Makefile.netware
    	@echo $(DL)# DEF file for linking with $(LD)$(DL) > $@
    	@echo $(DL)# Do not edit this file - it is created by make!$(DL) >> $@
    	@echo $(DL)# All your changes will be lost!!$(DL) >> $@
    	@echo $(DL)#$(DL) >> $@
    	@echo $(DL)copyright "$(COPYR)"$(DL) >> $@
    	@echo $(DL)description "$(DESCR)"$(DL) >> $@
    	@echo $(DL)version $(VERSION)$(DL) >> $@
    ifdef NLMTYPE
    	@echo $(DL)type $(NLMTYPE)$(DL) >> $@
    endif
    ifdef STACK
    	@echo $(DL)stack $(STACK)$(DL) >> $@
    endif
    ifdef SCREEN
    	@echo $(DL)screenname "$(SCREEN)"$(DL) >> $@
    else
    	@echo $(DL)screenname "DEFAULT"$(DL) >> $@
    endif
    
    	@echo $(DL)debug$(DL) >> $@
    endif
    	@echo $(DL)threadname "$(TARGET)"$(DL) >> $@
    ifdef XDCDATA
    	@echo $(DL)xdcdata $(XDCDATA)$(DL) >> $@
    endif
    
    	@echo $(DL)flag_on 64$(DL) >> $@
    
    ifeq ($(LIBARCH),CLIB)
    	@echo $(DL)start _Prelude$(DL) >> $@
    	@echo $(DL)exit _Stop$(DL) >> $@
    	@echo $(DL)import @$(SDK_CLIB)/imports/clib.imp$(DL) >> $@
    	@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)module clib$(DL) >> $@
    
    ifndef DISABLE_LDAP
    	@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 ldapsdk ldapssl$(DL) >> $@
    
    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) >> $@
    
    	@echo $(DL)check POSIX_CheckUnload$(DL) >> $@
    
    	@echo $(DL)start _LibCPrelude$(DL) >> $@
    	@echo $(DL)exit _LibCPostlude$(DL) >> $@
    	@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)module libc$(DL) >> $@
    
    ifndef DISABLE_LDAP
    	@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 lldapsdk lldapssl$(DL) >> $@
    
    endif
    ifdef MODULES
    	@echo $(DL)module $(MODULES)$(DL) >> $@
    endif
    ifdef EXPORTS
    	@echo $(DL)export $(EXPORTS)$(DL) >> $@
    endif
    ifdef IMPORTS
    	@echo $(DL)import $(IMPORTS)$(DL) >> $@
    endif
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ifeq ($(findstring nlmconv,$(LD)),nlmconv)
    
    	@echo $(DL)input $(PRELUDE)$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)input $(OBJL)$(DL) >> $@
    
    #ifdef LDLIBS
    #	@echo $(DL)input $(LDLIBS)$(DL) >> $@
    #endif
    
    	@echo $(DL)output $(TARGET).nlm$(DL) >> $@
    endif
    
    
    config.h: Makefile.netware
    	@echo Creating $@
    	@echo $(DL)/* $@ for NetWare target.$(DL) > $@
    	@echo $(DL)** Do not edit this file - it is created by make!$(DL) >> $@
    	@echo $(DL)** All your changes will be lost!!$(DL) >> $@
    	@echo $(DL)*/$(DL) >> $@
    
    	@echo $(DL)#ifndef NETWARE$(DL) >> $@
    	@echo $(DL)#error This $(notdir $@) is created for NetWare platform!$(DL) >> $@
    	@echo $(DL)#endif$(DL) >> $@
    
    	@echo $(DL)#define VERSION "$(LIBCURL_VERSION_STR)"$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo $(DL)#define PACKAGE_BUGREPORT "a suitable curl mailing list => http://curl.haxx.se/mail/"$(DL) >> $@
    
    ifeq ($(LIBARCH),CLIB)
    
    	@echo $(DL)#define OS "i586-pc-clib-NetWare"$(DL) >> $@
    
    	@echo $(DL)#define NETDB_USE_INTERNET 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRICMP 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_STRNICMP 1$(DL) >> $@
    
    	@echo $(DL)#define RECV_TYPE_ARG1 int$(DL) >> $@
    	@echo $(DL)#define RECV_TYPE_ARG2 char *$(DL) >> $@
    	@echo $(DL)#define RECV_TYPE_ARG3 int$(DL) >> $@
    	@echo $(DL)#define RECV_TYPE_ARG4 int$(DL) >> $@
    	@echo $(DL)#define RECV_TYPE_RETV int$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_ARG1 int$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_ARG2 char$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_ARG3 int$(DL) >> $@
    	@echo $(DL)#define RECVFROM_TYPE_ARG4 int$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_ARG5 struct sockaddr$(DL) >> $@
    	@echo $(DL)#define RECVFROM_TYPE_ARG6 int$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_RETV int$(DL) >> $@
    
    	@echo $(DL)#define SEND_QUAL_ARG2$(DL) >> $@
    	@echo $(DL)#define SEND_TYPE_ARG1 int$(DL) >> $@
    	@echo $(DL)#define SEND_TYPE_ARG2 char *$(DL) >> $@
    	@echo $(DL)#define SEND_TYPE_ARG3 int$(DL) >> $@
    	@echo $(DL)#define SEND_TYPE_ARG4 int$(DL) >> $@
    	@echo $(DL)#define SEND_TYPE_RETV int$(DL) >> $@
    
    	@echo $(DL)#define socklen_t int$(DL) >> $@
    
    	@echo $(DL)#define pressanykey PressAnyKeyToContinue$(DL) >> $@
    
    	@echo $(DL)#define OS "i586-pc-libc-NetWare"$(DL) >> $@
    
    	@echo $(DL)#define HAVE_FTRUNCATE 1$(DL) >> $@
    	@echo $(DL)#define HAVE_GETTIMEOFDAY 1$(DL) >> $@
    	@echo $(DL)#define HAVE_INTTYPES_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_LIMITS_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_LONGLONG 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_STDINT_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRCASECMP 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRLCAT 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRLCPY 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_STRTOLL 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SYS_PARAM_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_SYS_SELECT_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_TERMIOS_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_AF_INET6 1$(DL) >> $@
    	@echo $(DL)#define HAVE_PF_INET6 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_FREEADDRINFO 1$(DL) >> $@
    	@echo $(DL)#define HAVE_GETADDRINFO 1$(DL) >> $@
    	@echo $(DL)#define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_STRUCT_IN6_ADDR 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRUCT_SOCKADDR_IN6 1$(DL) >> $@
    
    	@echo $(DL)#define RECV_TYPE_ARG1 int$(DL) >> $@
    	@echo $(DL)#define RECV_TYPE_ARG2 void *$(DL) >> $@
    	@echo $(DL)#define RECV_TYPE_ARG3 size_t$(DL) >> $@
    	@echo $(DL)#define RECV_TYPE_ARG4 int$(DL) >> $@
    	@echo $(DL)#define RECV_TYPE_RETV ssize_t$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_ARG1 int$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_ARG2 void$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_ARG3 size_t$(DL) >> $@
    	@echo $(DL)#define RECVFROM_TYPE_ARG4 int$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_ARG5 struct sockaddr$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_ARG6 size_t$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_RETV ssize_t$(DL) >> $@
    
    	@echo $(DL)#define RECVFROM_TYPE_ARG2_IS_VOID 1$(DL) >> $@
    
    	@echo $(DL)#define SEND_QUAL_ARG2$(DL) >> $@
    	@echo $(DL)#define SEND_TYPE_ARG1 int$(DL) >> $@
    	@echo $(DL)#define SEND_TYPE_ARG2 void *$(DL) >> $@
    	@echo $(DL)#define SEND_TYPE_ARG3 size_t$(DL) >> $@
    	@echo $(DL)#define SEND_TYPE_ARG4 int$(DL) >> $@
    	@echo $(DL)#define SEND_TYPE_RETV ssize_t$(DL) >> $@
    
    	@echo $(DL)#define SIZEOF_STRUCT_IN6_ADDR 16$(DL) >> $@
    
    	@echo $(DL)#define SIZEOF_OFF_T 8$(DL) >> $@
    	@echo $(DL)#define _LARGEFILE 1$(DL) >> $@
    
    ifdef ENABLE_IPV6
    	@echo $(DL)#define ENABLE_IPV6 1$(DL) >> $@
    endif
    
    	@echo $(DL)#define USE_MANUAL 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_ARPA_INET_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_ASSERT_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_ERR_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_FCNTL_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_GETHOSTBYADDR 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_GETHOSTBYNAME 1$(DL) >> $@
    	@echo $(DL)#define HAVE_GETPROTOBYNAME 1$(DL) >> $@
    	@echo $(DL)#define HAVE_GMTIME_R 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_INET_ADDR 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_IOCTL 1$(DL) >> $@
    	@echo $(DL)#define HAVE_IOCTL_FIONBIO 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_LL 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_LOCALE_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_LOCALTIME_R 1$(DL) >> $@
    	@echo $(DL)#define HAVE_MALLOC_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_NETINET_IN_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_RECV 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_RECVFROM 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SELECT 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SEND 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SETJMP_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SETLOCALE 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SIGNAL 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SIGNAL_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_SIG_ATOMIC_T 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SOCKET 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STDLIB_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRDUP 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRFTIME 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRING_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRSTR 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_STRUCT_ADDRINFO 1$(DL) >> $@
    	@echo $(DL)#define HAVE_STRUCT_TIMEVAL 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SYS_IOCTL_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SYS_STAT_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_SYS_TIME_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_TIME_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_UNAME 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_UNISTD_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_UTIME 1$(DL) >> $@
    	@echo $(DL)#define HAVE_UTIME_H 1$(DL) >> $@
    
    Yang Tse's avatar
    Yang Tse committed
    	@echo $(DL)#define HAVE_WRITEV 1$(DL) >> $@
    
    	@echo $(DL)#define RETSIGTYPE void$(DL) >> $@
    
    	@echo $(DL)#define SIZEOF_STRUCT_IN_ADDR 4$(DL) >> $@
    
    	@echo $(DL)#define STDC_HEADERS 1$(DL) >> $@
    	@echo $(DL)#define TIME_WITH_SYS_TIME 1$(DL) >> $@
    
    ifdef DISABLE_LDAP
    
    	@echo $(DL)#define CURL_DISABLE_LDAP 1$(DL) >> $@
    
    	@echo $(DL)#define CURL_HAS_NOVELL_LDAPSDK 1$(DL) >> $@
    
    ifndef DISABLE_LDAPS
    	@echo $(DL)#define HAVE_LDAP_SSL 1$(DL) >> $@
    endif
    
    	@echo $(DL)#define HAVE_LDAP_SSL_H 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_LDAP_URL_PARSE 1$(DL) >> $@
    
    ifdef NW_WINSOCK
    	@echo $(DL)#define HAVE_CLOSESOCKET 1$(DL) >> $@
    else
    
    	@echo $(DL)#define USE_BSD_SOCKETS 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_SYS_TYPES_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_SYS_SOCKET_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_SYS_SOCKIO_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_NETDB_H 1$(DL) >> $@
    endif
    ifdef WITH_ARES
    	@echo $(DL)#define USE_ARES 1$(DL) >> $@
    endif
    
    ifdef WITH_ZLIB
    
    	@echo $(DL)#define HAVE_ZLIB_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_LIBZ 1$(DL) >> $@
    endif
    
    ifdef WITH_SSL
    
    	@echo $(DL)#define USE_SSLEAY 1$(DL) >> $@
    
    	@echo $(DL)#define USE_OPENSSL 1$(DL) >> $@
    
    	@echo $(DL)#define HAVE_OPENSSL_X509_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_OPENSSL_SSL_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_OPENSSL_RSA_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_OPENSSL_PEM_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_OPENSSL_ERR_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_OPENSSL_CRYPTO_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_OPENSSL_ENGINE_H 1$(DL) >> $@
    	@echo $(DL)#define HAVE_LIBSSL 1$(DL) >> $@
    	@echo $(DL)#define HAVE_LIBCRYPTO 1$(DL) >> $@
    	@echo $(DL)#define OPENSSL_NO_KRB5 1$(DL) >> $@
    endif
    
    ifdef WITH_SSH2
    	@echo $(DL)#define USE_LIBSSH2 1$(DL) >> $@
    	@echo $(DL)#define HAVE_LIBSSH2_H 1$(DL) >> $@
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    endif
    ifdef WITH_IDN
    
    	@echo $(DL)#define HAVE_LIBIDN 1$(DL) >> $@
    	@echo $(DL)#define HAVE_TLD_H 1$(DL) >> $@
    
    	@echo $(DL)#ifdef __GNUC__$(DL) >> $@
    	@echo $(DL)#define HAVE_VARIADIC_MACROS_GCC 1$(DL) >> $@
    	@echo $(DL)#else$(DL) >> $@
    	@echo $(DL)#define HAVE_VARIADIC_MACROS_C99 1$(DL) >> $@
    	@echo $(DL)#endif$(DL) >> $@
    
    ifdef OLD_NOVELLSDK
    	@echo $(DL)#define socklen_t int$(DL) >> $@
    endif
    
    ifdef CABUNDLE
    	@echo $(DL)#define CURL_CA_BUNDLE "$(CABUNDLE)"$(DL) >> $@
    else
    	@echo $(DL)#define CURL_CA_BUNDLE getenv("CURL_CA_BUNDLE")$(DL) >> $@
    endif
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    info: $(OBJDIR)/version.inc
    	@echo Configured to build $(TARGET) with these options:
    
    	@echo libarchitecture: $(LIBARCH)
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    	@echo curl version:    $(LIBCURL_VERSION_STR)
    	@echo compiler/linker: $(CC) / $(LD)
    
    ifdef CABUNDLE
    	@echo ca-bundle path:  $(CABUNDLE)
    endif
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ifdef WITH_SSL
    	@echo SSL support:     enabled (OpenSSL)
    else
    	@echo SSL support:     no
    endif
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ifdef WITH_SSH2
    	@echo SSH2 support:    enabled (libssh2)
    else
    	@echo SSH2 support:    no
    endif
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    ifdef WITH_ZLIB
    	@echo zlib support:    enabled
    else
    	@echo zlib support:    no
    endif
    ifdef WITH_ARES
    	@echo c-ares support:  enabled
    else
    	@echo c-ares support:  no
    endif
    ifdef ENABLE_IPV6
    	@echo ipv6 support:    enabled
    else
    	@echo ipv6 support:    no
    endif
    
    
    $(ARES_LIB)/libcares.$(LIBEXT):
    
    	$(MAKE) -C $(ARES_LIB) -f Makefile.netware lib
    
    Guenter Knauf's avatar
    Guenter Knauf committed
    
    
    ca-bundle.crt: mk-ca-bundle.pl
    	@echo Creating $@
    	@-$(PERL) $< -b -n $@
    
    
    $(CURL_INC)/curl/curlbuild.h: Makefile.netware FORCE
    
    Yang Tse's avatar
    Yang Tse committed
    	@echo Creating $@
    
    	@echo $(DL)/* $@ intended for NetWare target.$(DL) > $@
    
    Yang Tse's avatar
    Yang Tse committed
    	@echo $(DL)** Do not edit this file - it is created by make!$(DL) >> $@
    	@echo $(DL)** All your changes will be lost!!$(DL) >> $@
    	@echo $(DL)*/$(DL) >> $@
    
    	@echo $(DL)#ifndef __CURL_CURLBUILD_H$(DL) >> $@
    	@echo $(DL)#define __CURL_CURLBUILD_H$(DL) >> $@
    
    Yang Tse's avatar
    Yang Tse committed
    ifeq ($(LIBARCH),LIBC)
    
    	@echo $(DL)#define CURL_SIZEOF_LONG 4$(DL) >> $@
    
    	@echo $(DL)#define CURL_TYPEOF_CURL_OFF_T long long$(DL) >> $@
    
    	@echo $(DL)#define CURL_FORMAT_CURL_OFF_T "lld"$(DL) >> $@
    	@echo $(DL)#define CURL_FORMAT_CURL_OFF_TU "llu"$(DL) >> $@
    
    	@echo $(DL)#define CURL_FORMAT_OFF_T "$(PCT)lld"$(DL) >> $@
    
    Yang Tse's avatar
    Yang Tse committed
    	@echo $(DL)#define CURL_SIZEOF_CURL_OFF_T 8$(DL) >> $@
    
    	@echo $(DL)#define CURL_SUFFIX_CURL_OFF_T LL$(DL) >> $@
    	@echo $(DL)#define CURL_SUFFIX_CURL_OFF_TU ULL$(DL) >> $@
    
    Yang Tse's avatar
    Yang Tse committed
    else
    
    	@echo $(DL)#define CURL_SIZEOF_LONG 4$(DL) >> $@
    
    	@echo $(DL)#define CURL_TYPEOF_CURL_OFF_T long$(DL) >> $@
    
    	@echo $(DL)#define CURL_FORMAT_CURL_OFF_T "ld"$(DL) >> $@
    	@echo $(DL)#define CURL_FORMAT_CURL_OFF_TU "lu"$(DL) >> $@
    
    	@echo $(DL)#define CURL_FORMAT_OFF_T "$(PCT)ld"$(DL) >> $@
    
    Yang Tse's avatar
    Yang Tse committed
    	@echo $(DL)#define CURL_SIZEOF_CURL_OFF_T 4$(DL) >> $@
    
    	@echo $(DL)#define CURL_SUFFIX_CURL_OFF_T L$(DL) >> $@
    	@echo $(DL)#define CURL_SUFFIX_CURL_OFF_TU UL$(DL) >> $@
    
    Yang Tse's avatar
    Yang Tse committed
    endif
    
    Yang Tse's avatar
    Yang Tse committed
    	@echo $(DL)typedef CURL_TYPEOF_CURL_OFF_T curl_off_t;$(DL) >> $@
    
    Yang Tse's avatar
    Yang Tse committed
    	@echo $(DL)#endif /* __CURL_CURLBUILD_H */$(DL) >> $@