summaryrefslogtreecommitdiff
path: root/curl
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2004-12-23 08:45:37 +0000
committerVladimir Glazounov <vg@openoffice.org>2004-12-23 08:45:37 +0000
commit037f7f180b3c287e48661d87f2daefb8dc842fcc (patch)
tree5d92f4201a019162930f659a4ada59dabf1df304 /curl
parent42e13345a0fad43f83dbcdde59402a7afc955746 (diff)
INTEGRATION: CWS kso12 (1.9.4); FILE MERGED
2004/12/14 11:09:51 kso 1.9.4.5: #i38726# - Added CONVERTFILES to handle files to patch that have CRLF line ends. 2004/12/10 16:40:13 kso 1.9.4.4: #35323# - need to deliver libcurl.so.3 2004/12/08 12:52:59 kso 1.9.4.3: #i35323# - need to deliver curlver.h 2004/12/07 15:17:25 kso 1.9.4.2: #i35323# - patch file must be checked in as binary! - Windows: don't use winmm.dll anymore 2004/12/07 14:45:05 kso 1.9.4.1: #i35323# - switched to curl 7.12.2 (because of important IPv6 fixes) - enabled IPv6 now even on Windows - some Windows build enhancements (debug support/smaller dll)
Diffstat (limited to 'curl')
-rw-r--r--curl/makefile.mk21
1 files changed, 13 insertions, 8 deletions
diff --git a/curl/makefile.mk b/curl/makefile.mk
index 00d9b32a3996..c95a36fe32d9 100644
--- a/curl/makefile.mk
+++ b/curl/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.9 $
+# $Revision: 1.10 $
#
-# last change: $Author: rt $ $Date: 2004-09-08 17:07:58 $
+# last change: $Author: vg $ $Date: 2004-12-23 09:45:37 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -59,7 +59,6 @@
#
#
#*************************************************************************
-
PRJ=.
PRJNAME=so_curl
@@ -77,14 +76,16 @@ all:
# --- Files --------------------------------------------------------
-TARFILE_NAME=curl-7.9.8
+TARFILE_NAME=curl-7.12.2
+PATCH_FILE_NAME=curl-7.12.2.patch
+CONVERTFILES= \
+ lib$/Makefile.vc6
.IF "$(GUI)"=="UNX"
-PATCH_FILE_NAME=unx1-curl-7.9.8.patch
CONFIGURE_DIR=.$/
#relative to CONFIGURE_DIR
CONFIGURE_ACTION=.$/configure
-CONFIGURE_FLAGS= --without-ssl --enable-ftp --enable-ipv6 --disable-http --disable-gopher --disable-file --disable-ldap --disable-telnet --disable-dict
+CONFIGURE_FLAGS= --without-ssl --enable-ftp --enable-ipv6 --disable-http --disable-gopher --disable-file --disable-ldap --disable-telnet --disable-dict
BUILD_DIR=$(CONFIGURE_DIR)$/lib
.IF "$(OS)"=="IRIX"
@@ -93,17 +94,20 @@ BUILD_ACTION=gmake
BUILD_ACTION=make
.ENDIF
-OUT2LIB=$(BUILD_DIR)$/.libs$/libcurl*$(DLLPOST)
+OUT2LIB=$(BUILD_DIR)$/.libs$/libcurl*$(DLLPOST)*
.ENDIF # "$(GUI)"=="UNX"
.IF "$(GUI)"=="WNT"
-PATCH_FILE_NAME=curl-7.9.8.patch
# make use of stlport headerfiles
EXT_USE_STLPORT=TRUE
BUILD_DIR=.$/lib
+.IF "$(debug)"==""
BUILD_ACTION=nmake -f Makefile.vc6 cfg=release-dll
+.ELSE
+BUILD_ACTION=nmake -f Makefile.vc6 cfg=debug-dll
+.ENDIF
OUT2BIN=$(BUILD_DIR)$/libcurl.dll
OUT2LIB=$(BUILD_DIR)$/libcurl.lib
@@ -115,6 +119,7 @@ OUT2INC= \
include$/curl$/easy.h \
include$/curl$/multi.h \
include$/curl$/curl.h \
+ include$/curl$/curlver.h \
include$/curl$/types.h \
include$/curl$/stdcheaders.h \
include$/curl$/mprintf.h