Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove optional native builds for autoconf automake cmake libtool | Tony Theodore | 2013-07-26 | 6 | -93/+1 |
| | | | | these need more testing and proper multi-target support | ||||
* | doc update: add notes about make clean and freebsd support to history section | Tony Theodore | 2013-07-26 | 1 | -0/+12 |
| | |||||
* | package sfml: cleanup style in test program | Tony Theodore | 2013-07-25 | 1 | -4/+4 |
| | |||||
* | doc update: add note about new qmake invocation | Tony Theodore | 2013-07-25 | 1 | -9/+15 |
| | |||||
* | package hdf5: add prefixed compiler wrappers and add to cmake toolchain file | Tony Theodore | 2013-07-25 | 2 | -0/+6 |
| | |||||
* | add optional package cmake with native build | Tony Theodore | 2013-07-22 | 2 | -0/+28 |
| | |||||
* | packages itk vtk6: remove FindHDF5.cmake | Tony Theodore | 2013-07-22 | 2 | -1087/+0 |
| | |||||
* | Merge branch 'master' of github.com:mxe/mxe | Tony Theodore | 2013-07-22 | 0 | -0/+0 |
|\ | |||||
| * | package itk: add missing cmake maodule | Tony Theodore | 2013-07-22 | 1 | -1/+304 |
| | | |||||
* | | package itk: add missing cmake module | Tony Theodore | 2013-07-22 | 1 | -1/+304 |
|/ | |||||
* | packages itk vtk6: add standard FindHDF5.cmake | Tony Theodore | 2013-07-22 | 2 | -0/+784 |
| | |||||
* | package vmime: expand filename in url | Tony Theodore | 2013-07-22 | 1 | -1/+1 |
| | | | | The filename isn't actually used, but we'll keep it consistent. | ||||
* | Move package versions from index.html back into the src/*.mk files | Volker Grabsch | 2013-07-21 | 280 | -288/+356 |
| | | | | | | | | | | | | | | | | | | | | | | | 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) | ||||
* | Replace unneeded "*-package" IDs in the docs | Volker Grabsch | 2013-07-21 | 2 | -280/+280 |
| | |||||
* | Replace unneeded "*-website" IDs in the docs | Volker Grabsch | 2013-07-21 | 1 | -279/+279 |
| | |||||
* | Fix redirects of ocaml-core to ocaml-native | Volker Grabsch | 2013-07-21 | 1 | -7/+7 |
| | |||||
* | Fix typo | Volker Grabsch | 2013-07-21 | 1 | -1/+1 |
| | |||||
* | Fix order of packages in package list | Volker Grabsch | 2013-07-21 | 1 | -21/+20 |
| | |||||
* | Fix initial comments of all src/*.mk files | Volker Grabsch | 2013-07-21 | 20 | -29/+21 |
| | |||||
* | Use "shorter" URL for MXE (without the optional trailing slash) | Volker Grabsch | 2013-07-21 | 1 | -1/+1 |
| | |||||
* | Bugfix in docs: Make the first column of package list match the internal ↵ | Volker Grabsch | 2013-07-21 | 1 | -5/+5 |
| | | | | package name | ||||
* | Fix spacing issue in docs | Volker Grabsch | 2013-07-21 | 1 | -2/+1 |
| | |||||
* | Merge branch 'master' of github.com:mxe/mxe | Tony Theodore | 2013-07-20 | 0 | -0/+0 |
|\ | |||||
| * | Revert "Merge branch 'master' of https://github.com/mgerhardy/mxe into ↵ | Martin Gerhardy | 2013-07-19 | 8 | -265/+0 |
| | | | | | | | | | | | | | | mgerhardy-master" This reverts commit 9c4386e2f7f81f905d04c00a7e19d3d064c20f51, reversing changes made to b54718e2208edc3871ca443e4318a2a0bf68a026. | ||||
| * | Revert "* updated checksums for the latest release candidates" | Martin Gerhardy | 2013-07-19 | 4 | -4/+4 |
| | | | | | | | | This reverts commit b2d13c15af2149cb6c51ee5b7495f2a2474bbaf4. | ||||
| * | * updated checksums for the latest release candidates | Martin Gerhardy | 2013-07-19 | 4 | -4/+4 |
| | | |||||
| * | Merge branch 'master' of https://github.com/mgerhardy/mxe into mgerhardy-master | Martin Gerhardy | 2013-07-19 | 8 | -0/+265 |
| |\ | | | | | | | | | | | | | Conflicts: index.html | ||||
| | * | * fixed win64 sdl compile errors with mingw64 - thanks to Franz Schrober | Martin Gerhardy | 2013-06-25 | 1 | -0/+1 |
| | | | | | | | | | | | | * this should go upstream | ||||
| | * | * added sdl2_net | Martin Gerhardy | 2013-06-25 | 3 | -0/+57 |
| | | | |||||
| | * | * added sdl2_ttf | Martin Gerhardy | 2013-06-25 | 2 | -0/+34 |
| | | | |||||
| | * | * also remove -XCClinker from sdl2-config | Martin Gerhardy | 2013-06-25 | 1 | -0/+1 |
| | | | | | | | | | | | | * thanks Schrober | ||||
| | * | * smepg2 now got its own package | Martin Gerhardy | 2013-06-20 | 1 | -5/+4 |
| | | | |||||
| | * | * update checksum to latest release candidate | Martin Gerhardy | 2013-06-19 | 1 | -1/+1 |
| | | | |||||
| | * | * added release candidates for sdl2 | Martin Gerhardy | 2013-06-13 | 4 | -0/+129 |
| | | | | | | | | | | | | * these packages can be installed next to sdl1.x | ||||
| | * | * added new package: smpeg2 | Martin Gerhardy | 2013-06-13 | 2 | -0/+44 |
| | | | |||||
* | | | doc update: add biosig to list of projects using mxe | Tony Theodore | 2013-07-20 | 1 | -0/+3 |
|/ / | |||||
* | | package libtool: add optional native build | Tony Theodore | 2013-07-19 | 1 | -0/+8 |
| | | |||||
* | | Merge branch 'stable' | Volker Grabsch | 2013-07-18 | 0 | -0/+0 |
|\ \ | |||||
| * | | package nsis: fixed build failure | Mark Brand | 2013-06-10 | 1 | -0/+32 |
| | | | | | | | | | | | | Thanks to <free.man.uu@gmail.com> | ||||
| * | | packages libiconv glib: fix for removed gets() and apply patches in glib build | Tony Theodore | 2013-06-09 | 2 | -0/+48 |
| | | | |||||
* | | | Clarify branch concept | Volker Grabsch | 2013-07-18 | 1 | -2/+14 |
| | | | |||||
* | | | Improve release notes for the next release | Volker Grabsch | 2013-07-18 | 1 | -3/+4 |
| | | | |||||
* | | | Improve old release notes of release 2.2 | Volker Grabsch | 2013-07-18 | 1 | -7/+3 |
| | | | |||||
* | | | Fix HTML issues in docs | Volker Grabsch | 2013-07-18 | 1 | -5/+5 |
| | | | |||||
* | | | Fix empty line | Volker Grabsch | 2013-07-18 | 1 | -1/+0 |
| | | | |||||
* | | | add optional native automake and autoconf | Tony Theodore | 2013-07-17 | 4 | -1/+57 |
| | | | |||||
* | | | doc update: mention FreeBSD partial support | Tony Theodore | 2013-07-15 | 2 | -0/+9 |
| | | | |||||
* | | | Merge branch 'master' of github.com:mxe/mxe | Tony Theodore | 2013-07-14 | 0 | -0/+0 |
|\ \ \ | |||||
| * | | | package pthreads: define pseudo file and checksum | Tony Theodore | 2013-07-14 | 2 | -36/+33 |
| | | | | |||||
* | | | | package pthreads: define pseudo file and checksum | Tony Theodore | 2013-07-14 | 2 | -36/+33 |
|/ / / | | | | | | | | | | | | | Oops! accidentally added the freebsd-excludes, but it should be harmless. |