summaryrefslogtreecommitdiffstats
path: root/src/openssl.mk
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* update package opensslMark Brand2012-03-141-2/+2
|
* update package opensslMark Brand2012-03-131-2/+2
|
* update package opensslMark Brand2012-01-181-2/+2
|
* update packages ffmpeg gnutls opensslMark Brand2012-01-051-2/+2
|
* update packages: imagemagick openssl x264Mark Brand2011-09-061-2/+2
|
* upgrade package opensslMark Brand2011-02-091-2/+2
|
* upgrade packages: freetype gst-plugins-base gst-plugins-good gstreamer ↵Volker Grabsch2010-12-021-2/+2
| | | | imagemagick lcms libusb openssl x264
* upgrade package opensslMark Brand2010-11-161-2/+2
|
* converted sed hack to patch for package opensslMark Brand2010-06-041-4/+0
|
* improved version recognition of packages: boost freetype gcc glew libgee ↵Volker Grabsch2010-06-041-1/+1
| | | | mingwrt openssl pcre pdcurses w32api wxwidgets
* upgrade package opensslMark Brand2010-06-031-9/+3
| | | | Removed patch and sed hacks that seem obsolete.
* upgrade package opensslMark Brand2010-04-111-2/+3
| | | | | | Upgrade to version 1.0.0. Uses patch for MinGW posted on openssl-dev list: http://www.mail-archive.com/openssl-dev@openssl.org/msg27484.html
* update version of packages gtk, libpng, openssl and pixmanVolker Grabsch2010-02-271-2/+2
|
* changed coding style: make "-i" always the first argument of $(SED) (by ↵Volker Grabsch2010-02-161-4/+4
| | | | Mark Brand)
* point consequently to "doc/index.html" instead of "doc/index.html or doc/README"Volker Grabsch2010-02-071-1/+1
|