Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
927e392b
Commit
927e392b
authored
21 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Mac OS X framework build files, contributed by Matt Veenstra
parent
aeb5edbf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/Makefile.am
+2
-1
2 additions, 1 deletion
lib/Makefile.am
lib/libcurl.framework.make
+104
-0
104 additions, 0 deletions
lib/libcurl.framework.make
lib/libcurl.plist
+35
-0
35 additions, 0 deletions
lib/libcurl.plist
with
141 additions
and
1 deletion
lib/Makefile.am
+
2
−
1
View file @
927e392b
...
...
@@ -8,7 +8,8 @@ EXTRA_DIST = getdate.y Makefile.b32 Makefile.b32.resp Makefile.m32 \
Makefile.vc6 Makefile.riscos libcurl.def curllib.dsp
\
curllib.dsw config-vms.h config-win32.h config-riscos.h config-mac.h
\
config.h.in ca-bundle.crt README.encoding README.memoryleak
\
README.ares makefile.dj config.dj
README.ares makefile.dj config.dj
\
libcurl.framework.make libcurl.plist
lib_LTLIBRARIES
=
libcurl.la
...
...
This diff is collapsed.
Click to expand it.
lib/libcurl.framework.make
0 → 100644
+
104
−
0
View file @
927e392b
#
# libcurl.framework.make is the make file. There are comments about unique
# Mac OS X things if you want to read. It can be built by calling:
# "make build -e -f libcurl.framework.make"
#
# The libcurl.plist is a basically the resource bit of the framework on Mac OS
# X. It is a simple XML file so you can open this to see what it is.
# Version, name, etc.
#
TMP_DIR
=
../lib/.lib
LIB_DIR
=
../lib
# for debug symbols add the -g option
C_OPTIONS
=
\
-fno-common
\
-O2
\
-DHAVE_CONFIG_H
\
-DPIC
\
-I
../lib
\
-I
../include
\
-Wall
# The 2 -framework tags are the needed Mac OS X sytem libs
LIBRARIES
=
-framework
CoreFoundation
-framework
CoreServices
-lssl
-lcrypto
-lz
# These libtool options are needed for a framework.
# @executable_path tells the application that links to this library where to find it.
# On Mac OS X we usually put frameworks iniside the application bundle in a frameworks folder.
LINK_OPTIONS
=
-prebind
-dynamiclib
-install_name
@executable_path/../frameworks/libcurl.framework/libcurl
OBJECTS
=
$(
TMP_DIR
)
/base64.o
\
$(
TMP_DIR
)
/connect.o
\
$(
TMP_DIR
)
/content_encoding.o
\
$(
TMP_DIR
)
/cookie.o
\
$(
TMP_DIR
)
/dict.o
\
$(
TMP_DIR
)
/easy.o
\
$(
TMP_DIR
)
/escape.o
\
$(
TMP_DIR
)
/file.o
\
$(
TMP_DIR
)
/formdata.o
\
$(
TMP_DIR
)
/ftp.o
\
$(
TMP_DIR
)
/getdate.o
\
$(
TMP_DIR
)
/getenv.o
\
$(
TMP_DIR
)
/getinfo.o
\
$(
TMP_DIR
)
/hash.o
\
$(
TMP_DIR
)
/hostip.o
\
$(
TMP_DIR
)
/http.o
\
$(
TMP_DIR
)
/http_chunks.o
\
$(
TMP_DIR
)
/http_digest.o
\
$(
TMP_DIR
)
/http_negotiate.o
\
$(
TMP_DIR
)
/http_ntlm.o
\
$(
TMP_DIR
)
/if2ip.o
\
$(
TMP_DIR
)
/inet_pton.o
\
$(
TMP_DIR
)
/krb4.o
\
$(
TMP_DIR
)
/ldap.o
\
$(
TMP_DIR
)
/llist.o
\
$(
TMP_DIR
)
/md5.o
\
$(
TMP_DIR
)
/memdebug.o
\
$(
TMP_DIR
)
/mprintf.o
\
$(
TMP_DIR
)
/multi.o
\
$(
TMP_DIR
)
/netrc.o
\
$(
TMP_DIR
)
/progress.o
\
$(
TMP_DIR
)
/security.o
\
$(
TMP_DIR
)
/sendf.o
\
$(
TMP_DIR
)
/share.o
\
$(
TMP_DIR
)
/speedcheck.o
\
$(
TMP_DIR
)
/ssluse.o
\
$(
TMP_DIR
)
/strequal.o
\
$(
TMP_DIR
)
/strtok.o
\
$(
TMP_DIR
)
/telnet.o
\
$(
TMP_DIR
)
/timeval.o
\
$(
TMP_DIR
)
/transfer.o
\
$(
TMP_DIR
)
/url.o
\
$(
TMP_DIR
)
/version.o
build
:
$(TMP_DIR) $(LIB_DIR) $(LIB_DIR)/libcurl.framework
$(TMP_DIR)
:
mkdir
-p
$(
TMP_DIR
)
$(LIB_DIR)
:
mkdir
-p
$(
LIB_DIR
)
# This builds the framework structure and links everything properly
$(LIB_DIR)/libcurl.framework
:
$(OBJECTS) $(LIB_DIR)/libcurl.plist
mkdir
-p
$(
LIB_DIR
)
/libcurl.framework/Versions/A/Resources
$(
CC
)
$(
LINK_OPTIONS
)
$(
LIBRARIES
)
$(
OBJECTS
)
\
-o
$(
LIB_DIR
)
/libcurl.framework/Versions/A/libcurl
cp
$(
LIB_DIR
)
/libcurl.plist
$(
LIB_DIR
)
/libcurl.framework/Versions/A/Resources/Info.plist
cd
$(
LIB_DIR
)
/libcurl.framework
;
\
ln
-fs
./Versions/A/libcurl libcurl
;
\
ln
-fs
./Versions/A/Resources Resources
cd
$(
LIB_DIR
)
/libcurl.framework/Versions
;
\
ln
-fs
./A Current
$(OBJECTS)
:
$(TMP_DIR)/%.o: $(LIB_DIR)/%.c
$(
CC
)
$(
C_OPTIONS
)
-c
$<
-o
$@
clean
:
rm
-fr
$(
LIB_DIR
)
/libcurl.framework
rm
-f
$(
OBJECTS
)
This diff is collapsed.
Click to expand it.
lib/libcurl.plist
0 → 100644
+
35
−
0
View file @
927e392b
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
<plist
version=
"0.9"
>
<dict>
<key>
CFBundleInfoDictionaryVersion
</key>
<string>
6.0
</string>
<key>
CFBundleDevelopmentRegion
</key>
<string>
English
</string>
<key>
CFBundleExecutable
</key>
<string>
curl
</string>
<key>
CFBundleIdentifier
</key>
<string>
com.libcurl.libcurl
</string>
<key>
CFBundleVersion
</key>
<string>
7.10.8
</string>
<key>
CFBundleName
</key>
<string>
libcurl
</string>
<key>
CFBundlePackageType
</key>
<string>
FMWK
</string>
<key>
CFBundleSignature
</key>
<string>
????
</string>
<key>
CFBundleShortVersionString
</key>
<string>
libcurl 7.10.8
</string>
<key>
CFBundleGetInfoString
</key>
<string>
libcurl.plist 7.10.8
</string>
</dict>
</plist>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment