mirror of
https://github.com/moparisthebest/curl
synced 2024-11-07 10:05:06 -05:00
4a5aa6682d
This reverts renaming and usage of lib/*.h header files done
28-12-2012, reverting 2 commits:
f871de0... build: make use of 76 lib/*.h renamed files
ffd8e12... build: rename 76 lib/*.h files
This also reverts removal of redundant include guard (redundant thanks
to changes in above commits) done 2-12-2013, reverting 1 commit:
c087374... curl_setup.h: remove redundant include guard
This also reverts renaming and usage of lib/*.c source files done
3-12-2013, reverting 3 commits:
13606bb... build: make use of 93 lib/*.c renamed files
5b6e792... build: rename 93 lib/*.c files
7d83dff... build: commit 13606bbfde
follow-up 1
Start of related discussion thread:
http://curl.haxx.se/mail/lib-2013-01/0012.html
Asking for confirmation on pushing this revertion commit:
http://curl.haxx.se/mail/lib-2013-01/0048.html
Confirmation summary:
http://curl.haxx.se/mail/lib-2013-01/0079.html
NOTICE: The list of 2 files that have been modified by other
intermixed commits, while renamed, and also by at least one
of the 6 commits this one reverts follows below. These 2 files
will exhibit a hole in history unless git's '--follow' option
is used when viewing logs.
lib/curl_imap.h
lib/curl_smtp.h
63 lines
2.1 KiB
Plaintext
63 lines
2.1 KiB
Plaintext
//
|
|
// libcurl.dll cURL network retrieval client library
|
|
//
|
|
|
|
// Build-time options (uncomment these to enable)
|
|
#define ENABLE_ZLIB // Enable gzip/deflate decompression
|
|
//#define ENABLE_SSL // Enable SSL for HTTPS/FTPS (requires S60 Open C SDK)
|
|
|
|
TARGET libcurl.dll
|
|
TARGETTYPE dll
|
|
UID 0x1000008d 0xF0206D00
|
|
|
|
MACRO BUILDING_LIBCURL
|
|
|
|
#ifdef ENABLE_ZLIB
|
|
MACRO HAVE_LIBZ
|
|
#endif
|
|
#ifdef ENABLE_SSL
|
|
MACRO USE_SSLEAY
|
|
#endif
|
|
|
|
SOURCEPATH ../../../lib
|
|
SOURCE \
|
|
file.c timeval.c base64.c hostip.c progress.c formdata.c \
|
|
cookie.c http.c sendf.c ftp.c url.c dict.c if2ip.c speedcheck.c \
|
|
ldap.c ssluse.c version.c getenv.c escape.c mprintf.c telnet.c \
|
|
netrc.c getinfo.c transfer.c strequal.c easy.c security.c krb4.c \
|
|
curl_fnmatch.c fileinfo.c ftplistparser.c wildcard.c krb5.c \
|
|
memdebug.c http_chunks.c strtok.c connect.c llist.c hash.c multi.c \
|
|
content_encoding.c share.c http_digest.c md4.c md5.c curl_rand.c \
|
|
http_negotiate.c inet_pton.c strtoofft.c strerror.c amigaos.c \
|
|
hostasyn.c hostip4.c hostip6.c hostsyn.c inet_ntop.c parsedate.c \
|
|
select.c gtls.c sslgen.c tftp.c splay.c strdup.c socks.c ssh.c nss.c \
|
|
qssl.c rawstr.c curl_addrinfo.c socks_gssapi.c socks_sspi.c \
|
|
curl_sspi.c slist.c nonblock.c curl_memrchr.c imap.c pop3.c smtp.c \
|
|
pingpong.c rtsp.c curl_threads.c warnless.c hmac.c polarssl.c \
|
|
curl_rtmp.c openldap.c curl_gethostname.c gopher.c axtls.c \
|
|
idn_win32.c http_negotiate_sspi.c cyassl.c http_proxy.c non-ascii.c \
|
|
asyn-ares.c asyn-thread.c curl_gssapi.c curl_ntlm.c curl_ntlm_wb.c \
|
|
curl_ntlm_core.c curl_ntlm_msgs.c curl_sasl.c curl_schannel.c \
|
|
curl_multibyte.c curl_darwinssl.c bundles.c conncache.c
|
|
|
|
USERINCLUDE ../../../lib ../../../include/curl
|
|
#ifdef ENABLE_SSL
|
|
SYSTEMINCLUDE /epoc32/include/osextensions/stdapis
|
|
// Older versions of the SDK need this instead:
|
|
//USERINCLUDE /epoc32/include/stdapis/openssl
|
|
#endif
|
|
|
|
SYSTEMINCLUDE ../../../include /epoc32/include/stdapis /epoc32/include
|
|
|
|
LIBRARY euser.lib libc.lib
|
|
#ifdef ENABLE_ZLIB
|
|
LIBRARY ezlib.lib
|
|
#endif
|
|
#ifdef ENABLE_SSL
|
|
LIBRARY libssl.lib libcrypto.lib
|
|
#endif
|
|
|
|
CAPABILITY NetworkServices
|
|
|
|
EPOCALLOWDLLDATA
|