summaryrefslogtreecommitdiffstats
path: root/src/openssl.mk
Commit message (Collapse)AuthorAgeFilesLines
* openssl: updateMark Brand2017-05-271-2/+2
|
* URL updatesViktor Szakats2017-03-041-3/+3
|
* update opensslMark Brand2017-01-271-2/+2
|
* add _WEBSITE and _DESCR fields to core packagesBoris Nagaev2016-12-221-0/+1
| | | | | | See https://github.com/mxe/mxe/issues/1422 Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
* openssl: remove libgcrypt dependencyBoris Nagaev2016-10-261-1/+1
|
* gnutls, openssl, vmime: updateMark Brand2016-10-121-2/+2
|
* openssl: fix shared buildMark Brand2016-09-261-1/+1
|
* openssl: updateMark Brand2016-09-231-2/+2
|
* Copyright headers: point to LICENSE.md and shortenBoris Nagaev2016-08-271-2/+1
| | | | | | | | | | | | | | | | | | | The following script was applied: sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE') sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \ $(git grep -l 'part of MXE.*See index.html') before='This file is part of MXE. See index.html for further information.' after='This file is part of MXE. See LICENSE.md for licensing information.' sed "s/$before/$after/" -i $(git grep -l 'part of MXE') Then git grep 'index.html for further information' revealed two other files. One of them was patched manually (patch.mk). Makefile has text "See index.html for further information" unrelated to licensing. See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
* openssl: updateMark Brand2016-05-031-2/+2
|
* openssl: updateMark Brand2016-03-011-2/+2
|
* openssl: updateMark Brand2016-01-281-2/+2
|
* openssl: updateMark Brand2015-12-081-2/+2
|
* openssl: change second urlTony Theodore2015-12-071-1/+1
| | | | | | | primary http and ftp sites only keep the latest version so use secondary http `.../source/old` in case we haven't yet updated. fixes #1043
* openssl: mv engines dll subdir from lib to binTony Theodore2015-11-301-0/+5
|
* all packages: really use sha256 checksumsTony Theodore2015-09-231-1/+1
|
* many packages: cleanup deps orderingTony Theodore2015-09-231-1/+1
|
* all packages: switch to sha256 checksumsTony Theodore2015-09-231-1/+1
| | | | closes #871
* update opensslTimothy Gu2015-07-231-2/+2
| | | | Fixes #767.
* libssh2 openssl: updateMark Brand2015-06-121-2/+2
|
* openssl: updateMark Brand2015-06-111-2/+2
|
* openssl: updateMark Brand2015-03-191-2/+2
|
* directly include necessary .cmake filesMark Brand2015-02-041-4/+0
| | | | | | | | | | | | | | | These are needed by cmake projects using openssl. Originally these files were installed by openssl, but it makes more sense just to include them in MXE's repo. The files come from cmake version 3.0.2. FindOpenSSL.cmake includes a compatibility fix for openssl 1.0.2 taken from https://github.com/Homebrew/homebrew/pull/36361/files. Reverts: 01af85c openssl: really fix the cmake problem 4259259 openssl: supply updated FindOpenSSL.cmake
* openssl: really fix the cmake problemMark Brand2015-01-301-0/+3
|
* openssl: supply updated FindOpenSSL.cmakeMark Brand2015-01-301-0/+1
| | | | This solves one problem building libwebsockets.
* openssl: updateMark Brand2015-01-231-2/+2
|
* openssl: updateMark Brand2015-01-161-2/+2
|
* openssl: updateMark Brand2015-01-081-2/+2
|
* openssl: updateMark Brand2014-10-161-2/+2
|
* Remove i686-pc-mingw32 package recipesTimothy Gu2014-10-141-1/+0
| | | | Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* openssl: don't install manpagesUwe Hermann2014-08-181-1/+1
| | | | This gets rid of ca. 1200 manpages in ssl/man/man[13].
* update package opensslMark Brand2014-08-071-2/+2
|
* update package opensslMark Brand2014-06-051-2/+2
|
* update package opensslMark Brand2014-04-081-2/+2
|
* packages gcc libvpx openssl portaudio: use escaped substitution styleTony Theodore2014-02-181-2/+4
| | | | prompted by sample package recipe on @TimothyGu's wiki
* package qt4 and dependencies: enable shared buildsTony Theodore2014-02-091-2/+3
|
* update package opensslMark Brand2014-01-081-2/+2
|
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | Most of the automatic conversion was done using the following Python script: import os import re pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk')) with open('index.html', 'rb') as f: index = f.read() pkgs_index = re.findall('<td class="package">([^<]*)</td>', index) assert pkgs_index == pkgs versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index)) assert sorted(versions.keys()) == pkgs for pkg in pkgs: version = versions[pkg] with open('src/' + pkg + '.mk', 'rb') as f: mk = f.read() checksumpos = mk.index('\n$(PKG)_CHECKSUM ') versionline = '\n$(PKG)_VERSION := %(version)s' % {'version': version} newmk = mk[:checksumpos] + versionline + mk[checksumpos:] with open('src/' + pkg + '.mk', 'wb') as f: f.write(newmk)
* various packages: enable/disable mingw-w64 buildsTony Theodore2013-06-011-0/+2
|
* various packages: remove grep workarounds for version sortingTony Theodore2013-05-221-2/+2
|
* update package opensslMark Brand2013-02-111-1/+1
|
* update package opensslMark Brand2013-02-051-1/+1
|
* all packages: use $(WGET) portability variableTony Theodore2012-05-161-1/+1
|
* update package opensslMark Brand2012-05-111-1/+1
|
* update package opensslMark Brand2012-04-261-1/+1
|
* update package opensslMark Brand2012-04-201-1/+1
|
* Move full package names from src/*.mk into package list (index.html)Volker Grabsch2012-03-291-1/+0
|
* Move doc/index.html -> index.htmlVolker Grabsch2012-03-291-1/+1
|
* Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.htmlVolker Grabsch2012-03-291-2/+0
|
* Rebrand to new project name MXEVolker Grabsch2012-03-281-1/+1
|