• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..27-May-2015216

curl/H08-Jun-201437

curl.plistH A D08-Jun-20141.1 KiB

curl.xcodeproj/H08-Jun-20143

curl_config.hH A D11-May-201328.2 KiB

README.APPLEH A D11-May-20131.4 KiB

xcconfigs/H08-Jun-20147

xcscripts/H08-Jun-20146

README.APPLE

1The 'curl' subdirectory is based on ^/curl/vendor/curl-7.30.0
2
3== Updating ==
4
5Confirm/update versions in xcconfigs/libcurl-version.xcconfig
6 - This will probably require building the regular open source version and running otool on the resulting library.
7
8Update CURL_SUPPORT_* in xcconfigs/common.xcconfig
9 - Run configure, check config.status
10
11If options change (see below), update CURL_CONFIGURE_OPTIONS in xcconfigs/common.xcconfig
12
13Make sure all files are being compiled.
14curl: CURL_CFILES and CURLX_ONES in curl/src/Makefile.inc 
15libcurl: CSOURCES in curl/lib/Makefile.inc
16The Xcode targets list the files in the same order.
17Might be able to process the Makefile.inc files into Xcode file lists at some point.
18
19Make sure all man pages and headers are being installed.
20
21Update xcscripts/install_libtest.sh (see comment at top)
22
23== Configuration ==
24
25./configure --with-gssapi --enable-hidden-symbols --disable-static --enable-threaded-resolver --with-darwinssl --without-libssh2
26
27Changes to include/curl/curlbuild.h post-configure:
28  (1) Add #ifdef __LP64__ for CURL_SIZEOF_LONG.
29  (2) Change CURL_TYPEOF_CURL_OFF_T and associated defines to int64_t (configure gets it wrong for 32-bit).
30		(requires CURL_PULL_STDINT_H, CURL_PULL_INTTYPES_H)
31
32Changes to lib/curl_config.h post-configure:
33  (1) Add #ifdef __LP64__ for SIZEOF_LONG, SIZEOF_SIZE_T, SIZEOF_TIME_T, SIZEOF_VOIDP
34  (2) #undef HAVE_GSSAPI, OS - conditionally defined in common.xcconfig
35