Merge pull request #1503 from LuaAndC/new-gh-pages

Prepare source tree for pointing GitHub Pages to master docs/
This commit is contained in:
Volker Diels-Grabsch 2016-08-29 11:55:15 +02:00 committed by GitHub
commit 1875b2fb99
874 changed files with 968 additions and 1845 deletions

View File

@ -2,7 +2,7 @@ language: c
sudo: false
script:
- make build-matrix.html versions.json
- make docs/build-matrix.html docs/versions.json
- if [ "$GH_TOKEN" != "" ]; then ./tools/travis-push.sh; fi
- make download -j 6 -k

View File

@ -1,12 +1,11 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
MAKEFILE := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
TOP_DIR := $(patsubst %/,%,$(dir $(MAKEFILE)))
EXT_DIR := $(TOP_DIR)/ext
# GNU Make Standard Library (http://gmsl.sourceforge.net/)
# See doc/gmsl.html for further information
# See docs/gmsl.html for further information
include $(EXT_DIR)/gmsl
MXE_TRIPLETS := i686-w64-mingw32 x86_64-w64-mingw32
@ -51,12 +50,12 @@ TIMESTAMP := $(shell date +%Y%m%d_%H%M%S)
PKG_DIR := $(PWD)/pkg
TMP_DIR = $(MXE_TMP)/tmp-$(1)
PKGS := $(call set_create,\
$(shell $(SED) -n 's/^.* class="package">\([^<]*\)<.*$$/\1/p' '$(TOP_DIR)/index.html'))
$(shell $(SED) -n 's/^.* class="package">\([^<]*\)<.*$$/\1/p' '$(TOP_DIR)/docs/index.html'))
BUILD := $(shell '$(EXT_DIR)/config.guess')
PATH := $(PREFIX)/$(BUILD)/bin:$(PREFIX)/bin:$(PATH)
# All pkgs have (implied) order-only dependencies on MXE_CONF_PKGS.
# These aren't meaningful to the pkg list in index.html so
# These aren't meaningful to the pkg list in docs/index.html so
# use a list in case we want to separate autotools, cmake etc.
MXE_CONF_PKGS := mxe-conf
PKGS += $(MXE_CONF_PKGS)
@ -270,7 +269,7 @@ else
$(info [create settings.mk])
$(shell { \
echo '# This is a template of configuration file for MXE. See'; \
echo '# index.html for more extensive documentations.'; \
echo '# docs/index.html for more extensive documentations.'; \
echo; \
echo '# This variable controls the number of compilation processes'; \
echo '# within one package ("intra-package parallelism").'; \
@ -370,7 +369,7 @@ $(PREFIX)/installed/check-requirements: $(MAKEFILE) | $(PREFIX)/installed/.gitke
$(call CHECK_REQUIREMENT_VERSION,automake,1\.11\.[3-9]\|1\.[1-9][2-9]\(\.[0-9]\+\)\?)
@if [ -e check-requirements-failed ]; then \
echo; \
echo 'Please have a look at "index.html" to ensure'; \
echo 'Please have a look at "docs/index.html" to ensure'; \
echo 'that your system meets all requirements.'; \
echo; \
rm check-requirements-failed; \
@ -438,7 +437,7 @@ define TARGET_RULE
@echo 'Warning: Deprecated target name $(1) specified'
@echo
@echo 'Please use $(1).[$(subst $(space),|,$(MXE_LIB_TYPES))] instead'
@echo 'See index.html for further information'
@echo 'See docs/index.html for further information'
@echo '------------------------------------------------------------'
@echo)
endef
@ -643,7 +642,7 @@ show-deps-%:
$(newline)$(newline)$* downstream dependents:$(newline)\
$(call WALK_DOWNSTREAM,$*))\
@echo,\
$(error Package $* not found in index.html))
$(error Package $* not found in docs/index.html))
# show upstream dependencies and downstream dependents separately
# suitable for usage in shell with: `make show-downstream-deps-foo`
@ -653,14 +652,14 @@ show-downstream-deps-%:
$(call SET_CLEAR,PKGS_VISITED)\
$(info $(call WALK_DOWNSTREAM,$*))\
@echo -n,\
$(error Package $* not found in index.html))
$(error Package $* not found in docs/index.html))
show-upstream-deps-%:
$(if $(call set_is_member,$*,$(PKGS)),\
$(call SET_CLEAR,PKGS_VISITED)\
$(info $(call WALK_UPSTREAM,$*))\
@echo -n,\
$(error Package $* not found in index.html))
$(error Package $* not found in docs/index.html))
# print first level pkg deps for use in build-pkg.lua
.PHONY: print-deps-for-build-pkg
@ -718,13 +717,13 @@ update:
update-package-%:
$(if $(call set_is_member,$*,$(PKGS)), \
$(and $($*_UPDATE),$(call UPDATE,$*,$(shell $($*_UPDATE)))), \
$(error Package $* not found in index.html))
$(error Package $* not found in docs/index.html))
update-checksum-%:
$(if $(call set_is_member,$*,$(PKGS)), \
$(call DOWNLOAD_PKG_ARCHIVE,$*) && \
$(SED) -i 's/^\([^ ]*_CHECKSUM *:=\).*/\1 '"`$(call PKG_CHECKSUM,$*)`"'/' '$($*_MAKEFILE)', \
$(error Package $* not found in index.html))
$(error Package $* not found in docs/index.html))
.PHONY: cleanup-style
define CLEANUP_STYLE
@ -743,7 +742,7 @@ define CLEANUP_STYLE
endef
cleanup-style:
$(foreach FILE,$(wildcard $(addprefix $(TOP_DIR)/,Makefile index.html CNAME src/*.mk src/*test.* tools/*)),$(call CLEANUP_STYLE,$(FILE)))
$(foreach FILE,$(wildcard $(addprefix $(TOP_DIR)/,Makefile docs/index.html docs/CNAME src/*.mk src/*test.* tools/*)),$(call CLEANUP_STYLE,$(FILE)))
.PHONY: cleanup-deps-style
cleanup-deps-style:
@ -758,7 +757,8 @@ cleanup-deps-style:
|| echo '*** Multi-line deps are mangled ***' && comm -3 tmp-$@-pre tmp-$@-post
@rm -f $(TOP_DIR)/tmp-$@-*
build-matrix.html: $(foreach 1,$(PKGS),$(PKG_MAKEFILES))
.PHONY: docs/build-matrix.html
docs/build-matrix.html: $(foreach 1,$(PKGS),$(PKG_MAKEFILES))
@echo '<!DOCTYPE html>' > $@
@echo '<html>' >> $@
@echo '<head>' >> $@
@ -850,8 +850,8 @@ build-matrix.html: $(foreach 1,$(PKGS),$(PKG_MAKEFILES))
@echo '</body>' >> $@
@echo '</html>' >> $@
.PHONY: versions.json
versions.json: $(foreach PKG,$(PKGS), $(TOP_DIR)/src/$(PKG).mk)
.PHONY: docs/versions.json
docs/versions.json: $(foreach PKG,$(PKGS), $(TOP_DIR)/src/$(PKG).mk)
@echo '{' > $@
@{$(foreach PKG,$(PKGS), \
echo ' "$(PKG)": \

View File

@ -1,23 +0,0 @@
- Ensure that your Git repository is configured correctly:
http://mxe.cc/#committers
- Ensure all stable commits have been merged to master
- run `make cleanup-style`
- check html with http://validator.w3.org/
- get list of new packages:
git diff --name-status stable..master | grep 'A.*.mk$' | gsed -n 's,A.*src/\(.*\)\.mk,\1\,,p' | tr '\n' ' '
- call for testers:
github issue
MXE mailing list
use the following to check for new/changed requirements:
http://htmlpreview.github.io/?https://raw.github.com/mxe/mxe/master/index.html
...
- Fast-forward the stable branch to master:
git checkout stable
git merge --ff-only master
git push
- Announce in mailing lists, forums, etc.
MXE mailing list
Freecode.com (formerly Freshmeat.net)
MinGW mailing list
Hacker News (news.ycombinator.com)

View File

View File

@ -1,5 +1,4 @@
/* This file is part of MXE.
* See index.html for further information. */
/* This file is part of MXE. See LICENSE.md for licensing information. */
table.fullscreen {
width: 100%;

View File

@ -1,5 +1,4 @@
/* This file is part of MXE.
* See index.html for further information. */
/* This file is part of MXE. See LICENSE.md for licensing information. */
body {
font-size: 11pt;
margin-top: 0em;

View File

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

Before

Width:  |  Height:  |  Size: 240 KiB

After

Width:  |  Height:  |  Size: 240 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 114 KiB

View File

@ -1050,11 +1050,12 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
suitable for usage in shell scripts
</dd>
<dt>make build-matrix.html</dt>
<dt>make docs/build-matrix.html</dt>
<dd>
generate a report of what packages are
supported on what targets to build-matrix.html
supported on what targets to
<a href="build-matrix.html">docs/build-matrix.html</a>
</dd>
<dt>make update</dt>
@ -2942,7 +2943,7 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
</p>
<p>
The <a href="doc/gmsl.html">GNU Make Standard Library</a> is also
The <a href="gmsl.html">GNU Make Standard Library</a> is also
available (though it should be unnecessary for most packages).
</p>
@ -3048,8 +3049,7 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<p>
and should start with:
</p>
<pre>This file is part of MXE.
See index.html for further information.
<pre>This file is part of MXE. See LICENSE.md for licensing information.
This patch has been taken from:
https://...</pre>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
GIT_DIR = $(if $(patsubst .,,$($(1)_SUBDIR)) \
,$(GITS_DIR)/$($(1)_SUBDIR),$(GITS_DIR)/$(1))
@ -42,8 +41,7 @@ endef
define EXPORT_PATCH
cd '$(call GIT_DIR,$(1))' \
&& ( \
echo 'This file is part of MXE.'; \
echo 'See index.html for further information.'; \
echo 'This file is part of MXE. See LICENSE.md for licensing information.'; \
echo ''; \
echo 'Contains ad hoc patches for cross building.'; \
echo ''; \
@ -65,14 +63,14 @@ init-git-%: download-only-%
$(if $(wildcard $(call GIT_DIR,$*)), \
$(error $(call GIT_DIR,$*) already exists), \
$(call INIT_GIT,$*)), \
$(error Package $* not found in index.html))
$(error Package $* not found in docs/index.html))
import-patch-%:
$(if $(call set_is_member,$*,$(PKGS)), \
$(if $(wildcard $(call GIT_DIR,$*)), \
$(call IMPORT_PATCH,$*,$(call PATCH_BY_NAME,$*,$(PATCH_NAME))), \
$(error $(call GIT_DIR,$*) does not exist)), \
$(error Package $* not found in index.html))
$(error Package $* not found in docs/index.html))
import-all-patches-%:
$(if $(call set_is_member,$*,$(PKGS)), \
@ -80,11 +78,11 @@ import-all-patches-%:
$(foreach PKG_PATCH,$(call PKG_PATCHES,$*), \
$(call IMPORT_PATCH,$*,$(PKG_PATCH))), \
$(error $(call GIT_DIR,$*) does not exist)), \
$(error Package $* not found in index.html))
$(error Package $* not found in docs/index.html))
export-patch-%:
$(if $(call set_is_member,$*,$(PKGS)), \
$(if $(wildcard $(call GIT_DIR,$*)), \
$(call EXPORT_PATCH,$*,$(PATCH_NAME)), \
$(error $(call GIT_DIR,$*) does not exist)), \
$(error Package $* not found in index.html))
$(error Package $* not found in docs/index.html))

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From e941cfd42870fe214f8c44cd5e4d8ee6893b0904 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := keepassx
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# enable native build of luajit for wrk
# leave build rule in src/luajit.mk for other uses (i.e. build-pkg)

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := qbittorrent
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := tor
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := wrk
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# MXE provides a fully featured build of Qt. Some users want more control...
# http://lists.nongnu.org/archive/html/mingw-cross-env-list/2013-08/msg00010.html

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := binutils-host
$(PKG)_IGNORE = $(binutils_IGNORE)

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cmake-host
$(PKG)_IGNORE = $(cmake_IGNORE)

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gcc-host
$(PKG)_IGNORE = $(gcc_IGNORE)

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := make-w32-bin
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := pkgconf-host
$(PKG)_IGNORE = $(pkgconf_IGNORE)

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := $(basename $(notdir $(lastword $(MAKEFILE_LIST))))
$(PKG)_FILE = $(qtbase_FILE)

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := winpthreads-host
$(PKG)_IGNORE = $(mingw-w64_IGNORE)

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
poppler_DEPS := $(filter-out qt ,$(poppler_DEPS)) qtbase
openscenegraph_DEPS := $(filter-out qt ,$(openscenegraph_DEPS)) qtbase

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# override relevant cloog, isl, and gcc variables changed in:
# https://github.com/mxe/mxe/pull/965

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# override relevant cloog, isl, and gcc variables changed in:
# https://github.com/mxe/mxe/pull/965

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := go-native
$(PKG)_WEBSITE := https://golang.org/

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := go
$(PKG)_WEBSITE := https://golang.org/

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 1d8e959ee39e7a46e150e722af12252448c7ac22 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := llthreads2
$(PKG)_WEBSITE := https://github.com/moteus/lua-llthreads2

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From f271a094f8add34df3f31ac6fb12c9fe683f763a Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := lpeg
$(PKG)_WEBSITE := http://www.inf.puc-rio.br/~roberto/lpeg/lpeg.html

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From dbedfa6c3b350b6cb2c13d17790a17129ce28721 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := lua-rapidjson
$(PKG)_WEBSITE := https://github.com/xpol/lua-rapidjson

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# enable native build for luarocks
# leave build rule in src/lua.mk for other uses (i.e. build-pkg)

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := luarocks
$(PKG)_WEBSITE := https://luarocks.org/

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 11c943734757cf703daa6768b3919b7a580fe8b0 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 25007fd7fed18926728b9a1249f827a27e1d03f1 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := luasocket
$(PKG)_WEBSITE := http://www.impa.br/~diego/software/luasocket

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := luv
$(PKG)_WEBSITE := https://github.com/luvit/luv

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := autoconf
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := automake
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := bison
$(PKG)_IGNORE := 3%

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := coreutils
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := flex
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gettext
$(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS)

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gperf
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := intltool
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libiconv
$(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS)

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libtool
$(PKG)_TARGETS := $(BUILD)

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := m4
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := make
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := patch
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := sed
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := tcl
$(PKG)_WEBSITE := https://tcl.tk

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := tk
$(PKG)_WEBSITE := https://tcl.tk

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := a52dec
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 2617d6a743ad197dc7ae0278a9c7015cc7dff61f Mon Sep 17 00:00:00 2001
From: Mark Brand <mabrand@mabrand.nl>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := agg
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := alure
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 1e244993f497ca7167361dfb29a2fe43232a7661 Mon Sep 17 00:00:00 2001
From: Timothy Gu <timothygu99@gmail.com>

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From: "Jon Schewe (BBN) <jschewe@bbn.com>"
Taken from https://issues.apache.org/bugzilla/attachment.cgi?id=31800.

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 72ceb6351c8519ed48b21233246fc87f5dc8ee18 Mon Sep 17 00:00:00 2001
From: Timothy Gu <timothygu99@gmail.com>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := apr-util
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := apr
$(PKG)_IGNORE :=

View File

@ -1,6 +1,5 @@
/*
* This file is part of MXE.
* See index.html for further information.
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <armadillo>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := armadillo
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := aspell
$(PKG)_IGNORE :=

View File

@ -1,6 +1,5 @@
/*
* This file is part of MXE.
* See index.html for further information.
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <assimp/cimport.h>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := assimp
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
diff -uNr a/atk/atkprivate.c b/atk/atkprivate.c
--- a/atk/atkprivate.c

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := atk
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := atkmm
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

View File

@ -1,6 +1,5 @@
/*
* This file is part of MXE.
* See index.html for further information.
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <aubio/aubio.h>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := aubio
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From e64e4a2b049ff472d6400d9650e295c1ebd6294b Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := bfd
$(PKG)_IGNORE = $(binutils_IGNORE)

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := binutils
# see http://lists.nongnu.org/archive/html/mingw-cross-env-list/2016-01/msg00013.html

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := blas
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: xantares <xantares09@hotmail.com>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# partial module - included by src/cmake/CMakeLists.txt

View File

@ -1,6 +1,5 @@
/*
* This file is part of MXE.
* See index.html for further information.
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <iostream>

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := boost
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := box2d
$(PKG)_IGNORE :=

View File

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
--- a/CMakeLists.txt Sat Sep 14 11:25:52 2013 -0700
+++ b/CMakeLists.txt Fri Sep 27 15:03:58 2013 +1000

View File

@ -1,6 +1,5 @@
/*
* This file is part of MXE.
* See index.html for further information.
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#pragma GCC diagnostic ignored "-Wunused-parameter"

Some files were not shown because too many files have changed in this diff Show More