e863a48ae3
2009-08-19 16:18:46 +0200 tono r275156 : i#103794: mingw gcc-4.4.0 port: make use of dwarf2 eh 2009-08-05 12:27:41 +0200 tono r274650 : CWS-TOOLING: rebase CWS mingwport22 to trunk@274622 (milestone: DEV300:m54) 2009-08-01 00:56:35 +0200 tono r274552 : i#103795: mingw gcc-4.4.0 port: use gcc dll 2009-07-27 00:13:27 +0200 tono r274344 : i#103795: mingw gcc-4.4.0 port: use gcc dll 2009-07-25 06:19:59 +0200 tono r274332 : i#103803: mingw gcc-4.4.0 port: invalid "extern static" 2009-07-25 06:13:56 +0200 tono r274331 : i#103802: mingw gcc-4.4.0 port: inhibit use of pthread 2009-07-25 06:05:22 +0200 tono r274330 : i#103801: mingw gcc-4.4.0 port: specify relocatable data section 2009-07-25 05:54:09 +0200 tono r274329 : i#103800: mingw gcc-4.4.0 port: remove invalid scope 2009-07-25 05:44:58 +0200 tono r274328 : i#103799: mingw gcc-4.4.0 port: add some #include 2009-07-25 05:33:09 +0200 tono r274327 : i#103798: mingw gcc-4.4.0 port: add backward in include path 2009-07-25 05:24:42 +0200 tono r274326 : i#103797: mingw gcc-4.4.0 port: nooptimize c++-uno bridge 2009-07-25 05:16:20 +0200 tono r274325 : i#103795: mingw gcc-4.4.0 port: use gcc dll 2009-07-25 04:01:59 +0200 tono r274324 : i#103794: mingw gcc-4.4.0 port: make use of dwarf2 eh 2009-07-25 02:44:01 +0200 tono r274322 : i#103793: mingw port: Exclude msvc[pr]80.dll from packaging 2009-07-25 02:28:21 +0200 tono r274321 : i#103791: mingw port fix typo
158 lines
4.4 KiB
Makefile
158 lines
4.4 KiB
Makefile
#*************************************************************************
|
|
#
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
#
|
|
# Copyright 2008 by Sun Microsystems, Inc.
|
|
#
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
|
#
|
|
# $RCSfile: makefile.mk,v $
|
|
#
|
|
# $Revision: 1.25 $
|
|
#
|
|
# This file is part of OpenOffice.org.
|
|
#
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
# only, as published by the Free Software Foundation.
|
|
#
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License version 3 for more details
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
# <http://www.openoffice.org/license.html>
|
|
# for a copy of the LGPLv3 License.
|
|
#
|
|
#*************************************************************************
|
|
PRJ=.
|
|
|
|
PRJNAME=so_curl
|
|
TARGET=so_curl
|
|
|
|
# --- Settings -----------------------------------------------------
|
|
|
|
.INCLUDE : settings.mk
|
|
|
|
.IF "$(SYSTEM_CURL)" == "YES"
|
|
all:
|
|
@echo "An already available installation of curl should exist on your system."
|
|
@echo "Therefore the version provided here does not need to be built in addition."
|
|
.ENDIF
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
TARFILE_NAME=curl-7.12.2
|
|
PATCH_FILES=curl-7.12.2.patch
|
|
CONVERTFILES= \
|
|
lib$/Makefile.vc6
|
|
|
|
ADDITIONAL_FILES= lib$/config-os2.h lib$/Makefile.os2
|
|
|
|
.IF "$(GUI)"=="UNX"
|
|
|
|
.IF "$(SYSBASE)"!=""
|
|
curl_CFLAGS+=-I$(SYSBASE)$/usr$/include
|
|
curl_LDFLAGS+=-L$(SYSBASE)$/usr$/lib
|
|
.ENDIF # "$(SYSBASE)"!=""
|
|
|
|
.IF "$(OS)$(COM)$(CPU)"=="LINUXGCCI"
|
|
curl_LDFLAGS+=-Wl,-z,noexecstack
|
|
.ENDIF
|
|
|
|
.IF "$(OS)$(CPU)"=="SOLARISU"
|
|
curl_CFLAGS+:=$(ARCH_FLAGS)
|
|
curl_LDFLAGS+:=$(ARCH_FLAGS)
|
|
.ENDIF
|
|
|
|
CONFIGURE_DIR=.$/
|
|
#relative to CONFIGURE_DIR
|
|
CONFIGURE_ACTION=.$/configure
|
|
CONFIGURE_FLAGS= --without-ssl --without-libidn --enable-ftp --enable-ipv6 --enable-http --disable-gopher --disable-file --disable-ldap --disable-telnet --disable-dict --disable-static CPPFLAGS="$(curl_CFLAGS)" LDFLAGS="$(curl_LDFLAGS)"
|
|
|
|
BUILD_DIR=$(CONFIGURE_DIR)$/lib
|
|
.IF "$(OS)"=="IRIX"
|
|
BUILD_ACTION=gmake
|
|
.ELSE
|
|
BUILD_ACTION=$(GNUMAKE)
|
|
.ENDIF
|
|
BUILD_FLAGS+= -j$(EXTMAXPROCESS)
|
|
|
|
OUT2LIB=$(BUILD_DIR)$/.libs$/libcurl$(DLLPOST).3
|
|
.ENDIF # "$(GUI)"=="UNX"
|
|
|
|
|
|
.IF "$(GUI)"=="WNT"
|
|
.IF "$(COM)"=="GCC"
|
|
curl_CC=$(CC)
|
|
.IF "$(MINGW_SHARED_GCCLIB)"=="YES"
|
|
curl_CC+=-shared-libgcc
|
|
.ENDIF
|
|
curl_LIBS=-lws2_32 -lwinmm -lmingwthrd
|
|
.IF "$(MINGW_SHARED_GXXLIB)"=="YES"
|
|
curl_LIBS+=-lstdc++_s
|
|
.ENDIF
|
|
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 --build=i586-pc-mingw32 --host=i586-pc-mingw32 CC="$(curl_CC)" OBJDUMP="$(WRAPCMD) objdump" CFLAGS=-D_MT LDFLAGS="-L$(ILIB:s/;/ -L/)" LIBS="$(curl_LIBS)"
|
|
BUILD_DIR=$(CONFIGURE_DIR)$/lib
|
|
BUILD_ACTION=make
|
|
OUT2BIN=$(BUILD_DIR)$/.libs$/libcurl*.dll
|
|
OUT2LIB=$(BUILD_DIR)$/.libs$/libcurl*.a
|
|
.ELSE
|
|
# make use of stlport headerfiles
|
|
EXT_USE_STLPORT=TRUE
|
|
|
|
.IF "$(CCNUMVER)" > "001399999999"
|
|
EXCFLAGS="/EHa /Zc:wchar_t- /D "_CRT_SECURE_NO_DEPRECATE""
|
|
.ELSE
|
|
EXCFLAGS="/EHsc /YX"
|
|
.ENDIF
|
|
|
|
BUILD_DIR=.$/lib
|
|
.IF "$(debug)"==""
|
|
BUILD_ACTION=nmake -f Makefile.vc6 cfg=release-dll EXCFLAGS=$(EXCFLAGS)
|
|
.ELSE
|
|
BUILD_ACTION=nmake -f Makefile.vc6 cfg=debug-dll EXCFLAGS=$(EXCFLAGS)
|
|
.ENDIF
|
|
|
|
OUT2BIN=$(BUILD_DIR)$/libcurl.dll
|
|
OUT2LIB=$(BUILD_DIR)$/libcurl.lib
|
|
|
|
.ENDIF
|
|
.ENDIF # "$(GUI)"=="WNT"
|
|
|
|
.IF "$(GUI)"=="OS2"
|
|
# make use of stlport headerfiles
|
|
EXT_USE_STLPORT=TRUE
|
|
|
|
BUILD_DIR=.$/lib
|
|
.IF "$(debug)"==""
|
|
BUILD_ACTION=make -f Makefile.os2
|
|
.ELSE
|
|
BUILD_ACTION=make -f Makefile.os2
|
|
.ENDIF
|
|
|
|
OUT2BIN=$(BUILD_DIR)$/libcurl.dll
|
|
OUT2LIB=$(BUILD_DIR)$/libcurl.lib
|
|
|
|
.ENDIF # "$(GUI)"=="OS2"
|
|
|
|
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
|
|
|
|
# --- Targets ------------------------------------------------------
|
|
|
|
.INCLUDE : set_ext.mk
|
|
.INCLUDE : target.mk
|
|
.INCLUDE : tg_ext.mk
|