Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
3
3p-zlib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Archive
Third Party Libraries
3p-zlib
Commits
2fc0170e
Commit
2fc0170e
authored
14 years ago
by
brad kittenbrink
Browse files
Options
Downloads
Patches
Plain Diff
Fix for making linux build of zlib 32 bits, and minor cleanups.
parent
7e3af9b0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build-cmd.sh
+6
-1
6 additions, 1 deletion
build-cmd.sh
build.sh
+3
-5
3 additions, 5 deletions
build.sh
with
9 additions
and
6 deletions
build-cmd.sh
+
6
−
1
View file @
2fc0170e
...
...
@@ -42,11 +42,16 @@ cd "$ZLIB_SOURCE_DIR"
mkdir
-p
"stage/include/zlib"
cp
{
zlib.h,zconf.h
}
"stage/include/zlib"
;;
*
)
"darwin"
)
./configure
--prefix
=
"
$(
pwd
)
/stage"
make
make
install
;;
"linux"
)
./configure
--prefix
=
"
$(
pwd
)
/stage"
CFLAGS
=
"-m32"
CXXFLAGS
=
"-m32"
make
make
install
;;
esac
mkdir
-p
stage/LICENSES
tail
-n
31 README
>
stage/LICENSES/zlib.txt
...
...
This diff is collapsed.
Click to expand it.
build.sh
+
3
−
5
View file @
2fc0170e
...
...
@@ -46,21 +46,19 @@ if [ "$OSTYPE" == 'cygwin' ] ; then
fi
# load autbuild provided shell functions and variables
set
+x
eval
"
$(
"
$AUTOBUILD
"
source_environment
)
"
set
-x
"
$AUTOBUILD
"
build
"
$AUTOBUILD
"
package
ZLIB_INSTALLABLE_PACKAGE_FILENAME
=
"
$(
ls
-1
zlib-
$ZLIB_VERSION
-
$AUTOBUILD_PLATFORM
-
$(
date
+%Y%m%d
)
*
.tar.bz2
)
"
upload_item installer
"
$ZLIB_INSTALLABLE_PACKAGE_FILENAME
"
application/octet-stream
"
$AUTOBUILD
"
upload
"
$ZLIB_INSTALLABLE_PACKAGE_FILENAME
"
ZLIB_INSTALLABLE_PACKAGE_MD5
=
"
$(
calc_md5
"
$ZLIB_INSTALLABLE_PACKAGE_FILENAME
"
)
"
echo
"{'md5':'
$ZLIB_INSTALLABLE_PACKAGE_MD5
', 'url':'http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/
$ZLIB_INSTALLABLE_PACKAGE_FILENAME
'}"
>
"output.js
on
"
echo
"{'md5':'
$ZLIB_INSTALLABLE_PACKAGE_MD5
', 'url':'http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/
$ZLIB_INSTALLABLE_PACKAGE_FILENAME
'}"
>
"output.js"
upload_item
docs
"output.js
on
"
text/plain
upload_item
installer
"output.js"
text/plain
pass
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