# HG changeset patch # User Volker Grabsch # Date 1333016055 -7200 # Node ID 99516e73b36824c069b9ede6cddc9f0a9724d622 # Parent 8474fcb3e1b5c6132fd8d6b0c3e491dffd876899 Move doc/index.html -> index.html diff -r 8474fcb3e1b5 -r 99516e73b368 Makefile --- a/Makefile Thu Mar 29 12:10:58 2012 +0200 +++ b/Makefile Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. JOBS := 1 TARGET := i686-pc-mingw32 @@ -76,7 +76,7 @@ echo; \ echo 'Missing requirement: $(1)'; \ echo; \ - echo 'Please have a look at "doc/index.html" to ensure'; \ + echo 'Please have a look at "index.html" to ensure'; \ echo 'that your system meets all requirements.'; \ echo; \ exit 1; \ @@ -88,7 +88,7 @@ echo; \ echo 'Wrong version of requirement: $(1)'; \ echo; \ - echo 'Please have a look at "doc/index.html" to ensure'; \ + echo 'Please have a look at "index.html" to ensure'; \ echo 'that your system meets all requirements.'; \ echo; \ exit 1; \ @@ -111,7 +111,7 @@ $(eval $(subst #,$(newline),$(shell \ $(SED) -n \ 's/^.* id="\([A-Za-z0-9_+-]*\)-version">\([^<]*\)<.*$$/\1_VERSION := \2 #/p' \ - '$(TOP_DIR)/doc/index.html' \ + '$(TOP_DIR)/index.html' \ ))) include $(TOP_DIR)/src/*.mk @@ -204,9 +204,9 @@ $(if $(filter $(2),$($(1)_VERSION)), $(info . $(1) $(2)), $(info NEW $(1) $($(1)_VERSION) --> $(2)) - $(SED) -i 's/\( id="$(1)-version"\)>[^<]*/\1>$(2)/' '$(TOP_DIR)/doc/index.html' + $(SED) -i 's/\( id="$(1)-version"\)>[^<]*/\1>$(2)/' '$(TOP_DIR)/index.html' $(MAKE) -f '$(MAKEFILE)' 'update-checksum-$(1)' \ - || { $(SED) -i 's/\( id="$(1)-version"\)>[^<]*/\1>$($(1)_VERSION)/' '$(TOP_DIR)/doc/index.html'; \ + || { $(SED) -i 's/\( id="$(1)-version"\)>[^<]*/\1>$($(1)_VERSION)/' '$(TOP_DIR)/index.html'; \ exit 1; })), $(error Unable to update version number of package $(1))) @@ -224,9 +224,9 @@ mkdir -p '$(DIST_DIR)' mkdir '$(DIST_DIR)/mxe' mkdir '$(DIST_DIR)/mxe/doc' - $(SED) 's,\(\)[^<]*\(\),\1$(TARGET)\2,g' '$(TOP_DIR)/doc/index.html' \ + $(SED) 's,\(\)[^<]*\(\),\1$(TARGET)\2,g' '$(TOP_DIR)/index.html' \ | $(SED) 's,\(\)[^<]*\(\),\1$(subst -,_,$(TARGET))\2,g' \ - >'$(DIST_DIR)/mxe/doc/index.html' + >'$(DIST_DIR)/mxe/index.html' cp -p '$(TOP_DIR)/doc'/screenshot-* '$(DIST_DIR)/mxe/doc/' @echo @echo 'Upload will start in 5 seconds. Last chance to cancel! (Ctrl+C)' diff -r 8474fcb3e1b5 -r 99516e73b368 doc/index.html --- a/doc/index.html Thu Mar 29 12:10:58 2012 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2770 +0,0 @@ - - - - - - - MXE (M cross environment) - - - - - - - - -
-

Introduction

- -

- MXE (M cross environment) is a Makefile that - compiles a cross compiler and cross compiles - many free libraries such as SDL and Qt. Thus, - it provides a nice cross compiling environment - for various target platforms, which -

- - -
- -
-

Screenshots

- -

- Cross compiling - 4tH: -

- 4th-compile - -

- and running it: -

- 4th-run -
- -
-

Tutorial

- -

Step 1: Download and Unpack

- -

- First, you should ensure that your system meets - MXE's - requirements. - You will almost certainly have to install some stuff. -

- -

- When everything is fine, download the - current stable version: -

-
git clone -b stable https://github.com/mxe/mxe.git
- -

- If you don't mind installing it in your home directory, - just skip the following step and go straight to step 3. -

- -

Step 2: System-wide Installation (optional)

- -

- Now you should save any previous installation - of the MXE. - Assuming you've installed it under - /opt/mxe (any other directory will do as well), - you should execute the following commands: -

-
su
-mv /opt/mxe /opt/mxe.old
-exit
- -

- Then you need to transfer the entire directory to its definitive location. - We will assume again you use /opt/mxe, - but feel free to use any other directory if you like. -

-
su
-mv mxe /opt/mxe
-exit
- -

- We're almost done. - Just change to your newly created directory and get going: -

-
cd /opt/mxe
- -

Step 3: Build MXE

- -

- Enter the directory where you've downloaded the MXE. - Now it depends on what you actually want – or need. -

- -

- If you choose to enter: -

-
make
-

- you're in for a long wait, - because it compiles - a lot of packages. - On the other hand it doesn't require any intervention, - so you're free to do whatever you like - – like watch a movie or go for a night on the town. - When it's done you'll find that you've installed - a very capable Win32 cross compiler onto your system. -

- -

- If you only need the most basic tools you can also use: -

-
make gcc
-

- and add any additional packages you need later on. - You can also supply a host of packages on the - command line, - e.g.: -

-
make gtk lua libidn
-

- You'll always end up with a consistent cross compiling environment. -

- -

- After you're done it just needs a little post-installation. -

- -

Step 4: Environment Variables

- -

- Edit your .bashrc script in order to change $PATH: -

-
export PATH=/where MXE is installed/usr/bin:$PATH
- -

- In case you are using custom $PKG_CONFIG_PATH entries, - you can add separate entries for cross builds: -

-
export PKG_CONFIG_PATH="entries for native builds"
-
export PKG_CONFIG_PATH_i686_pc_mingw32="entries for MXE builds"
-

- Remember to use i686-pc-mingw32-pkg-config - instead of pkg-config for cross builds. - The Autotools do that automatically for you. -

- -

- Note that any other compiler related environment variables - (like $CC, $LDFLAGS, etc.) - may spoil your compiling pleasure, - so be sure to delete or disable those. -

- -

- Congratulations! - You're ready to cross compile anything you like. -

- -

Step 5a: Cross compile your Project (Autotools)

- -

- If you use the - Autotools, - all you have to do is: -

-
./configure --host=i686-pc-mingw32
-make
- -

- If you build a library, you might also want to enforce a static build: -

-
./configure --host=i686-pc-mingw32 --enable-static --disable-shared
-make
- -

- Don't worry about a warning like this: -

-
configure: WARNING: If you wanted to set the --build type, don't use --host.
-If a cross compiler is detected then cross compile mode will be used.
-

- Everything will be just fine. -

- -

Step 5b: Cross compile your Project (CMake)

- -

- If you have a - CMake project, - you can use the provided toolchain file: -

-
cmake ... -DCMAKE_TOOLCHAIN_FILE=/where MXE is installed/usr/i686-pc-mingw32/share/cmake/mingw-cross-env-conf.cmake
- -

Step 5c: Cross compile your Project (Qt)

- -

- If you have a - Qt application, - all you have to do is: -

-
i686-pc-mingw32-qmake
-make
-

- If you are using Qt plugins - such as the svg or ico image handlers, - you should also have a look at the - Qt documentation about static plugins. -

-

- Note the sql drivers (-qt-sql-*) - and the image handlers for jpeg, tiff, gif and mng - are built-in, not plugins. -

- -

Step 5d: Cross compile your Project (Makefile)

- -

- If you have a handwritten Makefile, - you probably will have to make a few adjustments to it: -

-
CC=$(CROSS)gcc
-LD=$(CROSS)ld
-AR=$(CROSS)ar
-PKG_CONFIG=$(CROSS)pkg-config
-

- You may have to add a few others, depending on your project. -

- -

- Then, all you have to do is: -

-
make CROSS=i686-pc-mingw32-
-

- That's it! -

- -

Step 5e: Cross compile your Project (OSG)

- -

- Using static OpenSceneGraph libraries requires a few changes to your source. - The graphics subsystem and all plugins required by your application must be - referenced explicitly. Use a code block like the following: -

-
#ifdef OSG_LIBRARY_STATIC
-USE_GRAPHICSWINDOW()
-USE_OSGPLUGIN(<plugin1>)
-USE_OSGPLUGIN(<plugin2>)
-...
-#endif
-

- Look at examples/osgstaticviewer/osgstaticviewer.cpp in the - OpenSceneGraph source distribution for an example. This example can be - compiled with the following command: -

-
i686-pc-mingw32-g++ \
-    -o osgstaticviewer.exe examples/osgstaticviewer/osgstaticviewer.cpp \
-    `i686-pc-mingw32-pkg-config --cflags openscenegraph-osgViewer openscenegraph-osgPlugins` \
-    `i686-pc-mingw32-pkg-config --libs openscenegraph-osgViewer openscenegraph-osgPlugins`
-

- The i686-pc-mingw32-pkg-config command from MXE will - automatically add -DOSG_LIBRARY_STATIC to your compiler flags. -

- -

Further Steps

- -

- If you need further assistance, - feel free to join the - project mailing list - where you'll get in touch with - the MXE developers - and other users. -

-
- -
-
-
-

Download

- -

- To obtain the current stable version, run: -

- -
git clone -b stable https://github.com/mxe/mxe.git
- -

- The development version can be obtained by: -

- -
git clone -b master https://github.com/mxe/mxe.git
- -

- To retrieve updates, run: -

- -
git pull
- -

- You can also browse the - web repository. -

- -

- In addition, - feel free to join the - project mailing list - and to propose new packages. -

- -

- For the sake of simplicity, there are just two - branches, "master" and "stable". Although it might - seem obvious, here's an overview of the types of - changes that go into each branch: -

- - -
- -
-

Requirements

- -

- Mingw-cross-env requires a recent Unix system where - all components as stated in the table below - are installed. - Detailed instructions are available for: -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Autoconf≥ 2.64
Automake≥ 1.10
Bash
Bison
Bzip2
CMake≥ 2.8.0
Flex≥ 2.5.31
GCC (gcc, g++)
Git≥ 1.7
GNU Gettext
GNU Make≥ 3.81
GNU Sed
Intltool≥ 0.40
LibC for 32-bit
Libtool≥ 2.2
OpenSSL-dev
Patch
Perl
Perl XML::Parser
Pkg-config≥ 0.16
SCons≥ 0.98
UnZip
Wget
XZ Utils
Yasm
- -

Debian (GNU/kFreeBSD & GNU/Linux)

- - -
aptitude install -R autoconf automake bash bison bzip2 \
-                    cmake flex gettext git g++ intltool \
-                    libtool libltdl-dev openssl libssl-dev \
-                    libxml-parser-perl make patch perl \
-                    pkg-config scons sed unzip wget \
-                    xz-utils yasm
- -

- On 64-bit Debian, install also: -

-
aptitude install -R g++-multilib
- -

Fedora

- - -
yum install autoconf automake bash bison bzip2 cmake \
-            flex gcc-c++ gettext git intltool make sed \
-            libtool openssl-devel patch perl pkgconfig \
-            scons yasm unzip wget xz
- -

- On 64-bit Fedora, - there are open issues with the NSIS package. -

- -

FreeBSD

- - -
pkg_add -r automake111 autoconf268 bash bison cmake \
-           flex gettext git gmake gsed intltool libtool \
-           openssl patch perl p5-XML-Parser pkg-config \
-           scons unzip wget yasm
- -

- Ensure that /usr/local/bin precedes /usr/bin in your $PATH: -

-

- For C style shells, edit .cshrc -

-
setenv PATH /usr/local/bin:$PATH
-

- For Bourne shells, edit .profile -

-
export PATH = /usr/local/bin:$PATH
-

- On 64-bit FreeBSD, - there are open issues with the NSIS package. -

- -

Frugalware

- - -
pacman-g2 -S autoconf automake bash bzip2 bison cmake \
-             flex gcc gettext git intltool make sed libtool \
-             openssl patch perl perl-xml-parser pkgconfig \
-             scons unzip wget xz xz-lzma yasm
- -

- On 64-bit Frugalware, - there are open issues with the NSIS package. -

- -

Gentoo

- - -
emerge sys-devel/autoconf sys-devel/automake \
-       app-shells/bash sys-devel/bison app-arch/bzip2 \
-       dev-util/cmake sys-devel/flex sys-devel/gcc \
-       sys-devel/gettext dev-vcs/git \
-       dev-util/intltool sys-devel/make sys-apps/sed \
-       sys-devel/libtool dev-libs/openssl sys-devel/patch \
-       dev-lang/perl dev-perl/XML-Parser \
-       dev-util/pkgconfig dev-util/scons app-arch/unzip \
-       net-misc/wget app-arch/xz-utils dev-lang/yasm
- -

Mac OS X

- -

- Install - Xcode 4 - and - MacPorts, - then run: -

- -
sudo port install autoconf automake bison cmake flex \
-                  gettext git-core gsed intltool libtool \
-                  openssl p5-xml-parser pkgconfig scons \
-                  wget xz yasm
-

- Mac OS X versions ≤ 10.6 are no longer supported. -

- -

openSUSE

- - -
zypper install -R autoconf automake bash bison bzip2 \
-                  cmake flex gcc-c++ gettext-tools git \
-                  intltool libtool make openssl \
-                  libopenssl-devel patch perl \
-                  perl-XML-Parser pkg-config scons \
-                  sed unzip wget xz yasm
- -

- On 64-bit openSUSE, install also: -

-
zypper install -R gcc-32bit glibc-devel-32bit \
-                  libgcc46-32bit libgomp46-32bit \
-                  libstdc++46-devel-32bit
- -

Open Issues with NSIS

- -

- The NSIS package contains some native tools that are - currently 32-bit only. In order to build these on a - 64-bit system, multi-lib support must be enabled in the - compiler toolchain. However, not all operating systems - support this. -

-

- Since no other packages depend on it, the remainder of - MXE can be successfully built by simply - removing the package: -

-
rm where MXE is downloaded/src/nsis.mk
-
- -
-

Usage

- -

- All build commands also download the packages if necessary. -

-

- In a BSD userland, substitute "make" with "gmake". -

-
- -
make
- -
- build all packages, - non-parallel -
- -
make gcc
- -
- build a minimal useful set of packages, - i.e. the cross compilers - and the most basic packages, - non-parallel -
- -
make foo bar
- -
- build packages "foo", "bar" and their dependencies, - non-parallel -
- -
make foo bar -j 4 JOBS=2
- -
- build packages "foo", "bar" and their dependencies, - where up to 4 packages are build in parallel, - each with up to 2 compiler processes running in parallel -
- -
make check-requirements
- -
- check most of the - requirements - if necessary - – executed automatically - before building packages -
- -
make download
- -
- download all packages, - non-parallel, - such that subsequent builds work without internet access -
- -
make download-foo download-bar
- -
- download packages "foo", "bar" and their dependencies, - non-parallel -
- -
make download-foo download-bar -j 4
- -
- download packages "foo", "bar" and their dependencies, - where up to 4 packages are downloaded in parallel -
- -
make clean
- -
- remove all package builds - – use with caution! -
- -
make clean-pkg
- -
- remove all unused package files, - handy after a successful update -
- -
make update
- -
- for internal use only! - – - update the version numbers of all packages, - download the new versions and note their checksums -
- -
make dist
- -
- build a source distribution tarball and the website -
- -
-
- -
-

List of Packages

- -

- See something missing? Feel free to create a new package. -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
agg2.5
atk2.2.0
atkmm2.22.6
aubio0.3.2
bfd2.22
binutils2.22
blas1
boost1.49.0
bzip21.0.6
cairo1.10.2
cairomm1.10.0
cblas1
cgal4.0
cppunit1.12.1
cunit2.1-2
curl7.25.0
dbus1.5.10
dcmtk3.6.0
devil1.7.8
eigen2.0.17
exiv20.22
expat2.1.0
faad22.7
ffmpeg0.10.2
fftw3.3.1
file5.11
flac1.2.1
fltk1.3.0
fontconfig2.9.0
freeglut2.8.0
freeimage3.15.3
freetds0.91
freetype2.4.9
fribidi0.19.2
ftgl2.1.3~rc5
gc7.1
gcc4.7.0
gcc-gmp5.0.4
gcc-mpc0.9
gcc-mpfr3.1.0
gd2.0.35
gdal1.9.0
gdb7.4
gdk-pixbuf2.22.1
geos3.3.2
gettext0.18.1.1
giflib4.1.6
glew1.7.0
glib2.28.8
glibmm2.28.2
gmp5.0.4
gnutls3.0.17
graphicsmagick1.3.14
gsl1.14
gsoap2.8.8
gst-plugins-base0.10.35
gst-plugins-good0.10.30
gstreamer0.10.35
gta1.0.2
gtk22.24.4
gtkglext1.2.0
gtkglextmm1.2.0
gtkmm22.24.0
gtksourceview2.10.5
gtksourceviewmm22.10.1
guile1.8.7
id3lib3.8.3
ilmbase1.0.2
imagemagick6.7.2-7
jasper1.900.1
jpeg8d
json-c0.9
lame3.99
lapack3.4.0
lcms2.3
lcms11.19
libarchive3.0.3
libass0.10.0
libcroco0.6.2
libdnet1.11
libevent2.0.18
libffi3.0.10
libgcrypt1.5.0
libgee0.5.0
libgeotiff1.3.0
libgnurx2.5.1
libgomp4.7.0
libgpg_error1.10
libgsasl1.6.1
libgsf1.14.22
libharu2.2.1
libiberty2.22
libical0.48
libiconv1.14
libidn1.24
libircclient1.6
liblo0.26
libmad0.15.1b
libmikmod3.2.0-beta2
libmng1.0.10
libntlm1.3
liboauth0.9.6
libodbc++0.2.5
liboil0.3.17
libpano132.9.18_rc2
libpaper1.1.24+nmu1
libpng1.5.9
librsvg2.36.0
libsamplerate0.1.8
libshout2.2.2
libsigc++2.2.10
libsndfile1.0.25
libssh21.4.0
libtool2.4.2
libunistring0.9.3
libusb1.2.6.0
libvpx1.0.0
libxml++2.35.2
libxml22.7.8
libxslt1.1.26
llvm3.0
lua5.1.4
lzo2.06
matio1.3.4
mingw-utils0.4-1
mingwrt3.20
mpfr3.1.0
muparser1.34
mxml2.7
nettle2.4
nsis2.46
ogg1.3.0
old0.17
openal1.13
opencore-amr0.1.2
opencsg1.3.2
openexr1.7.0
openscenegraph3.0.1
openssl1.0.1
pango1.29.3
pangomm2.28.2
pcre8.30
pdcurses3.4
pdflib_lite7.0.5
pfstools1.8.5
physfs2.0.2
pixman0.25.2
plotmm0.1.2
plotutils2.6
poco1.4.3p1
popt1.16
portaudio19_20071207
postgresql9.1.3
proj4.8.0
pthreads2-8-0
qjson0.7.1
qt4.8.0
qwtplot3d0.2.7
readline6.2
sdl1.2.15
sdl_image1.2.12
sdl_mixer1.2.12
sdl_net1.2.8
sdl_pango0.1.2
sdl_sound1.0.3
sdl_ttf2.0.11
smpeg0.4.5+cvs20030824
speex1.2rc1
sqlite3071100
suitesparse3.7.0
t4k_common0.1.1
taglib1.7.1
theora1.1.1
tiff4.0.1
tinyxml2.6.2
tre0.8.0
vigra1.8.0
vmime0.9.1
vorbis1.3.2
vtk5.8.0
w32api3.17
winpcap4_1_2
wt3.2.0
wxwidgets2.8.12
x26420111018-2245
xerces3.1.1
xine-lib1.1.20.1
xmlwrapp0.6.2
xvidcore1.3.2
xz5.0.3
zlib1.2.6
zziplib0.13.59
-
- -
-

Guidelines for Creating Packages

- -
    -
  1. -

    - The package should be a - free - software - library - that is really used by one of your applications. -

    - -

    - BTW, we're always curious about the applications people are porting. - We maintain a - list of projects - which use MXE. - No matter whether your project is free or proprietary - – as long as it has its own website, - we'd be happy to link to it. -

    - -

    - Also, feel free to link to us. :-) -

    -
  2. - -
  3. -

    - Grep through the src/*.mk files - to find a project that is most similar to yours. - (Really, grep is your friend here.) -

    - -

    - For instance, - when adding a GNU library, - you should take a package like - gettext.mk - or - libiconv.mk - as the base of your work. - When using a SourceForge project, - you could start with a copy of - xmlwrapp.mk. - And so on. -

    -
  4. - -
  5. -

    - Adjust the comments, - fill in the $(PKG)_* fields. -

    - -

    - Be especially careful with the $(PKG)_DEPS section. - The easiest way to get the dependencies right - is to start with a minimal setup. - That is, - initialize MXE with make gcc only, - then check whether your package builds successfully. -

    - -

    - Always list the dependency on gcc explicitly: -

    -
    $(PKG)_DEPS     := gcc ...
    -
  6. - -
  7. -

    - Write your $(PKG)_BUILD. - If your library has a ./configure script, - enable/disable all dependency libraries explicitly - via "--enable-*" and "--disable-*" options. -

    -
  8. - -
  9. -

    - You might also have to provide a patch for it. - In that case, have a look at other patches such as - sdl-2-fix-dinput.patch. - In particular, each patch file should be named as: -

    -
    PACKAGE-PATCHNUMBER-DESCRIPTION.patch
    -

    - and should start with: -

    -
    This file is part of MXE.
    -See doc/index.html for further information.
    -
    -This patch has been taken from:
    -https://...
    -

    - where the URL points to the - bugtracker entry, - mailing list entry or - website - you took the patch from. -

    - -

    - If you created the patch yourself, - please offer it to the upstream project first, - and point to that URL, - using the same wording: - "This patch has been taken from:". -

    - -

    - Depending on the feedback you get from the upstream project, - you might want to improve your patch. -

    -
  10. - -
  11. -

    - If you find some time, - please provide a minimal test program for it. - It should be - simple, - stand alone and - should work unmodified for many (all?) future versions of the library. - Test programs are named as: -

    -
    PACKAGE-test.c
    - or -
    PACKAGE-test.cpp
    -

    - depending on whether it is a C or C++ library. - To get a clue, - please have a look at existing test programs such as - sdl-test.c. -

    - -

    - At the very end of your *.mk file - you should build the test program in a generic way, - using strict compiler flags. - The last few lines of - sdl.mk - will give you a clue. -

    -
  12. - -
  13. -

    - You could also try to provide a $(PKG)_UPDATE section. - However, that requires some experience and "feeling" for it. - So it is perfectly okay if you leave the $(PKG)_UPDATE section empty. - We'll fill that in for you. - It's a funny exercise. -

    -
  14. - -
  15. -

    - Check that you don't have "dirty stuff" in your *.mk files, - such as TAB characters or trailing spaces at lines endings. - Have a look at random *.mk files - to get a feeling for the coding style. -

    - -

    - The same holds for your test program. -

    - -

    - However, patch files should always appear - in the same coding style as the files they are patching. -

    - -

    - Finally, in your $(PKG)_BUILD section, - please check that you use our portability variables: -

    - - - - - - - - -
    bash $(SHELL)
    install $(INSTALL)
    libtool $(LIBTOOL)
    libtoolize$(LIBTOOLIZE)
    make $(MAKE)
    patch $(PATCH)
    sed $(SED)
    -
  16. - -
  17. -

    - Check whether everything runs fine. - If you have some trouble, - don't hesitate to ask on the - mailing list, - providing your *.mk file so far. -

    -
  18. - -
  19. -

    - Propose your final *.mk file to the mailing list. - Don't forget to tell us - if there are some pieces in your *.mk file - you feel unsure about. - We'll then have a specific look at those parts, - which avoids trouble for you and us in the future. -

    -
  20. -
-
- -
- - - - -

(contact via the - project mailing list)

- -

- Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject - to the following conditions: -

- -

- The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. -

- -

- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -

-
- -
-

History

- -
- -
2012-xx-xx – Release 2.22
-
-

- Download | - Changelog -

- -

- The project has been - renamed - from mingw-cross-env to MXE (M cross environment). -

- -

- The release tarballs have been replaced with a Git checkout. -

- -

- Most packages were updated to their latest version. -

- -

- New packages are supported: - agg, cgal, eigen, file, gta, json-c, libgnurx, libharu, - libircclient, libssh2, libxml++, llvm, lzo, mpfr, nettle, - opencsg, qjson, qwtplot3d, vtk, and wt. -

-
- -
2011-06-07 – Release 2.21
-
-

- Download | - Changelog -

- -

- Minor bugfixes in several packages. -

- -

- Almost all packages are updated to their latest version. -

- -

- Packages gtkmm and gtksourceviewmm have been renamed to gtkmm2 and gtksourceviewmm2. -

- -

- New packages are supported: - libass, poco, and t4k_common. -

-
- -
2011-04-05 – Release 2.20
-
-

- Download | - Changelog -

- -

- This release fixes a download error caused by the pixman project - (a sudden change of their URL scheme without proper redirects). - That sort of thing should never happen! -

-
- -
2011-03-19 – Release 2.19
-
-

- Download | - Changelog -

- -

- The download mechanisms are improved. -

- -

- A CMake toolchain file is provided - to simplify cross-compiling projects which use CMake. -

- -

- Support for Debian/Lenny is dropped. -

- -

- Package gtk is renamed to gtk2. -

- -

- Almost all packages are updated to their latest version. -

- -

- New packages are supported: - dbus, graphicsmagick, libical, liboauth, physfs, and vigra. -

- -

- Note for boost::filesystem users: - Version 3 is a major revision - and now the default in 1.46. -

-
- -
2010-12-15 – Release 2.18
-
-

- Download | - Changelog -

- -

- This release fixes a checksum error caused by the atkmm project - (a sudden change of their current source tarball). - That sort of thing should never happen! -

-
- -
2010-12-11 – Release 2.17
-
-

- Download | - Changelog -

- -

- This release provides some improvements of the build system - such as an automatic check for most of the requirements. -

- -

- All packages are updated to their latest version. -

- -

- New packages are supported: - bfd, blas, cblas, dcmtk, ftgl, lapack, lcms1, - mingw-utils, mxml, suitesparse and tinyxml. -

-
- -
2010-10-27 – Release 2.16
-
-

- Download | - Changelog -

- -

- This release provides lots of improvements to - the build system as well as the documentation. -

- -

- Support for OpenSolaris is dropped. -

- -

- Almost all packages are updated to their latest version. -

- -

- Many new packages are supported: - atkmm, cairomm, cunit, faac, faad2, ffmpeg, gdk-pixbuf, glibmm, - gtkglextmm, gtkmm, gtksourceview, gtksourceviewmm, imagemagick, - lame, libiberty, libsigc++, libvpx, matio, openal, opencore-amr, - pangomm, pfstools, plotmm, sdl_sound and x264. -

-
- -
2010-06-16 – Release 2.15
-
-

- Download | - Changelog -

- -

- This release fixes download errors caused by the Qt project - (a sudden change of their current source tarball). -

- -

- Almost all packages are updated to their latest version. -

-
- -
2010-06-08 – Release 2.14
-
-

- Download | - Changelog -

- -

- This release fixes download errors caused by the MinGW project - (a sudden change of their URL scheme without proper redirects). - That sort of thing should never happen! -

- -

- Almost all packages are updated to their latest version. -

- -

- New packages are supported: - libarchive, libgee and xvidcore. -

-
- -
2010-05-31 – Release 2.13
-
-

- Download | - Changelog -

- -

- This release switches back from TDM to the official GCC, - thus supporting the current GCC 4.5. -

- -

- The set of DirectX headers is improved and more complete. -

- -

- The deadlock issues with Pthreads-w32 are fixed. -

- -

- A static build of GDB is provided, - i.e. a standalone "gdb.exe" - that doesn't require any extra DLLs. -

- -

- More packages are backed by test programs. -

- -

- Many "sed hacks" are replaced by proper portability patches. -

- -

- Almost all packages are updated to their latest version. -

- -

- Many new packages are supported: - fribidi, gc, gdb, gmp, gsl, gst-plugins-base, gst-plugins-good, - gstreamer, gtkglext, guile, libcroco, libffi, liboil, libpaper, - libshout, libunistring and xine-lib. -

-
- -
2010-02-21 – Release 2.12
-
-

- Download | - Changelog -

- -

- This release fixes some minor build issues, - and contains a first small set of test programs - to check the package builds. -

- -

- The build rules are simplified - by calling generators like Autotools and Flex, - instead of patching the generated files. -

- -

- Almost all packages are updated to their latest version. -

- -

- Many new packages are supported: - aubio, devil, directx, exiv2, fftw, freeimage, gsoap, - id3lib, liblo, libpano13, librsvg, libsamplerate, - muparser, openscenegraph, portaudio and sdl_pango. -

-
- -
2010-02-20 – Release 2.11
-
-

- Download | - Changelog -

- -

- This release contains a packaging bug. - Please use release 2.12 instead. -

-
- -
2009-12-23 – Release 2.10
-
-

- Download | - Changelog -

- -

- This release adds support for many new packages: - flac, libmad, libsndfile, sdl_net, speex, postgresql, - freetds, openssl, plotutils, taglib, lcms, freeglut, - xerces and zziplib. -

- -

- Almost all packages are updated to their latest version. -

- -

- In addition to the libraries - some command line tools such as psql.exe are built, too. -

- -

- The placements of logfiles, as well as many other build details, have been improved. -

-
- -
2009-10-24 – Release 2.9
-
-

- Download | - Changelog -

- -

- This release adds support for Qt, VMime and libmng. -

- -

- The target triplet is updated to i686-pc-mingw32. -

- -

- OpenMP support is enabled in GCC. -

- -

- Almost all packages are updated to their latest version. -

-
- -
2009-09-11 – Release 2.8
-
-

- Download | - Changelog -

- -

- This release comes with a better look & feel - by providing a highlevel overview of the build process. -

- -

- The detailed build messages are stored into - separate log files for each package, - so parallel builds don't intermix them anymore. -

- -

- The download URLs of SourceForge packages - are adjusted to ensure that - the selected SourceForge mirror is really used - and not circumvalented via HTTP redirects to other mirrors. -

- -

- Almost all packages are updated to their latest version. -

- -

- The whole mingw-cross-env project has moved to - Savannah. - So all URIs have changed, - but the old URIs - redirect to the new locations seamlessly. -

- -

- Everyone is invited to join the freshly created - project mailing list. -

-
- -
2009-08-11 – Release 2.7
-
-

- Download | - Changelog -

- -

- This release - provides an improved version recognition - for SourceForge packages. - SourceForge changed their page layout - in a way that makes it much harder - to identify the current version of a package. -

- -

- Additionally, - almost all packages are updated to their latest version. -

-
- -
2009-06-19 – Release 2.6
-
-

- Download | - Changelog -

- -

- This release contains some portability fixes - which allow it to run on a wider range of systems - such as Frugalware. -

- -

- The documentation and website are completely revised. -

- -

- New packages such as - CppUnit, libUsb, NSIS, Popt, SQLite and Theora - are supported. -

- -

- Almost all packages are updated to their latest version. -

- -

- A new command "make download" is implemented. -

-
- -
2009-04-06 – Release 2.5
-
-

- Download | - Changelog -

- -

- This release fixes a download error caused by the MinGW project. - They suddenly changed the names of their source tarballs. - That sort of thing should never happen! -

- -

- This release also contains some bugfixes - which allow it to run on a wider range of systems. -

- -

- All downloaded files are now - verified by their SHA-1 checksums. -

- -

- New versions of various packages are supported. -

-
- -
2009-03-08 – Release 2.4
-
-

- Download | - Changelog -

- -

- This release provides many new libraries such as - wxWidgets, GTK+ and OpenEXR. -

- -

- In addition, new versions of various packages - are supported. -

-
- -
2009-02-09 – Release 2.3
-
-

- Download | - Changelog -

- -

- This release fixes some serious build problems on FreeBSD and MacOS-X. -

- -

- The Makefile has a new target "clean-pkg" - and allows to be called from a separate build directory - via "make -f .../Makefile". -

- -

- Some new versions of the packages are supported, - especially GCC-4.3 by switching from MinGW GCC to - TDM-GCC. -

-
- -
2009-01-31 – Release 2.2
-
-

- Download | - Changelog -

- -

- This release fixes some minor build problems. -

- -

- It also supports some new packages and - some newer versions of the already supported packages. -

- -

- Parallelization is now disabled by default. -

-
- -
2008-12-13 – Release 2.1
-
-

- Download | - Changelog -

- -

- This release fixes a download error caused by the GDAL project. - They suddenly changed their download URLs. - That sort of thing should never happen! -

- -

- In addition, some newer versions of various packages are supported. -

- -

- There is also a small compatibility fix for OS X. -

-
- -
2008-11-10 – Release 2.0
-
-

- Download | - Changelog -

- -

- The shell script has been rewritten as Makefile - and supports partial builds and parallel builds. -

- -

- As usual, - this release also supports some new packages and - some newer versions of the already supported packages. -

-
- -
2008-01-11 – Release 1.4
-
-

- Download | - Changelog -

- -

- This release now includes a tutorial by Hans Bezemer - and has improved compile options of FLTK. - As usual, it supports some newer versions of the libraries. -

- -

- At the request of its author, - libowfat is no longer supported from this release on. -

- -

- The script now uses a specific SourceForge mirror - instead of randomly chosen ones, - because the download phase - often stumbled on some very slow mirrors. -

-
- -
2007-12-23 – Release 1.3
-
-

- Download | - Changelog -

- -

- A sudden change in the download URLs of GEOS - made the automatic download fail. - Such changes should never happen! - But it happened, - and this quick release is an attempt to limit the damage. -

- -

- This release also supports some newer versions of the libraries - including support for fontconfig-2.5.0. -

-
- -
2007-12-13 – Release 1.2
-
-

- Download | - Changelog -

- -

- This release is a switch from gcc-3 to gcc-4. - It also supports a new library and - some newer versions of the already supported libraries. -

-
- -
2007-07-24 – Release 1.1
-
-

- Download | - Changelog -

- -

- This release is the result of the public attention the release 1.0 got. - It contains many improvements suggested by its first users, - and adds support for many new libraries. -

- -

- Thanks to Rocco Rutte who contributed many code snippets. -

-
- -
2007-06-19 – Release 1.0
-
-

- Download | - Changelog -

- -

- This first release has been created in a 7-day-sprint. -

-
- -
2007-06-12 – Project start
-
-
- -
-
- -
-

See also

- -

This project

- - - -

Related projects

- - - -

Related articles

- - -
- -
-

Projects which use MXE

- - -
- - - diff -r 8474fcb3e1b5 -r 99516e73b368 index.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/index.html Thu Mar 29 12:14:15 2012 +0200 @@ -0,0 +1,2770 @@ + + + + + + + MXE (M cross environment) + + + + + + + + +
+

Introduction

+ +

+ MXE (M cross environment) is a Makefile that + compiles a cross compiler and cross compiles + many free libraries such as SDL and Qt. Thus, + it provides a nice cross compiling environment + for various target platforms, which +

+ + +
+ +
+

Screenshots

+ +

+ Cross compiling + 4tH: +

+ 4th-compile + +

+ and running it: +

+ 4th-run +
+ +
+

Tutorial

+ +

Step 1: Download and Unpack

+ +

+ First, you should ensure that your system meets + MXE's + requirements. + You will almost certainly have to install some stuff. +

+ +

+ When everything is fine, download the + current stable version: +

+
git clone -b stable https://github.com/mxe/mxe.git
+ +

+ If you don't mind installing it in your home directory, + just skip the following step and go straight to step 3. +

+ +

Step 2: System-wide Installation (optional)

+ +

+ Now you should save any previous installation + of the MXE. + Assuming you've installed it under + /opt/mxe (any other directory will do as well), + you should execute the following commands: +

+
su
+mv /opt/mxe /opt/mxe.old
+exit
+ +

+ Then you need to transfer the entire directory to its definitive location. + We will assume again you use /opt/mxe, + but feel free to use any other directory if you like. +

+
su
+mv mxe /opt/mxe
+exit
+ +

+ We're almost done. + Just change to your newly created directory and get going: +

+
cd /opt/mxe
+ +

Step 3: Build MXE

+ +

+ Enter the directory where you've downloaded the MXE. + Now it depends on what you actually want – or need. +

+ +

+ If you choose to enter: +

+
make
+

+ you're in for a long wait, + because it compiles + a lot of packages. + On the other hand it doesn't require any intervention, + so you're free to do whatever you like + – like watch a movie or go for a night on the town. + When it's done you'll find that you've installed + a very capable Win32 cross compiler onto your system. +

+ +

+ If you only need the most basic tools you can also use: +

+
make gcc
+

+ and add any additional packages you need later on. + You can also supply a host of packages on the + command line, + e.g.: +

+
make gtk lua libidn
+

+ You'll always end up with a consistent cross compiling environment. +

+ +

+ After you're done it just needs a little post-installation. +

+ +

Step 4: Environment Variables

+ +

+ Edit your .bashrc script in order to change $PATH: +

+
export PATH=/where MXE is installed/usr/bin:$PATH
+ +

+ In case you are using custom $PKG_CONFIG_PATH entries, + you can add separate entries for cross builds: +

+
export PKG_CONFIG_PATH="entries for native builds"
+
export PKG_CONFIG_PATH_i686_pc_mingw32="entries for MXE builds"
+

+ Remember to use i686-pc-mingw32-pkg-config + instead of pkg-config for cross builds. + The Autotools do that automatically for you. +

+ +

+ Note that any other compiler related environment variables + (like $CC, $LDFLAGS, etc.) + may spoil your compiling pleasure, + so be sure to delete or disable those. +

+ +

+ Congratulations! + You're ready to cross compile anything you like. +

+ +

Step 5a: Cross compile your Project (Autotools)

+ +

+ If you use the + Autotools, + all you have to do is: +

+
./configure --host=i686-pc-mingw32
+make
+ +

+ If you build a library, you might also want to enforce a static build: +

+
./configure --host=i686-pc-mingw32 --enable-static --disable-shared
+make
+ +

+ Don't worry about a warning like this: +

+
configure: WARNING: If you wanted to set the --build type, don't use --host.
+If a cross compiler is detected then cross compile mode will be used.
+

+ Everything will be just fine. +

+ +

Step 5b: Cross compile your Project (CMake)

+ +

+ If you have a + CMake project, + you can use the provided toolchain file: +

+
cmake ... -DCMAKE_TOOLCHAIN_FILE=/where MXE is installed/usr/i686-pc-mingw32/share/cmake/mingw-cross-env-conf.cmake
+ +

Step 5c: Cross compile your Project (Qt)

+ +

+ If you have a + Qt application, + all you have to do is: +

+
i686-pc-mingw32-qmake
+make
+

+ If you are using Qt plugins + such as the svg or ico image handlers, + you should also have a look at the + Qt documentation about static plugins. +

+

+ Note the sql drivers (-qt-sql-*) + and the image handlers for jpeg, tiff, gif and mng + are built-in, not plugins. +

+ +

Step 5d: Cross compile your Project (Makefile)

+ +

+ If you have a handwritten Makefile, + you probably will have to make a few adjustments to it: +

+
CC=$(CROSS)gcc
+LD=$(CROSS)ld
+AR=$(CROSS)ar
+PKG_CONFIG=$(CROSS)pkg-config
+

+ You may have to add a few others, depending on your project. +

+ +

+ Then, all you have to do is: +

+
make CROSS=i686-pc-mingw32-
+

+ That's it! +

+ +

Step 5e: Cross compile your Project (OSG)

+ +

+ Using static OpenSceneGraph libraries requires a few changes to your source. + The graphics subsystem and all plugins required by your application must be + referenced explicitly. Use a code block like the following: +

+
#ifdef OSG_LIBRARY_STATIC
+USE_GRAPHICSWINDOW()
+USE_OSGPLUGIN(<plugin1>)
+USE_OSGPLUGIN(<plugin2>)
+...
+#endif
+

+ Look at examples/osgstaticviewer/osgstaticviewer.cpp in the + OpenSceneGraph source distribution for an example. This example can be + compiled with the following command: +

+
i686-pc-mingw32-g++ \
+    -o osgstaticviewer.exe examples/osgstaticviewer/osgstaticviewer.cpp \
+    `i686-pc-mingw32-pkg-config --cflags openscenegraph-osgViewer openscenegraph-osgPlugins` \
+    `i686-pc-mingw32-pkg-config --libs openscenegraph-osgViewer openscenegraph-osgPlugins`
+

+ The i686-pc-mingw32-pkg-config command from MXE will + automatically add -DOSG_LIBRARY_STATIC to your compiler flags. +

+ +

Further Steps

+ +

+ If you need further assistance, + feel free to join the + project mailing list + where you'll get in touch with + the MXE developers + and other users. +

+
+ +
+
+
+

Download

+ +

+ To obtain the current stable version, run: +

+ +
git clone -b stable https://github.com/mxe/mxe.git
+ +

+ The development version can be obtained by: +

+ +
git clone -b master https://github.com/mxe/mxe.git
+ +

+ To retrieve updates, run: +

+ +
git pull
+ +

+ You can also browse the + web repository. +

+ +

+ In addition, + feel free to join the + project mailing list + and to propose new packages. +

+ +

+ For the sake of simplicity, there are just two + branches, "master" and "stable". Although it might + seem obvious, here's an overview of the types of + changes that go into each branch: +

+ + +
+ +
+

Requirements

+ +

+ Mingw-cross-env requires a recent Unix system where + all components as stated in the table below + are installed. + Detailed instructions are available for: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Autoconf≥ 2.64
Automake≥ 1.10
Bash
Bison
Bzip2
CMake≥ 2.8.0
Flex≥ 2.5.31
GCC (gcc, g++)
Git≥ 1.7
GNU Gettext
GNU Make≥ 3.81
GNU Sed
Intltool≥ 0.40
LibC for 32-bit
Libtool≥ 2.2
OpenSSL-dev
Patch
Perl
Perl XML::Parser
Pkg-config≥ 0.16
SCons≥ 0.98
UnZip
Wget
XZ Utils
Yasm
+ +

Debian (GNU/kFreeBSD & GNU/Linux)

+ + +
aptitude install -R autoconf automake bash bison bzip2 \
+                    cmake flex gettext git g++ intltool \
+                    libtool libltdl-dev openssl libssl-dev \
+                    libxml-parser-perl make patch perl \
+                    pkg-config scons sed unzip wget \
+                    xz-utils yasm
+ +

+ On 64-bit Debian, install also: +

+
aptitude install -R g++-multilib
+ +

Fedora

+ + +
yum install autoconf automake bash bison bzip2 cmake \
+            flex gcc-c++ gettext git intltool make sed \
+            libtool openssl-devel patch perl pkgconfig \
+            scons yasm unzip wget xz
+ +

+ On 64-bit Fedora, + there are open issues with the NSIS package. +

+ +

FreeBSD

+ + +
pkg_add -r automake111 autoconf268 bash bison cmake \
+           flex gettext git gmake gsed intltool libtool \
+           openssl patch perl p5-XML-Parser pkg-config \
+           scons unzip wget yasm
+ +

+ Ensure that /usr/local/bin precedes /usr/bin in your $PATH: +

+

+ For C style shells, edit .cshrc +

+
setenv PATH /usr/local/bin:$PATH
+

+ For Bourne shells, edit .profile +

+
export PATH = /usr/local/bin:$PATH
+

+ On 64-bit FreeBSD, + there are open issues with the NSIS package. +

+ +

Frugalware

+ + +
pacman-g2 -S autoconf automake bash bzip2 bison cmake \
+             flex gcc gettext git intltool make sed libtool \
+             openssl patch perl perl-xml-parser pkgconfig \
+             scons unzip wget xz xz-lzma yasm
+ +

+ On 64-bit Frugalware, + there are open issues with the NSIS package. +

+ +

Gentoo

+ + +
emerge sys-devel/autoconf sys-devel/automake \
+       app-shells/bash sys-devel/bison app-arch/bzip2 \
+       dev-util/cmake sys-devel/flex sys-devel/gcc \
+       sys-devel/gettext dev-vcs/git \
+       dev-util/intltool sys-devel/make sys-apps/sed \
+       sys-devel/libtool dev-libs/openssl sys-devel/patch \
+       dev-lang/perl dev-perl/XML-Parser \
+       dev-util/pkgconfig dev-util/scons app-arch/unzip \
+       net-misc/wget app-arch/xz-utils dev-lang/yasm
+ +

Mac OS X

+ +

+ Install + Xcode 4 + and + MacPorts, + then run: +

+ +
sudo port install autoconf automake bison cmake flex \
+                  gettext git-core gsed intltool libtool \
+                  openssl p5-xml-parser pkgconfig scons \
+                  wget xz yasm
+

+ Mac OS X versions ≤ 10.6 are no longer supported. +

+ +

openSUSE

+ + +
zypper install -R autoconf automake bash bison bzip2 \
+                  cmake flex gcc-c++ gettext-tools git \
+                  intltool libtool make openssl \
+                  libopenssl-devel patch perl \
+                  perl-XML-Parser pkg-config scons \
+                  sed unzip wget xz yasm
+ +

+ On 64-bit openSUSE, install also: +

+
zypper install -R gcc-32bit glibc-devel-32bit \
+                  libgcc46-32bit libgomp46-32bit \
+                  libstdc++46-devel-32bit
+ +

Open Issues with NSIS

+ +

+ The NSIS package contains some native tools that are + currently 32-bit only. In order to build these on a + 64-bit system, multi-lib support must be enabled in the + compiler toolchain. However, not all operating systems + support this. +

+

+ Since no other packages depend on it, the remainder of + MXE can be successfully built by simply + removing the package: +

+
rm where MXE is downloaded/src/nsis.mk
+
+ +
+

Usage

+ +

+ All build commands also download the packages if necessary. +

+

+ In a BSD userland, substitute "make" with "gmake". +

+
+ +
make
+ +
+ build all packages, + non-parallel +
+ +
make gcc
+ +
+ build a minimal useful set of packages, + i.e. the cross compilers + and the most basic packages, + non-parallel +
+ +
make foo bar
+ +
+ build packages "foo", "bar" and their dependencies, + non-parallel +
+ +
make foo bar -j 4 JOBS=2
+ +
+ build packages "foo", "bar" and their dependencies, + where up to 4 packages are build in parallel, + each with up to 2 compiler processes running in parallel +
+ +
make check-requirements
+ +
+ check most of the + requirements + if necessary + – executed automatically + before building packages +
+ +
make download
+ +
+ download all packages, + non-parallel, + such that subsequent builds work without internet access +
+ +
make download-foo download-bar
+ +
+ download packages "foo", "bar" and their dependencies, + non-parallel +
+ +
make download-foo download-bar -j 4
+ +
+ download packages "foo", "bar" and their dependencies, + where up to 4 packages are downloaded in parallel +
+ +
make clean
+ +
+ remove all package builds + – use with caution! +
+ +
make clean-pkg
+ +
+ remove all unused package files, + handy after a successful update +
+ +
make update
+ +
+ for internal use only! + – + update the version numbers of all packages, + download the new versions and note their checksums +
+ +
make dist
+ +
+ build a source distribution tarball and the website +
+ +
+
+ +
+

List of Packages

+ +

+ See something missing? Feel free to create a new package. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
agg2.5
atk2.2.0
atkmm2.22.6
aubio0.3.2
bfd2.22
binutils2.22
blas1
boost1.49.0
bzip21.0.6
cairo1.10.2
cairomm1.10.0
cblas1
cgal4.0
cppunit1.12.1
cunit2.1-2
curl7.25.0
dbus1.5.10
dcmtk3.6.0
devil1.7.8
eigen2.0.17
exiv20.22
expat2.1.0
faad22.7
ffmpeg0.10.2
fftw3.3.1
file5.11
flac1.2.1
fltk1.3.0
fontconfig2.9.0
freeglut2.8.0
freeimage3.15.3
freetds0.91
freetype2.4.9
fribidi0.19.2
ftgl2.1.3~rc5
gc7.1
gcc4.7.0
gcc-gmp5.0.4
gcc-mpc0.9
gcc-mpfr3.1.0
gd2.0.35
gdal1.9.0
gdb7.4
gdk-pixbuf2.22.1
geos3.3.2
gettext0.18.1.1
giflib4.1.6
glew1.7.0
glib2.28.8
glibmm2.28.2
gmp5.0.4
gnutls3.0.17
graphicsmagick1.3.14
gsl1.14
gsoap2.8.8
gst-plugins-base0.10.35
gst-plugins-good0.10.30
gstreamer0.10.35
gta1.0.2
gtk22.24.4
gtkglext1.2.0
gtkglextmm1.2.0
gtkmm22.24.0
gtksourceview2.10.5
gtksourceviewmm22.10.1
guile1.8.7
id3lib3.8.3
ilmbase1.0.2
imagemagick6.7.2-7
jasper1.900.1
jpeg8d
json-c0.9
lame3.99
lapack3.4.0
lcms2.3
lcms11.19
libarchive3.0.3
libass0.10.0
libcroco0.6.2
libdnet1.11
libevent2.0.18
libffi3.0.10
libgcrypt1.5.0
libgee0.5.0
libgeotiff1.3.0
libgnurx2.5.1
libgomp4.7.0
libgpg_error1.10
libgsasl1.6.1
libgsf1.14.22
libharu2.2.1
libiberty2.22
libical0.48
libiconv1.14
libidn1.24
libircclient1.6
liblo0.26
libmad0.15.1b
libmikmod3.2.0-beta2
libmng1.0.10
libntlm1.3
liboauth0.9.6
libodbc++0.2.5
liboil0.3.17
libpano132.9.18_rc2
libpaper1.1.24+nmu1
libpng1.5.9
librsvg2.36.0
libsamplerate0.1.8
libshout2.2.2
libsigc++2.2.10
libsndfile1.0.25
libssh21.4.0
libtool2.4.2
libunistring0.9.3
libusb1.2.6.0
libvpx1.0.0
libxml++2.35.2
libxml22.7.8
libxslt1.1.26
llvm3.0
lua5.1.4
lzo2.06
matio1.3.4
mingw-utils0.4-1
mingwrt3.20
mpfr3.1.0
muparser1.34
mxml2.7
nettle2.4
nsis2.46
ogg1.3.0
old0.17
openal1.13
opencore-amr0.1.2
opencsg1.3.2
openexr1.7.0
openscenegraph3.0.1
openssl1.0.1
pango1.29.3
pangomm2.28.2
pcre8.30
pdcurses3.4
pdflib_lite7.0.5
pfstools1.8.5
physfs2.0.2
pixman0.25.2
plotmm0.1.2
plotutils2.6
poco1.4.3p1
popt1.16
portaudio19_20071207
postgresql9.1.3
proj4.8.0
pthreads2-8-0
qjson0.7.1
qt4.8.0
qwtplot3d0.2.7
readline6.2
sdl1.2.15
sdl_image1.2.12
sdl_mixer1.2.12
sdl_net1.2.8
sdl_pango0.1.2
sdl_sound1.0.3
sdl_ttf2.0.11
smpeg0.4.5+cvs20030824
speex1.2rc1
sqlite3071100
suitesparse3.7.0
t4k_common0.1.1
taglib1.7.1
theora1.1.1
tiff4.0.1
tinyxml2.6.2
tre0.8.0
vigra1.8.0
vmime0.9.1
vorbis1.3.2
vtk5.8.0
w32api3.17
winpcap4_1_2
wt3.2.0
wxwidgets2.8.12
x26420111018-2245
xerces3.1.1
xine-lib1.1.20.1
xmlwrapp0.6.2
xvidcore1.3.2
xz5.0.3
zlib1.2.6
zziplib0.13.59
+
+ +
+

Guidelines for Creating Packages

+ +
    +
  1. +

    + The package should be a + free + software + library + that is really used by one of your applications. +

    + +

    + BTW, we're always curious about the applications people are porting. + We maintain a + list of projects + which use MXE. + No matter whether your project is free or proprietary + – as long as it has its own website, + we'd be happy to link to it. +

    + +

    + Also, feel free to link to us. :-) +

    +
  2. + +
  3. +

    + Grep through the src/*.mk files + to find a project that is most similar to yours. + (Really, grep is your friend here.) +

    + +

    + For instance, + when adding a GNU library, + you should take a package like + gettext.mk + or + libiconv.mk + as the base of your work. + When using a SourceForge project, + you could start with a copy of + xmlwrapp.mk. + And so on. +

    +
  4. + +
  5. +

    + Adjust the comments, + fill in the $(PKG)_* fields. +

    + +

    + Be especially careful with the $(PKG)_DEPS section. + The easiest way to get the dependencies right + is to start with a minimal setup. + That is, + initialize MXE with make gcc only, + then check whether your package builds successfully. +

    + +

    + Always list the dependency on gcc explicitly: +

    +
    $(PKG)_DEPS     := gcc ...
    +
  6. + +
  7. +

    + Write your $(PKG)_BUILD. + If your library has a ./configure script, + enable/disable all dependency libraries explicitly + via "--enable-*" and "--disable-*" options. +

    +
  8. + +
  9. +

    + You might also have to provide a patch for it. + In that case, have a look at other patches such as + sdl-2-fix-dinput.patch. + In particular, each patch file should be named as: +

    +
    PACKAGE-PATCHNUMBER-DESCRIPTION.patch
    +

    + and should start with: +

    +
    This file is part of MXE.
    +See index.html for further information.
    +
    +This patch has been taken from:
    +https://...
    +

    + where the URL points to the + bugtracker entry, + mailing list entry or + website + you took the patch from. +

    + +

    + If you created the patch yourself, + please offer it to the upstream project first, + and point to that URL, + using the same wording: + "This patch has been taken from:". +

    + +

    + Depending on the feedback you get from the upstream project, + you might want to improve your patch. +

    +
  10. + +
  11. +

    + If you find some time, + please provide a minimal test program for it. + It should be + simple, + stand alone and + should work unmodified for many (all?) future versions of the library. + Test programs are named as: +

    +
    PACKAGE-test.c
    + or +
    PACKAGE-test.cpp
    +

    + depending on whether it is a C or C++ library. + To get a clue, + please have a look at existing test programs such as + sdl-test.c. +

    + +

    + At the very end of your *.mk file + you should build the test program in a generic way, + using strict compiler flags. + The last few lines of + sdl.mk + will give you a clue. +

    +
  12. + +
  13. +

    + You could also try to provide a $(PKG)_UPDATE section. + However, that requires some experience and "feeling" for it. + So it is perfectly okay if you leave the $(PKG)_UPDATE section empty. + We'll fill that in for you. + It's a funny exercise. +

    +
  14. + +
  15. +

    + Check that you don't have "dirty stuff" in your *.mk files, + such as TAB characters or trailing spaces at lines endings. + Have a look at random *.mk files + to get a feeling for the coding style. +

    + +

    + The same holds for your test program. +

    + +

    + However, patch files should always appear + in the same coding style as the files they are patching. +

    + +

    + Finally, in your $(PKG)_BUILD section, + please check that you use our portability variables: +

    + + + + + + + + +
    bash $(SHELL)
    install $(INSTALL)
    libtool $(LIBTOOL)
    libtoolize$(LIBTOOLIZE)
    make $(MAKE)
    patch $(PATCH)
    sed $(SED)
    +
  16. + +
  17. +

    + Check whether everything runs fine. + If you have some trouble, + don't hesitate to ask on the + mailing list, + providing your *.mk file so far. +

    +
  18. + +
  19. +

    + Propose your final *.mk file to the mailing list. + Don't forget to tell us + if there are some pieces in your *.mk file + you feel unsure about. + We'll then have a specific look at those parts, + which avoids trouble for you and us in the future. +

    +
  20. +
+
+ +
+ + + + +

(contact via the + project mailing list)

+ +

+ Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject + to the following conditions: +

+ +

+ The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. +

+ +

+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +

+
+ +
+

History

+ +
+ +
2012-xx-xx – Release 2.22
+
+

+ Download | + Changelog +

+ +

+ The project has been + renamed + from mingw-cross-env to MXE (M cross environment). +

+ +

+ The release tarballs have been replaced with a Git checkout. +

+ +

+ Most packages were updated to their latest version. +

+ +

+ New packages are supported: + agg, cgal, eigen, file, gta, json-c, libgnurx, libharu, + libircclient, libssh2, libxml++, llvm, lzo, mpfr, nettle, + opencsg, qjson, qwtplot3d, vtk, and wt. +

+
+ +
2011-06-07 – Release 2.21
+
+

+ Download | + Changelog +

+ +

+ Minor bugfixes in several packages. +

+ +

+ Almost all packages are updated to their latest version. +

+ +

+ Packages gtkmm and gtksourceviewmm have been renamed to gtkmm2 and gtksourceviewmm2. +

+ +

+ New packages are supported: + libass, poco, and t4k_common. +

+
+ +
2011-04-05 – Release 2.20
+
+

+ Download | + Changelog +

+ +

+ This release fixes a download error caused by the pixman project + (a sudden change of their URL scheme without proper redirects). + That sort of thing should never happen! +

+
+ +
2011-03-19 – Release 2.19
+
+

+ Download | + Changelog +

+ +

+ The download mechanisms are improved. +

+ +

+ A CMake toolchain file is provided + to simplify cross-compiling projects which use CMake. +

+ +

+ Support for Debian/Lenny is dropped. +

+ +

+ Package gtk is renamed to gtk2. +

+ +

+ Almost all packages are updated to their latest version. +

+ +

+ New packages are supported: + dbus, graphicsmagick, libical, liboauth, physfs, and vigra. +

+ +

+ Note for boost::filesystem users: + Version 3 is a major revision + and now the default in 1.46. +

+
+ +
2010-12-15 – Release 2.18
+
+

+ Download | + Changelog +

+ +

+ This release fixes a checksum error caused by the atkmm project + (a sudden change of their current source tarball). + That sort of thing should never happen! +

+
+ +
2010-12-11 – Release 2.17
+
+

+ Download | + Changelog +

+ +

+ This release provides some improvements of the build system + such as an automatic check for most of the requirements. +

+ +

+ All packages are updated to their latest version. +

+ +

+ New packages are supported: + bfd, blas, cblas, dcmtk, ftgl, lapack, lcms1, + mingw-utils, mxml, suitesparse and tinyxml. +

+
+ +
2010-10-27 – Release 2.16
+
+

+ Download | + Changelog +

+ +

+ This release provides lots of improvements to + the build system as well as the documentation. +

+ +

+ Support for OpenSolaris is dropped. +

+ +

+ Almost all packages are updated to their latest version. +

+ +

+ Many new packages are supported: + atkmm, cairomm, cunit, faac, faad2, ffmpeg, gdk-pixbuf, glibmm, + gtkglextmm, gtkmm, gtksourceview, gtksourceviewmm, imagemagick, + lame, libiberty, libsigc++, libvpx, matio, openal, opencore-amr, + pangomm, pfstools, plotmm, sdl_sound and x264. +

+
+ +
2010-06-16 – Release 2.15
+
+

+ Download | + Changelog +

+ +

+ This release fixes download errors caused by the Qt project + (a sudden change of their current source tarball). +

+ +

+ Almost all packages are updated to their latest version. +

+
+ +
2010-06-08 – Release 2.14
+
+

+ Download | + Changelog +

+ +

+ This release fixes download errors caused by the MinGW project + (a sudden change of their URL scheme without proper redirects). + That sort of thing should never happen! +

+ +

+ Almost all packages are updated to their latest version. +

+ +

+ New packages are supported: + libarchive, libgee and xvidcore. +

+
+ +
2010-05-31 – Release 2.13
+
+

+ Download | + Changelog +

+ +

+ This release switches back from TDM to the official GCC, + thus supporting the current GCC 4.5. +

+ +

+ The set of DirectX headers is improved and more complete. +

+ +

+ The deadlock issues with Pthreads-w32 are fixed. +

+ +

+ A static build of GDB is provided, + i.e. a standalone "gdb.exe" + that doesn't require any extra DLLs. +

+ +

+ More packages are backed by test programs. +

+ +

+ Many "sed hacks" are replaced by proper portability patches. +

+ +

+ Almost all packages are updated to their latest version. +

+ +

+ Many new packages are supported: + fribidi, gc, gdb, gmp, gsl, gst-plugins-base, gst-plugins-good, + gstreamer, gtkglext, guile, libcroco, libffi, liboil, libpaper, + libshout, libunistring and xine-lib. +

+
+ +
2010-02-21 – Release 2.12
+
+

+ Download | + Changelog +

+ +

+ This release fixes some minor build issues, + and contains a first small set of test programs + to check the package builds. +

+ +

+ The build rules are simplified + by calling generators like Autotools and Flex, + instead of patching the generated files. +

+ +

+ Almost all packages are updated to their latest version. +

+ +

+ Many new packages are supported: + aubio, devil, directx, exiv2, fftw, freeimage, gsoap, + id3lib, liblo, libpano13, librsvg, libsamplerate, + muparser, openscenegraph, portaudio and sdl_pango. +

+
+ +
2010-02-20 – Release 2.11
+
+

+ Download | + Changelog +

+ +

+ This release contains a packaging bug. + Please use release 2.12 instead. +

+
+ +
2009-12-23 – Release 2.10
+
+

+ Download | + Changelog +

+ +

+ This release adds support for many new packages: + flac, libmad, libsndfile, sdl_net, speex, postgresql, + freetds, openssl, plotutils, taglib, lcms, freeglut, + xerces and zziplib. +

+ +

+ Almost all packages are updated to their latest version. +

+ +

+ In addition to the libraries + some command line tools such as psql.exe are built, too. +

+ +

+ The placements of logfiles, as well as many other build details, have been improved. +

+
+ +
2009-10-24 – Release 2.9
+
+

+ Download | + Changelog +

+ +

+ This release adds support for Qt, VMime and libmng. +

+ +

+ The target triplet is updated to i686-pc-mingw32. +

+ +

+ OpenMP support is enabled in GCC. +

+ +

+ Almost all packages are updated to their latest version. +

+
+ +
2009-09-11 – Release 2.8
+
+

+ Download | + Changelog +

+ +

+ This release comes with a better look & feel + by providing a highlevel overview of the build process. +

+ +

+ The detailed build messages are stored into + separate log files for each package, + so parallel builds don't intermix them anymore. +

+ +

+ The download URLs of SourceForge packages + are adjusted to ensure that + the selected SourceForge mirror is really used + and not circumvalented via HTTP redirects to other mirrors. +

+ +

+ Almost all packages are updated to their latest version. +

+ +

+ The whole mingw-cross-env project has moved to + Savannah. + So all URIs have changed, + but the old URIs + redirect to the new locations seamlessly. +

+ +

+ Everyone is invited to join the freshly created + project mailing list. +

+
+ +
2009-08-11 – Release 2.7
+
+

+ Download | + Changelog +

+ +

+ This release + provides an improved version recognition + for SourceForge packages. + SourceForge changed their page layout + in a way that makes it much harder + to identify the current version of a package. +

+ +

+ Additionally, + almost all packages are updated to their latest version. +

+
+ +
2009-06-19 – Release 2.6
+
+

+ Download | + Changelog +

+ +

+ This release contains some portability fixes + which allow it to run on a wider range of systems + such as Frugalware. +

+ +

+ The documentation and website are completely revised. +

+ +

+ New packages such as + CppUnit, libUsb, NSIS, Popt, SQLite and Theora + are supported. +

+ +

+ Almost all packages are updated to their latest version. +

+ +

+ A new command "make download" is implemented. +

+
+ +
2009-04-06 – Release 2.5
+
+

+ Download | + Changelog +

+ +

+ This release fixes a download error caused by the MinGW project. + They suddenly changed the names of their source tarballs. + That sort of thing should never happen! +

+ +

+ This release also contains some bugfixes + which allow it to run on a wider range of systems. +

+ +

+ All downloaded files are now + verified by their SHA-1 checksums. +

+ +

+ New versions of various packages are supported. +

+
+ +
2009-03-08 – Release 2.4
+
+

+ Download | + Changelog +

+ +

+ This release provides many new libraries such as + wxWidgets, GTK+ and OpenEXR. +

+ +

+ In addition, new versions of various packages + are supported. +

+
+ +
2009-02-09 – Release 2.3
+
+

+ Download | + Changelog +

+ +

+ This release fixes some serious build problems on FreeBSD and MacOS-X. +

+ +

+ The Makefile has a new target "clean-pkg" + and allows to be called from a separate build directory + via "make -f .../Makefile". +

+ +

+ Some new versions of the packages are supported, + especially GCC-4.3 by switching from MinGW GCC to + TDM-GCC. +

+
+ +
2009-01-31 – Release 2.2
+
+

+ Download | + Changelog +

+ +

+ This release fixes some minor build problems. +

+ +

+ It also supports some new packages and + some newer versions of the already supported packages. +

+ +

+ Parallelization is now disabled by default. +

+
+ +
2008-12-13 – Release 2.1
+
+

+ Download | + Changelog +

+ +

+ This release fixes a download error caused by the GDAL project. + They suddenly changed their download URLs. + That sort of thing should never happen! +

+ +

+ In addition, some newer versions of various packages are supported. +

+ +

+ There is also a small compatibility fix for OS X. +

+
+ +
2008-11-10 – Release 2.0
+
+

+ Download | + Changelog +

+ +

+ The shell script has been rewritten as Makefile + and supports partial builds and parallel builds. +

+ +

+ As usual, + this release also supports some new packages and + some newer versions of the already supported packages. +

+
+ +
2008-01-11 – Release 1.4
+
+

+ Download | + Changelog +

+ +

+ This release now includes a tutorial by Hans Bezemer + and has improved compile options of FLTK. + As usual, it supports some newer versions of the libraries. +

+ +

+ At the request of its author, + libowfat is no longer supported from this release on. +

+ +

+ The script now uses a specific SourceForge mirror + instead of randomly chosen ones, + because the download phase + often stumbled on some very slow mirrors. +

+
+ +
2007-12-23 – Release 1.3
+
+

+ Download | + Changelog +

+ +

+ A sudden change in the download URLs of GEOS + made the automatic download fail. + Such changes should never happen! + But it happened, + and this quick release is an attempt to limit the damage. +

+ +

+ This release also supports some newer versions of the libraries + including support for fontconfig-2.5.0. +

+
+ +
2007-12-13 – Release 1.2
+
+

+ Download | + Changelog +

+ +

+ This release is a switch from gcc-3 to gcc-4. + It also supports a new library and + some newer versions of the already supported libraries. +

+
+ +
2007-07-24 – Release 1.1
+
+

+ Download | + Changelog +

+ +

+ This release is the result of the public attention the release 1.0 got. + It contains many improvements suggested by its first users, + and adds support for many new libraries. +

+ +

+ Thanks to Rocco Rutte who contributed many code snippets. +

+
+ +
2007-06-19 – Release 1.0
+
+

+ Download | + Changelog +

+ +

+ This first release has been created in a 7-day-sprint. +

+
+ +
2007-06-12 – Project start
+
+
+ +
+
+ +
+

See also

+ +

This project

+ + + +

Related projects

+ + + +

Related articles

+ + +
+ +
+

Projects which use MXE

+ + +
+ + + diff -r 8474fcb3e1b5 -r 99516e73b368 src/agg.mk --- a/src/agg.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/agg.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. PKG := agg $(PKG)_IGNORE := diff -r 8474fcb3e1b5 -r 99516e73b368 src/atk.mk --- a/src/atk.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/atk.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # ATK PKG := atk diff -r 8474fcb3e1b5 -r 99516e73b368 src/atkmm.mk --- a/src/atkmm.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/atkmm.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # ATKmm PKG := atkmm diff -r 8474fcb3e1b5 -r 99516e73b368 src/aubio-1-fix-pkg-config.patch --- a/src/aubio-1-fix-pkg-config.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/aubio-1-fix-pkg-config.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -urN aubio-0.3.2.orig/configure.ac aubio-0.3.2/configure.ac --- aubio-0.3.2.orig/configure.ac 2006-10-09 01:11:39.000000000 +0200 diff -r 8474fcb3e1b5 -r 99516e73b368 src/aubio.mk --- a/src/aubio.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/aubio.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # aubio PKG := aubio diff -r 8474fcb3e1b5 -r 99516e73b368 src/bfd.mk --- a/src/bfd.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/bfd.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Binary File Descriptor library PKG := bfd diff -r 8474fcb3e1b5 -r 99516e73b368 src/binutils.mk --- a/src/binutils.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/binutils.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GNU Binutils PKG := binutils diff -r 8474fcb3e1b5 -r 99516e73b368 src/blas.mk --- a/src/blas.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/blas.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # blas PKG := blas diff -r 8474fcb3e1b5 -r 99516e73b368 src/boost-test.cpp --- a/src/boost-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/boost-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/boost.mk --- a/src/boost.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/boost.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Boost C++ Library PKG := boost diff -r 8474fcb3e1b5 -r 99516e73b368 src/bzip2.mk --- a/src/bzip2.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/bzip2.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # bzip2 PKG := bzip2 diff -r 8474fcb3e1b5 -r 99516e73b368 src/cairo.mk --- a/src/cairo.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/cairo.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # cairo PKG := cairo diff -r 8474fcb3e1b5 -r 99516e73b368 src/cairomm.mk --- a/src/cairomm.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/cairomm.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # cairomm PKG := cairomm diff -r 8474fcb3e1b5 -r 99516e73b368 src/cblas.mk --- a/src/cblas.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/cblas.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # cblas PKG := cblas diff -r 8474fcb3e1b5 -r 99516e73b368 src/cgal-1-fixes.patch --- a/src/cgal-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/cgal-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/cgal.mk --- a/src/cgal.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/cgal.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # cgal PKG := cgal diff -r 8474fcb3e1b5 -r 99516e73b368 src/cppunit.mk --- a/src/cppunit.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/cppunit.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # CppUnit PKG := cppunit diff -r 8474fcb3e1b5 -r 99516e73b368 src/cunit.mk --- a/src/cunit.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/cunit.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # cunit PKG := cunit diff -r 8474fcb3e1b5 -r 99516e73b368 src/curl-1-fixes.patch --- a/src/curl-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/curl-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Commits backported (cherry-picked) from upstream. http://github.com/bagder/curl diff -r 8474fcb3e1b5 -r 99516e73b368 src/curl-test.c --- a/src/curl-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/curl-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/curl.mk --- a/src/curl.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/curl.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # cURL PKG := curl diff -r 8474fcb3e1b5 -r 99516e73b368 src/dbus-1-fixes.patch --- a/src/dbus-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/dbus-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/dbus.mk --- a/src/dbus.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/dbus.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # dbus PKG := dbus diff -r 8474fcb3e1b5 -r 99516e73b368 src/dcmtk-1-fixes.patch --- a/src/dcmtk-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/dcmtk-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/dcmtk.mk --- a/src/dcmtk.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/dcmtk.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # DCMTK PKG := dcmtk diff -r 8474fcb3e1b5 -r 99516e73b368 src/devil-1-png.patch --- a/src/devil-1-png.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/devil-1-png.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -urN devil-1.7.8.orig/src-IL/src/il_icon.c devil-1.7.8/src-IL/src/il_icon.c --- devil-1.7.8.orig/src-IL/src/il_icon.c 2009-03-08 08:10:09.000000000 +0100 diff -r 8474fcb3e1b5 -r 99516e73b368 src/devil.mk --- a/src/devil.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/devil.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # DevIL PKG := devil diff -r 8474fcb3e1b5 -r 99516e73b368 src/eigen.mk --- a/src/eigen.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/eigen.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # eigen PKG := eigen diff -r 8474fcb3e1b5 -r 99516e73b368 src/exiv2-r2619.patch --- a/src/exiv2-r2619.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/exiv2-r2619.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://dev.exiv2.org/projects/exiv2/repository/revisions/2619 diff -r 8474fcb3e1b5 -r 99516e73b368 src/exiv2-r2646.patch --- a/src/exiv2-r2646.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/exiv2-r2646.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://dev.exiv2.org/projects/exiv2/repository/revisions/2646 diff -r 8474fcb3e1b5 -r 99516e73b368 src/exiv2-r2650.patch --- a/src/exiv2-r2650.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/exiv2-r2650.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://dev.exiv2.org/projects/exiv2/repository/revisions/2650 diff -r 8474fcb3e1b5 -r 99516e73b368 src/exiv2.mk --- a/src/exiv2.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/exiv2.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Exiv2 PKG := exiv2 diff -r 8474fcb3e1b5 -r 99516e73b368 src/expat.mk --- a/src/expat.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/expat.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Expat XML Parser PKG := expat diff -r 8474fcb3e1b5 -r 99516e73b368 src/faad2-1-uint.patch --- a/src/faad2-1-uint.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/faad2-1-uint.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. --- ./frontend/main.c.backup 2010-07-01 16:53:48.563042615 +0200 +++ ./frontend/main.c 2010-07-01 16:54:03.379043126 +0200 diff -r 8474fcb3e1b5 -r 99516e73b368 src/faad2.mk --- a/src/faad2.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/faad2.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # faad2 PKG := faad2 diff -r 8474fcb3e1b5 -r 99516e73b368 src/ffmpeg-1-pkgconfig.patch --- a/src/ffmpeg-1-pkgconfig.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/ffmpeg-1-pkgconfig.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch adds a libswresample dependency to libavfilter.pc, and a libavfilter dependency to libavdevice.pc. Both issues have patches upstream, so this patch diff -r 8474fcb3e1b5 -r 99516e73b368 src/ffmpeg.mk --- a/src/ffmpeg.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/ffmpeg.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # ffmpeg PKG := ffmpeg diff -r 8474fcb3e1b5 -r 99516e73b368 src/fftw.mk --- a/src/fftw.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/fftw.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # fftw PKG := fftw diff -r 8474fcb3e1b5 -r 99516e73b368 src/file-test.c --- a/src/file-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/file-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/file.mk --- a/src/file.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/file.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # file PKG := file diff -r 8474fcb3e1b5 -r 99516e73b368 src/flac-1-win32.patch --- a/src/flac-1-win32.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/flac-1-win32.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -ru flac-1.2.1.orig/include/share/alloc.h flac-1.2.1/include/share/alloc.h --- flac-1.2.1.orig/include/share/alloc.h 2007-09-12 07:32:21.000000000 +0200 diff -r 8474fcb3e1b5 -r 99516e73b368 src/flac-2-lwsock32.patch --- a/src/flac-2-lwsock32.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/flac-2-lwsock32.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -urN flac-1.2.1.orig/src/libFLAC/flac.pc.in flac-1.2.1/src/libFLAC/flac.pc.in --- flac-1.2.1.orig/src/libFLAC/flac.pc.in 2007-02-07 12:07:32.000000000 +1100 diff -r 8474fcb3e1b5 -r 99516e73b368 src/flac.mk --- a/src/flac.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/flac.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # FLAC PKG := flac diff -r 8474fcb3e1b5 -r 99516e73b368 src/fltk-1-darwin-cross-compile.patch --- a/src/fltk-1-darwin-cross-compile.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/fltk-1-darwin-cross-compile.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: diff -r 8474fcb3e1b5 -r 99516e73b368 src/fltk-test.cpp --- a/src/fltk-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/fltk-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. * * This is a slightly modified version of: * http://www.fltk.org/doc-1.3/basics.html diff -r 8474fcb3e1b5 -r 99516e73b368 src/fltk.mk --- a/src/fltk.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/fltk.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # FLTK PKG := fltk diff -r 8474fcb3e1b5 -r 99516e73b368 src/fontconfig.mk --- a/src/fontconfig.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/fontconfig.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # fontconfig PKG := fontconfig diff -r 8474fcb3e1b5 -r 99516e73b368 src/freeglut-1-fixes.patch --- a/src/freeglut-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/freeglut-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/freeglut-test.c --- a/src/freeglut-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/freeglut-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/freeglut.mk --- a/src/freeglut.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/freeglut.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # freeglut PKG := freeglut diff -r 8474fcb3e1b5 -r 99516e73b368 src/freeimage-1-fixes.patch --- a/src/freeimage-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/freeimage-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/freeimage.mk --- a/src/freeimage.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/freeimage.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # FreeImage PKG := freeimage diff -r 8474fcb3e1b5 -r 99516e73b368 src/freetds.mk --- a/src/freetds.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/freetds.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # FreeTDS PKG := freetds diff -r 8474fcb3e1b5 -r 99516e73b368 src/freetype.mk --- a/src/freetype.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/freetype.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # freetype PKG := freetype diff -r 8474fcb3e1b5 -r 99516e73b368 src/fribidi-1-fix-gassert.patch --- a/src/fribidi-1-fix-gassert.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/fribidi-1-fix-gassert.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -ru fribidi-0.19.2.orig/lib/fribidi-common.h fribidi-0.19.2/lib/fribidi-common.h --- fribidi-0.19.2.orig/lib/fribidi-common.h 2007-04-05 18:13:24.000000000 +0200 diff -r 8474fcb3e1b5 -r 99516e73b368 src/fribidi.mk --- a/src/fribidi.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/fribidi.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # FriBidi PKG := fribidi diff -r 8474fcb3e1b5 -r 99516e73b368 src/ftgl.mk --- a/src/ftgl.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/ftgl.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # ftgl PKG := ftgl diff -r 8474fcb3e1b5 -r 99516e73b368 src/gc.mk --- a/src/gc.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gc.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # gc PKG := gc diff -r 8474fcb3e1b5 -r 99516e73b368 src/gcc-1-mingw-float.patch --- a/src/gcc-1-mingw-float.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gcc-1-mingw-float.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://gcc.gnu.org/ml/gcc-patches/2010-06/msg00387.html diff -r 8474fcb3e1b5 -r 99516e73b368 src/gcc-2-darwin-no-pie.patch --- a/src/gcc-2-darwin-no-pie.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gcc-2-darwin-no-pie.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. MXE specific workaround for OSX Lion's new ASLR causing problems with pre-compiled headers. diff -r 8474fcb3e1b5 -r 99516e73b368 src/gcc-gmp.mk --- a/src/gcc-gmp.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gcc-gmp.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GMP for GCC PKG := gcc-gmp diff -r 8474fcb3e1b5 -r 99516e73b368 src/gcc-mpc.mk --- a/src/gcc-mpc.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gcc-mpc.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # MPC for GCC PKG := gcc-mpc diff -r 8474fcb3e1b5 -r 99516e73b368 src/gcc-mpfr.mk --- a/src/gcc-mpfr.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gcc-mpfr.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # MPFR for GCC PKG := gcc-mpfr diff -r 8474fcb3e1b5 -r 99516e73b368 src/gcc.mk --- a/src/gcc.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gcc.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GCC PKG := gcc diff -r 8474fcb3e1b5 -r 99516e73b368 src/gd-1-libpng15.patch --- a/src/gd-1-libpng15.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gd-1-libpng15.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. This patch has been taken from: http://bugs.gentoo.org/show_bug.cgi?id=305101 diff -r 8474fcb3e1b5 -r 99516e73b368 src/gd-test.c --- a/src/gd-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gd-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. * * This is a slightly modified version of: * examples/arc.c diff -r 8474fcb3e1b5 -r 99516e73b368 src/gd.mk --- a/src/gd.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gd.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GD (without support for xpm) PKG := gd diff -r 8474fcb3e1b5 -r 99516e73b368 src/gdal.mk --- a/src/gdal.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gdal.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GDAL PKG := gdal diff -r 8474fcb3e1b5 -r 99516e73b368 src/gdb-1-fix-shell.patch --- a/src/gdb-1-fix-shell.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gdb-1-fix-shell.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://sourceware.org/bugzilla/show_bug.cgi?id=9098 diff -r 8474fcb3e1b5 -r 99516e73b368 src/gdb-2-fix-makeinfo.patch --- a/src/gdb-2-fix-makeinfo.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gdb-2-fix-makeinfo.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://sourceware.org/bugzilla/show_bug.cgi?id=13638 diff -r 8474fcb3e1b5 -r 99516e73b368 src/gdb.mk --- a/src/gdb.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gdb.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # gdb PKG := gdb diff -r 8474fcb3e1b5 -r 99516e73b368 src/gdk-pixbuf-1-fixes.patch --- a/src/gdk-pixbuf-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gdk-pixbuf-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/gdk-pixbuf.mk --- a/src/gdk-pixbuf.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gdk-pixbuf.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GDK-pixbuf PKG := gdk-pixbuf diff -r 8474fcb3e1b5 -r 99516e73b368 src/geos-test.c --- a/src/geos-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/geos-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/geos.mk --- a/src/geos.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/geos.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GEOS PKG := geos diff -r 8474fcb3e1b5 -r 99516e73b368 src/gettext.mk --- a/src/gettext.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gettext.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # gettext PKG := gettext diff -r 8474fcb3e1b5 -r 99516e73b368 src/giflib.mk --- a/src/giflib.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/giflib.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # giflib PKG := giflib diff -r 8474fcb3e1b5 -r 99516e73b368 src/glew-test.c --- a/src/glew-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/glew-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/glew.mk --- a/src/glew.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/glew.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GLEW PKG := glew diff -r 8474fcb3e1b5 -r 99516e73b368 src/glib-1-fixes.patch --- a/src/glib-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/glib-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/glib.mk --- a/src/glib.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/glib.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GLib PKG := glib diff -r 8474fcb3e1b5 -r 99516e73b368 src/glibmm.mk --- a/src/glibmm.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/glibmm.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GLibmm PKG := glibmm diff -r 8474fcb3e1b5 -r 99516e73b368 src/gmp.mk --- a/src/gmp.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gmp.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GMP PKG := gmp diff -r 8474fcb3e1b5 -r 99516e73b368 src/gnutls-1-fixes.patch --- a/src/gnutls-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gnutls-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/gnutls-test.c --- a/src/gnutls-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gnutls-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/gnutls.mk --- a/src/gnutls.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gnutls.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GnuTLS PKG := gnutls diff -r 8474fcb3e1b5 -r 99516e73b368 src/graphicsmagick-1-fix-xml2-config.patch --- a/src/graphicsmagick-1-fix-xml2-config.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/graphicsmagick-1-fix-xml2-config.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://sourceforge.net/tracker/?func=detail&aid=3130497&group_id=73485&atid=537937 diff -r 8474fcb3e1b5 -r 99516e73b368 src/graphicsmagick-test.cpp --- a/src/graphicsmagick-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/graphicsmagick-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/graphicsmagick.mk --- a/src/graphicsmagick.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/graphicsmagick.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GraphicsMagick PKG := graphicsmagick diff -r 8474fcb3e1b5 -r 99516e73b368 src/gsl-test.c --- a/src/gsl-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gsl-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/gsl.mk --- a/src/gsl.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gsl.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GSL PKG := gsl diff -r 8474fcb3e1b5 -r 99516e73b368 src/gsoap-1-fixes.patch --- a/src/gsoap-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gsoap-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/gsoap.mk --- a/src/gsoap.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gsoap.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # gSOAP PKG := gsoap diff -r 8474fcb3e1b5 -r 99516e73b368 src/gst-plugins-base.mk --- a/src/gst-plugins-base.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gst-plugins-base.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # gst-plugins-base PKG := gst-plugins-base diff -r 8474fcb3e1b5 -r 99516e73b368 src/gst-plugins-good.mk --- a/src/gst-plugins-good.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gst-plugins-good.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # gst-plugins-good PKG := gst-plugins-good diff -r 8474fcb3e1b5 -r 99516e73b368 src/gstreamer.mk --- a/src/gstreamer.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gstreamer.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # gstreamer PKG := gstreamer diff -r 8474fcb3e1b5 -r 99516e73b368 src/gta-test.c --- a/src/gta-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gta-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/gta.mk --- a/src/gta.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gta.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # gta PKG := gta diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtk2-1-fixes.patch --- a/src/gtk2-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtk2-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtk2-test.c --- a/src/gtk2-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtk2-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtk2.mk --- a/src/gtk2.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtk2.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GTK+ PKG := gtk2 diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtkglext-1-fixes.patch --- a/src/gtkglext-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtkglext-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtkglext-test.c --- a/src/gtkglext-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtkglext-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtkglext.mk --- a/src/gtkglext.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtkglext.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GtkGLExt PKG := gtkglext diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtkglextmm-1-fixes.patch --- a/src/gtkglextmm-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtkglextmm-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtkglextmm-test.cpp --- a/src/gtkglextmm-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtkglextmm-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtkglextmm.mk --- a/src/gtkglextmm.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtkglextmm.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GtkGLExtmm PKG := gtkglextmm diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtkmm2-test.cpp --- a/src/gtkmm2-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtkmm2-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtkmm2.mk --- a/src/gtkmm2.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtkmm2.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GTKMM PKG := gtkmm2 diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtksourceview.mk --- a/src/gtksourceview.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtksourceview.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GTKSourceView PKG := gtksourceview diff -r 8474fcb3e1b5 -r 99516e73b368 src/gtksourceviewmm2.mk --- a/src/gtksourceviewmm2.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/gtksourceviewmm2.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GtkSourceViewmm PKG := gtksourceviewmm2 diff -r 8474fcb3e1b5 -r 99516e73b368 src/guile-1-win32.patch --- a/src/guile-1-win32.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/guile-1-win32.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -ruN guile-1.8.7.orig/configure guile-1.8.7/configure --- guile-1.8.7.orig/configure 2009-07-05 22:25:00.000000000 +0200 diff -r 8474fcb3e1b5 -r 99516e73b368 src/guile-test.c --- a/src/guile-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/guile-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/guile.mk --- a/src/guile.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/guile.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GNU Guile PKG := guile diff -r 8474fcb3e1b5 -r 99516e73b368 src/id3lib-1-win32.patch --- a/src/id3lib-1-win32.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/id3lib-1-win32.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -ru id3lib-3.8.3-orig/configure.in id3lib-3.8.3/configure.in --- id3lib-3.8.3-orig/configure.in 2003-03-02 01:23:00.000000000 +0100 diff -r 8474fcb3e1b5 -r 99516e73b368 src/id3lib.mk --- a/src/id3lib.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/id3lib.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # id3lib PKG := id3lib diff -r 8474fcb3e1b5 -r 99516e73b368 src/ilmbase-1-gcc45-include.patch --- a/src/ilmbase-1-gcc45-include.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/ilmbase-1-gcc45-include.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://cvs.savannah.gnu.org/viewvc/IlmBase/Imath/ImathMatrix.h?root=openexr&r1=1.7&r2=1.8&view=patch diff -r 8474fcb3e1b5 -r 99516e73b368 src/ilmbase-2-osx-cxxflags.patch --- a/src/ilmbase-2-osx-cxxflags.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/ilmbase-2-osx-cxxflags.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from http://lists.nongnu.org/archive/html/openexr-devel/2010-08/msg00011.html diff -r 8474fcb3e1b5 -r 99516e73b368 src/ilmbase.mk --- a/src/ilmbase.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/ilmbase.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # IlmBase PKG := ilmbase diff -r 8474fcb3e1b5 -r 99516e73b368 src/imagemagick.mk --- a/src/imagemagick.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/imagemagick.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # ImageMagick PKG := imagemagick diff -r 8474fcb3e1b5 -r 99516e73b368 src/jasper.mk --- a/src/jasper.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/jasper.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # JasPer PKG := jasper diff -r 8474fcb3e1b5 -r 99516e73b368 src/jpeg-test.c --- a/src/jpeg-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/jpeg-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/jpeg.mk --- a/src/jpeg.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/jpeg.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # jpeg PKG := jpeg diff -r 8474fcb3e1b5 -r 99516e73b368 src/json-c.mk --- a/src/json-c.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/json-c.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # json-c PKG := json-c diff -r 8474fcb3e1b5 -r 99516e73b368 src/lame.mk --- a/src/lame.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/lame.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # lame PKG := lame diff -r 8474fcb3e1b5 -r 99516e73b368 src/lapack.mk --- a/src/lapack.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/lapack.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # lapack PKG := lapack diff -r 8474fcb3e1b5 -r 99516e73b368 src/lcms-1-fixes.patch --- a/src/lcms-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/lcms-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/lcms.mk --- a/src/lcms.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/lcms.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # lcms PKG := lcms diff -r 8474fcb3e1b5 -r 99516e73b368 src/lcms1-1-fixes.patch --- a/src/lcms1-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/lcms1-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/lcms1.mk --- a/src/lcms1.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/lcms1.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # lcms1 PKG := lcms1 diff -r 8474fcb3e1b5 -r 99516e73b368 src/libarchive-1-fixes.patch --- a/src/libarchive-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libarchive-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/libarchive-test.c --- a/src/libarchive-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libarchive-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/libarchive.mk --- a/src/libarchive.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libarchive.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Libarchive PKG := libarchive diff -r 8474fcb3e1b5 -r 99516e73b368 src/libass-test.c --- a/src/libass-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libass-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/libass.mk --- a/src/libass.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libass.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libass PKG := libass diff -r 8474fcb3e1b5 -r 99516e73b368 src/libcroco.mk --- a/src/libcroco.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libcroco.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Libcroco PKG := libcroco diff -r 8474fcb3e1b5 -r 99516e73b368 src/libdnet-1-fixes.patch --- a/src/libdnet-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libdnet-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Patch taken from http://sourceforge.net/mailarchive/message.php?msg_id=27995461 diff -r 8474fcb3e1b5 -r 99516e73b368 src/libdnet.mk --- a/src/libdnet.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libdnet.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libdnet PKG := libdnet diff -r 8474fcb3e1b5 -r 99516e73b368 src/libevent.mk --- a/src/libevent.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libevent.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libevent PKG := libevent diff -r 8474fcb3e1b5 -r 99516e73b368 src/libffi-test.c --- a/src/libffi-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libffi-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/libffi.mk --- a/src/libffi.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libffi.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libffi PKG := libffi diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgcrypt.mk --- a/src/libgcrypt.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgcrypt.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libgcrypt PKG := libgcrypt diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgee.mk --- a/src/libgee.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgee.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libgee PKG := libgee diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgeotiff.mk --- a/src/libgeotiff.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgeotiff.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GeoTiff PKG := libgeotiff diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgnurx-1-build-static-lib.patch --- a/src/libgnurx-1-build-static-lib.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgnurx-1-build-static-lib.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -Nur mingw-libgnurx-2.5.1/Makefile.mxe mingw-libgnurx-2.5.1-mxe/Makefile.mxe --- mingw-libgnurx-2.5.1/Makefile.mxe 1970-01-01 01:00:00.000000000 +0100 diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgnurx.mk --- a/src/libgnurx.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgnurx.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libgnurx PKG := libgnurx diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgomp-test.c --- a/src/libgomp-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgomp-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgomp.mk --- a/src/libgomp.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgomp.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GCC-libgomp PKG := libgomp diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgpg_error.mk --- a/src/libgpg_error.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgpg_error.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libgpg-error PKG := libgpg_error diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgsasl-1-fixes.patch --- a/src/libgsasl-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgsasl-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgsasl-test.c --- a/src/libgsasl-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgsasl-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgsasl.mk --- a/src/libgsasl.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgsasl.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Libgsasl PKG := libgsasl diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgsf-1-fixes.patch --- a/src/libgsf-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgsf-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/libgsf.mk --- a/src/libgsf.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libgsf.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libgsf PKG := libgsf diff -r 8474fcb3e1b5 -r 99516e73b368 src/libharu-1-fixes.patch --- a/src/libharu-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libharu-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. From 531d2a9af8c51ad8badc32bc9ba43bb3b87b0e9f Mon Sep 17 00:00:00 2001 From: Antony Dovgal diff -r 8474fcb3e1b5 -r 99516e73b368 src/libharu.mk --- a/src/libharu.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libharu.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libharu PKG := libharu diff -r 8474fcb3e1b5 -r 99516e73b368 src/libiberty-test.c --- a/src/libiberty-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libiberty-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #define _GNU_SOURCE diff -r 8474fcb3e1b5 -r 99516e73b368 src/libiberty.mk --- a/src/libiberty.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libiberty.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libiberty PKG := libiberty diff -r 8474fcb3e1b5 -r 99516e73b368 src/libical-test.c --- a/src/libical-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libical-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/libical.mk --- a/src/libical.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libical.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libical PKG := libical diff -r 8474fcb3e1b5 -r 99516e73b368 src/libiconv.mk --- a/src/libiconv.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libiconv.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libiconv PKG := libiconv diff -r 8474fcb3e1b5 -r 99516e73b368 src/libidn-1-fixes.patch --- a/src/libidn-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libidn-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/libidn-test.c --- a/src/libidn-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libidn-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/libidn.mk --- a/src/libidn.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libidn.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Libidn PKG := libidn diff -r 8474fcb3e1b5 -r 99516e73b368 src/libircclient-1-fixes.patch --- a/src/libircclient-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libircclient-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/libircclient-test.cpp --- a/src/libircclient-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libircclient-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/libircclient.mk --- a/src/libircclient.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libircclient.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libircclient # Note that IPv6 support is partly broken and therefore disabled. diff -r 8474fcb3e1b5 -r 99516e73b368 src/liblo.mk --- a/src/liblo.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/liblo.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # liblo PKG := liblo diff -r 8474fcb3e1b5 -r 99516e73b368 src/libmad.mk --- a/src/libmad.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libmad.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libmad PKG := libmad diff -r 8474fcb3e1b5 -r 99516e73b368 src/libmikmod-1-fixes.patch --- a/src/libmikmod-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libmikmod-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/libmikmod-test.c --- a/src/libmikmod-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libmikmod-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/libmikmod.mk --- a/src/libmikmod.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libmikmod.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libMikMod PKG := libmikmod diff -r 8474fcb3e1b5 -r 99516e73b368 src/libmng-1-fixes.patch --- a/src/libmng-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libmng-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/libmng.mk --- a/src/libmng.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libmng.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libmng PKG := libmng diff -r 8474fcb3e1b5 -r 99516e73b368 src/libntlm.mk --- a/src/libntlm.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libntlm.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Libntlm PKG := libntlm diff -r 8474fcb3e1b5 -r 99516e73b368 src/liboauth-test.c --- a/src/liboauth-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/liboauth-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/liboauth.mk --- a/src/liboauth.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/liboauth.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # liboauth PKG := liboauth diff -r 8474fcb3e1b5 -r 99516e73b368 src/libodbc++-1-win32.patch --- a/src/libodbc++-1-win32.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libodbc++-1-win32.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. --- libodbc++-0.2.5.orig/configure.ac 2009-08-20 23:39:08.000000000 +0200 +++ libodbc++-0.2.5/configure.ac 2010-02-04 22:40:32.000000000 +0100 diff -r 8474fcb3e1b5 -r 99516e73b368 src/libodbc++.mk --- a/src/libodbc++.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libodbc++.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libodbc++ PKG := libodbc++ diff -r 8474fcb3e1b5 -r 99516e73b368 src/liboil.mk --- a/src/liboil.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/liboil.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # liboil PKG := liboil diff -r 8474fcb3e1b5 -r 99516e73b368 src/libpano13.mk --- a/src/libpano13.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libpano13.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libpano13 PKG := libpano13 diff -r 8474fcb3e1b5 -r 99516e73b368 src/libpaper.mk --- a/src/libpaper.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libpaper.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libpaper PKG := libpaper diff -r 8474fcb3e1b5 -r 99516e73b368 src/libpng-test.c --- a/src/libpng-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libpng-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. * * This is a slightly modified version of: * http://ironalbatross.net/wiki/index.php5?title=CPP_LIBPNG#Minimal_Example_of_writing_a_PNG_File diff -r 8474fcb3e1b5 -r 99516e73b368 src/libpng.mk --- a/src/libpng.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libpng.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libpng PKG := libpng diff -r 8474fcb3e1b5 -r 99516e73b368 src/librsvg-1-fixes.patch --- a/src/librsvg-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/librsvg-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains an ad hoc patch for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/librsvg-test.c --- a/src/librsvg-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/librsvg-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/librsvg.mk --- a/src/librsvg.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/librsvg.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # librsvg PKG := librsvg diff -r 8474fcb3e1b5 -r 99516e73b368 src/libsamplerate.mk --- a/src/libsamplerate.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libsamplerate.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libsamplerate PKG := libsamplerate diff -r 8474fcb3e1b5 -r 99516e73b368 src/libshout-1-fixes.patch --- a/src/libshout-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libshout-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/libshout.mk --- a/src/libshout.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libshout.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libshout PKG := libshout diff -r 8474fcb3e1b5 -r 99516e73b368 src/libsigc++.mk --- a/src/libsigc++.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libsigc++.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libsigc++ PKG := libsigc++ diff -r 8474fcb3e1b5 -r 99516e73b368 src/libsndfile.mk --- a/src/libsndfile.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libsndfile.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libsndfile PKG := libsndfile diff -r 8474fcb3e1b5 -r 99516e73b368 src/libssh2-1-fixes.patch --- a/src/libssh2-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libssh2-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. From b3ade9a63e881e69b4c9cfe7b5dbad78dcc4a0e0 Mon Sep 17 00:00:00 2001 From: Peter Stuge diff -r 8474fcb3e1b5 -r 99516e73b368 src/libssh2-test.c --- a/src/libssh2-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libssh2-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/libssh2.mk --- a/src/libssh2.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libssh2.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libssh2 PKG := libssh2 diff -r 8474fcb3e1b5 -r 99516e73b368 src/libtool.mk --- a/src/libtool.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libtool.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # GNU Libtool PKG := libtool diff -r 8474fcb3e1b5 -r 99516e73b368 src/libunistring.mk --- a/src/libunistring.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libunistring.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libunistring PKG := libunistring diff -r 8474fcb3e1b5 -r 99516e73b368 src/libusb.mk --- a/src/libusb.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libusb.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # LibUsb PKG := libusb diff -r 8474fcb3e1b5 -r 99516e73b368 src/libvpx-1-config.patch --- a/src/libvpx-1-config.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libvpx-1-config.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. diff --git a/configure b/configure --- a/configure diff -r 8474fcb3e1b5 -r 99516e73b368 src/libvpx-2-fix-bin-bash.patch --- a/src/libvpx-2-fix-bin-bash.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libvpx-2-fix-bin-bash.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://code.google.com/p/webm/issues/detail?id=54 diff -r 8474fcb3e1b5 -r 99516e73b368 src/libvpx.mk --- a/src/libvpx.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libvpx.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # vpx PKG := libvpx diff -r 8474fcb3e1b5 -r 99516e73b368 src/libxml++.mk --- a/src/libxml++.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libxml++.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libxml2 PKG := libxml++ diff -r 8474fcb3e1b5 -r 99516e73b368 src/libxml2.mk --- a/src/libxml2.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libxml2.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libxml2 PKG := libxml2 diff -r 8474fcb3e1b5 -r 99516e73b368 src/libxslt.mk --- a/src/libxslt.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/libxslt.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # libxslt PKG := libxslt diff -r 8474fcb3e1b5 -r 99516e73b368 src/llvm.mk --- a/src/llvm.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/llvm.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # llvm PKG := llvm diff -r 8474fcb3e1b5 -r 99516e73b368 src/lua-test.c --- a/src/lua-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/lua-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/lua.mk --- a/src/lua.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/lua.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Lua PKG := lua diff -r 8474fcb3e1b5 -r 99516e73b368 src/lzo.mk --- a/src/lzo.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/lzo.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # lzo PKG := lzo diff -r 8474fcb3e1b5 -r 99516e73b368 src/matio.mk --- a/src/matio.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/matio.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # matio PKG := matio diff -r 8474fcb3e1b5 -r 99516e73b368 src/mingw-utils-1-portability-fix.patch --- a/src/mingw-utils-1-portability-fix.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/mingw-utils-1-portability-fix.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://sourceforge.net/tracker/?func=detail&aid=3119898&group_id=2435&atid=102435 diff -r 8474fcb3e1b5 -r 99516e73b368 src/mingw-utils.mk --- a/src/mingw-utils.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/mingw-utils.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # MinGW Utilities PKG := mingw-utils diff -r 8474fcb3e1b5 -r 99516e73b368 src/mingwrt.mk --- a/src/mingwrt.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/mingwrt.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # MinGW Runtime PKG := mingwrt diff -r 8474fcb3e1b5 -r 99516e73b368 src/mpfr.mk --- a/src/mpfr.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/mpfr.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # mpfr PKG := mpfr diff -r 8474fcb3e1b5 -r 99516e73b368 src/muparser.mk --- a/src/muparser.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/muparser.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # muParser PKG := muparser diff -r 8474fcb3e1b5 -r 99516e73b368 src/mxml-test.c --- a/src/mxml-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/mxml-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/mxml.mk --- a/src/mxml.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/mxml.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Mini-XML PKG := mxml diff -r 8474fcb3e1b5 -r 99516e73b368 src/nettle.mk --- a/src/nettle.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/nettle.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # nettle PKG := nettle diff -r 8474fcb3e1b5 -r 99516e73b368 src/nsis-1-explicit-mingw-cross-prefix.patch --- a/src/nsis-1-explicit-mingw-cross-prefix.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/nsis-1-explicit-mingw-cross-prefix.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://sourceforge.net/tracker/index.php?func=detail&aid=3305366&group_id=22049&atid=373085 diff -r 8474fcb3e1b5 -r 99516e73b368 src/nsis.mk --- a/src/nsis.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/nsis.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # NSIS PKG := nsis diff -r 8474fcb3e1b5 -r 99516e73b368 src/ogg.mk --- a/src/ogg.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/ogg.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # OGG PKG := ogg diff -r 8474fcb3e1b5 -r 99516e73b368 src/old.mk --- a/src/old.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/old.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # old PKG := old diff -r 8474fcb3e1b5 -r 99516e73b368 src/openal-1-luuid-pkg-config.patch --- a/src/openal-1-luuid-pkg-config.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/openal-1-luuid-pkg-config.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: diff -r 8474fcb3e1b5 -r 99516e73b368 src/openal-2-guid-static-link.patch --- a/src/openal-2-guid-static-link.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/openal-2-guid-static-link.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: diff -r 8474fcb3e1b5 -r 99516e73b368 src/openal-test.c --- a/src/openal-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/openal-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/openal.mk --- a/src/openal.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/openal.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # openal PKG := openal diff -r 8474fcb3e1b5 -r 99516e73b368 src/opencore-amr.mk --- a/src/opencore-amr.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/opencore-amr.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # opencore-amr PKG := opencore-amr diff -r 8474fcb3e1b5 -r 99516e73b368 src/opencsg-1-fixes.patch --- a/src/opencsg-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/opencsg-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/opencsg.mk --- a/src/opencsg.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/opencsg.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # opencsg PKG := opencsg diff -r 8474fcb3e1b5 -r 99516e73b368 src/openexr-1-disable-zlib_winapi.patch --- a/src/openexr-1-disable-zlib_winapi.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/openexr-1-disable-zlib_winapi.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -urN a/IlmImf/ImfPxr24Compressor.cpp b/IlmImf/ImfPxr24Compressor.cpp --- a/IlmImf/ImfPxr24Compressor.cpp 2010-07-17 01:11:52.000000000 +0200 diff -r 8474fcb3e1b5 -r 99516e73b368 src/openexr.mk --- a/src/openexr.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/openexr.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # OpenEXR PKG := openexr diff -r 8474fcb3e1b5 -r 99516e73b368 src/openscenegraph.mk --- a/src/openscenegraph.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/openscenegraph.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # OpenSceneGraph PKG := openscenegraph diff -r 8474fcb3e1b5 -r 99516e73b368 src/openssl-1-winsock2.patch --- a/src/openssl-1-winsock2.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/openssl-1-winsock2.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://rt.openssl.org/Ticket/Display.html?id=2285&user=guest&pass=guest diff -r 8474fcb3e1b5 -r 99516e73b368 src/openssl.mk --- a/src/openssl.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/openssl.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # openssl PKG := openssl diff -r 8474fcb3e1b5 -r 99516e73b368 src/pango-1-fixes.patch --- a/src/pango-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pango-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/pango.mk --- a/src/pango.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pango.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Pango PKG := pango diff -r 8474fcb3e1b5 -r 99516e73b368 src/pangomm.mk --- a/src/pangomm.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pangomm.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Pangomm PKG := pangomm diff -r 8474fcb3e1b5 -r 99516e73b368 src/pcre.mk --- a/src/pcre.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pcre.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # PCRE PKG := pcre diff -r 8474fcb3e1b5 -r 99516e73b368 src/pdcurses.mk --- a/src/pdcurses.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pdcurses.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # PDcurses PKG := pdcurses diff -r 8474fcb3e1b5 -r 99516e73b368 src/pdflib_lite-1-mingw.patch --- a/src/pdflib_lite-1-mingw.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pdflib_lite-1-mingw.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://tech.groups.yahoo.com/group/pdflib/message/20472 diff -r 8474fcb3e1b5 -r 99516e73b368 src/pdflib_lite.mk --- a/src/pdflib_lite.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pdflib_lite.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # PDFlib Lite PKG := pdflib_lite diff -r 8474fcb3e1b5 -r 99516e73b368 src/pfstools.mk --- a/src/pfstools.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pfstools.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # pfstools PKG := pfstools diff -r 8474fcb3e1b5 -r 99516e73b368 src/physfs-1-fix-gcc46-warnings.patch --- a/src/physfs-1-fix-gcc46-warnings.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/physfs-1-fix-gcc46-warnings.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://icculus.org/pipermail/physfs/2011-March/000990.html diff -r 8474fcb3e1b5 -r 99516e73b368 src/physfs-test.c --- a/src/physfs-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/physfs-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. * * This is a slightly modified version of: * test/physfs_test.c diff -r 8474fcb3e1b5 -r 99516e73b368 src/physfs.mk --- a/src/physfs.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/physfs.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # physfs PKG := physfs diff -r 8474fcb3e1b5 -r 99516e73b368 src/pixman.mk --- a/src/pixman.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pixman.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # pixman PKG := pixman diff -r 8474fcb3e1b5 -r 99516e73b368 src/plotmm-1-fixes.patch --- a/src/plotmm-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/plotmm-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/plotmm.mk --- a/src/plotmm.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/plotmm.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # PlotMM PKG := plotmm diff -r 8474fcb3e1b5 -r 99516e73b368 src/plotutils-2.6-libpng-1.5.patch --- a/src/plotutils-2.6-libpng-1.5.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/plotutils-2.6-libpng-1.5.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/media-libs/plotutils/files/plotutils-2.6-libpng-1.5.patch fix building with libpng-1.5 diff -r 8474fcb3e1b5 -r 99516e73b368 src/plotutils.mk --- a/src/plotutils.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/plotutils.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # plotutils PKG := plotutils diff -r 8474fcb3e1b5 -r 99516e73b368 src/poco-1-fix-mno-cygwin.patch --- a/src/poco-1-fix-mno-cygwin.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/poco-1-fix-mno-cygwin.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. --- a/build/config/MinGW-CrossEnv +++ b/build/config/MinGW-CrossEnv diff -r 8474fcb3e1b5 -r 99516e73b368 src/poco-test.cpp --- a/src/poco-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/poco-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/poco.mk --- a/src/poco.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/poco.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # POCO C++ Libraries PKG := poco diff -r 8474fcb3e1b5 -r 99516e73b368 src/popt-1-win32.patch --- a/src/popt-1-win32.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/popt-1-win32.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -urN a/popt.c b/popt.c --- a/popt.c 2010-01-19 01:39:10.000000000 +0100 diff -r 8474fcb3e1b5 -r 99516e73b368 src/popt.mk --- a/src/popt.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/popt.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # popt PKG := popt diff -r 8474fcb3e1b5 -r 99516e73b368 src/portaudio-1-win32.patch --- a/src/portaudio-1-win32.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/portaudio-1-win32.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -ru portaudio-orig/configure.in portaudio/configure.in --- portaudio-orig/configure.in 2007-11-13 22:22:56.000000000 +0100 diff -r 8474fcb3e1b5 -r 99516e73b368 src/portaudio-test.c --- a/src/portaudio-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/portaudio-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/portaudio.mk --- a/src/portaudio.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/portaudio.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # portaudio PKG := portaudio diff -r 8474fcb3e1b5 -r 99516e73b368 src/postgresql-1-fixes.patch --- a/src/postgresql-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/postgresql-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/postgresql.mk --- a/src/postgresql.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/postgresql.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # PostgreSQL PKG := postgresql diff -r 8474fcb3e1b5 -r 99516e73b368 src/proj.mk --- a/src/proj.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/proj.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # proj PKG := proj diff -r 8474fcb3e1b5 -r 99516e73b368 src/pthreads-1-autostatic.patch --- a/src/pthreads-1-autostatic.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pthreads-1-autostatic.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://sourceware.org/ml/pthreads-win32/2010/msg00006.html diff -r 8474fcb3e1b5 -r 99516e73b368 src/pthreads-test.c --- a/src/pthreads-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pthreads-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/pthreads.mk --- a/src/pthreads.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/pthreads.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Pthreads-w32 PKG := pthreads diff -r 8474fcb3e1b5 -r 99516e73b368 src/qjson-1-static.patch --- a/src/qjson-1-static.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/qjson-1-static.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch taken from: http://sourceforge.net/mailarchive/forum.php?thread_name=4E1DBC0D.10000%40jrit.at&forum_name=qjson-devel diff -r 8474fcb3e1b5 -r 99516e73b368 src/qjson.mk --- a/src/qjson.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/qjson.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. PKG := qjson $(PKG)_IGNORE := diff -r 8474fcb3e1b5 -r 99516e73b368 src/qt-1-cherrypicks.patch --- a/src/qt-1-cherrypicks.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/qt-1-cherrypicks.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Commits backported (cherry-picked) from upstream branch or merge requests. http://qt.gitorious.org/qt diff -r 8474fcb3e1b5 -r 99516e73b368 src/qt-test.cpp --- a/src/qt-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/qt-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/qt-test.pro --- a/src/qt-test.pro Thu Mar 29 12:10:58 2012 +0200 +++ b/src/qt-test.pro Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. TARGET = test-qt QT += network sql diff -r 8474fcb3e1b5 -r 99516e73b368 src/qt-test.ui --- a/src/qt-test.ui Thu Mar 29 12:10:58 2012 +0200 +++ b/src/qt-test.ui Thu Mar 29 12:14:15 2012 +0200 @@ -2,7 +2,7 @@ diff -r 8474fcb3e1b5 -r 99516e73b368 src/qt.mk --- a/src/qt.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/qt.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Qt PKG := qt diff -r 8474fcb3e1b5 -r 99516e73b368 src/qwtplot3d-1-fixes.patch --- a/src/qwtplot3d-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/qwtplot3d-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/qwtplot3d.mk --- a/src/qwtplot3d.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/qwtplot3d.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. PKG := qwtplot3d $(PKG)_IGNORE := diff -r 8474fcb3e1b5 -r 99516e73b368 src/readline.mk --- a/src/readline.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/readline.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Readline PKG := readline diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl-test.c --- a/src/sdl-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl.mk --- a/src/sdl.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # SDL PKG := sdl diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_image-test.c --- a/src/sdl_image-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_image-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_image.mk --- a/src/sdl_image.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_image.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # SDL_image PKG := sdl_image diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_mixer-test.c --- a/src/sdl_mixer-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_mixer-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_mixer.mk --- a/src/sdl_mixer.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_mixer.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # SDL_mixer PKG := sdl_mixer diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_net-1-fixes.patch --- a/src/sdl_net-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_net-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_net-test.c --- a/src/sdl_net-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_net-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_net.mk --- a/src/sdl_net.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_net.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # SDL_net PKG := sdl_net diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_pango-1-api-adds.patch --- a/src/sdl_pango-1-api-adds.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_pango-1-api-adds.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://zarb.org/~gc/t/SDL_Pango-0.1.2-API-adds.patch diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_pango-2-static-matrices.patch --- a/src/sdl_pango-2-static-matrices.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_pango-2-static-matrices.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. --- SDL_Pango-0.1.2.orig/src/SDL_Pango.h 2010-04-08 11:33:48.000000000 +0200 +++ SDL_Pango-0.1.2/src/SDL_Pango.h 2010-04-08 11:36:51.000000000 +0200 diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_pango.mk --- a/src/sdl_pango.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_pango.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # SDL_Pango PKG := sdl_pango diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_sound-test.c --- a/src/sdl_sound-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_sound-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. * * This is a simple test program for SDL_sound that tries to * decode the file specified as the only command-line argument. diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_sound.mk --- a/src/sdl_sound.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_sound.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # SDL_sound PKG := sdl_sound diff -r 8474fcb3e1b5 -r 99516e73b368 src/sdl_ttf.mk --- a/src/sdl_ttf.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sdl_ttf.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # SDL_ttf PKG := sdl_ttf diff -r 8474fcb3e1b5 -r 99516e73b368 src/smpeg-test.c --- a/src/smpeg-test.c Thu Mar 29 12:10:58 2012 +0200 +++ b/src/smpeg-test.c Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/smpeg.mk --- a/src/smpeg.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/smpeg.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # smpeg PKG := smpeg diff -r 8474fcb3e1b5 -r 99516e73b368 src/speex.mk --- a/src/speex.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/speex.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Speex PKG := speex diff -r 8474fcb3e1b5 -r 99516e73b368 src/sqlite.mk --- a/src/sqlite.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/sqlite.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # SQLite PKG := sqlite diff -r 8474fcb3e1b5 -r 99516e73b368 src/suitesparse.mk --- a/src/suitesparse.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/suitesparse.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # SuiteSparse PKG := suitesparse diff -r 8474fcb3e1b5 -r 99516e73b368 src/t4k_common.mk --- a/src/t4k_common.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/t4k_common.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # t4k_common PKG := t4k_common diff -r 8474fcb3e1b5 -r 99516e73b368 src/taglib-1-static.patch --- a/src/taglib-1-static.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/taglib-1-static.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: https://bugs.kde.org/show_bug.cgi?id=268441 diff -r 8474fcb3e1b5 -r 99516e73b368 src/taglib.mk --- a/src/taglib.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/taglib.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # TagLib PKG := taglib diff -r 8474fcb3e1b5 -r 99516e73b368 src/theora.mk --- a/src/theora.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/theora.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Theora PKG := theora diff -r 8474fcb3e1b5 -r 99516e73b368 src/tiff.mk --- a/src/tiff.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/tiff.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # LibTIFF PKG := tiff diff -r 8474fcb3e1b5 -r 99516e73b368 src/tinyxml-test.cpp --- a/src/tinyxml-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/tinyxml-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/tinyxml.mk --- a/src/tinyxml.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/tinyxml.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # tinyxml PKG := tinyxml diff -r 8474fcb3e1b5 -r 99516e73b368 src/tre.mk --- a/src/tre.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/tre.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # TRE PKG := tre diff -r 8474fcb3e1b5 -r 99516e73b368 src/vigra-test.cpp --- a/src/vigra-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vigra-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/vigra.mk --- a/src/vigra.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vigra.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # vigra PKG := vigra diff -r 8474fcb3e1b5 -r 99516e73b368 src/vmime-1-fixes.patch --- a/src/vmime-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vmime-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Cherry picked fixes from svn http://sourceforge.net/projects/vmime/develop @@ -10,7 +10,7 @@ ( echo "This file is part of MXE." - echo "See doc/index.html for further information." + echo "See index.html for further information." echo echo "Cherry picked fixes from svn" echo "http://sourceforge.net/projects/vmime/develop" diff -r 8474fcb3e1b5 -r 99516e73b368 src/vmime.mk --- a/src/vmime.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vmime.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # VMime PKG := vmime diff -r 8474fcb3e1b5 -r 99516e73b368 src/vorbis.mk --- a/src/vorbis.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vorbis.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Vorbis PKG := vorbis diff -r 8474fcb3e1b5 -r 99516e73b368 src/vtk-1-tryrun.patch --- a/src/vtk-1-tryrun.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vtk-1-tryrun.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. --- blubb 1970-01-01 01:00:00.000000000 +0100 +++ VTK/TryRunResults.cmake 2011-09-27 08:44:04.563613261 +0200 diff -r 8474fcb3e1b5 -r 99516e73b368 src/vtk-2-findfreetype.patch --- a/src/vtk-2-findfreetype.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vtk-2-findfreetype.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. This patch has been taken from: http://www.vtk.org/Bug/view.php?id=12688 diff -r 8474fcb3e1b5 -r 99516e73b368 src/vtk-3-compile-tools.patch --- a/src/vtk-3-compile-tools.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vtk-3-compile-tools.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. This patch has been taken from: http://www.vtk.org/Bug/view.php?id=12686 diff -r 8474fcb3e1b5 -r 99516e73b368 src/vtk-4-native-no-gui.patch --- a/src/vtk-4-native-no-gui.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vtk-4-native-no-gui.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. diff -r 26cf498f1dac Utilities/CMakeLists.txt --- a/Utilities/CMakeLists.txt Tue Nov 22 18:02:40 2011 +1100 diff -r 8474fcb3e1b5 -r 99516e73b368 src/vtk-5-module-path.patch --- a/src/vtk-5-module-path.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vtk-5-module-path.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. This patch has been taken from: diff -r 8474fcb3e1b5 -r 99516e73b368 src/vtk-6-kfreebsd.patch --- a/src/vtk-6-kfreebsd.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vtk-6-kfreebsd.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -ur VTK.orig/Utilities/vtkhdf5/src/H5private.h VTK/Utilities/vtkhdf5/src/H5private.h --- VTK.orig/Utilities/vtkhdf5/src/H5private.h 2011-11-28 00:12:17.000000000 +1100 diff -r 8474fcb3e1b5 -r 99516e73b368 src/vtk.mk --- a/src/vtk.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/vtk.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # vtk PKG := vtk diff -r 8474fcb3e1b5 -r 99516e73b368 src/w32api-1-dinput-dsound.patch --- a/src/w32api-1-dinput-dsound.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/w32api-1-dinput-dsound.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch contains some DirectX additions for MinGW's w32api which were provided by the Allegro project. It was generated diff -r 8474fcb3e1b5 -r 99516e73b368 src/w32api-2-directx-additions-for-qt.patch --- a/src/w32api-2-directx-additions-for-qt.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/w32api-2-directx-additions-for-qt.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch contains some DirectX additions for MinGW's w32api which were provided by the Qt project. It was generated via diff -r 8474fcb3e1b5 -r 99516e73b368 src/w32api.mk --- a/src/w32api.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/w32api.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # MinGW Windows API PKG := w32api diff -r 8474fcb3e1b5 -r 99516e73b368 src/winpcap-1-fixes.patch --- a/src/winpcap-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/winpcap-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/winpcap.mk --- a/src/winpcap.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/winpcap.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # WinPcap PKG := winpcap diff -r 8474fcb3e1b5 -r 99516e73b368 src/wt-1-fixes.patch --- a/src/wt-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/wt-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. diff -ur a/cmake/WtFindBoost-vintage.txt b/cmake/WtFindBoost-vintage.txt --- a/cmake/WtFindBoost-vintage.txt 2011-11-15 04:49:29.000000000 -0300 diff -r 8474fcb3e1b5 -r 99516e73b368 src/wt.mk --- a/src/wt.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/wt.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Wt PKG := wt diff -r 8474fcb3e1b5 -r 99516e73b368 src/wxwidgets-test.cpp --- a/src/wxwidgets-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/wxwidgets-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/wxwidgets.mk --- a/src/wxwidgets.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/wxwidgets.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # wxWidgets PKG := wxwidgets diff -r 8474fcb3e1b5 -r 99516e73b368 src/x264-1-fix-bin-bash.patch --- a/src/x264-1-fix-bin-bash.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/x264-1-fix-bin-bash.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. diff -urN x264-snapshot-20100714-2245/configure x264-snapshot-20100714-2245.new/configure --- x264-snapshot-20100714-2245/configure 2010-07-15 06:45:06.000000000 +1000 diff -r 8474fcb3e1b5 -r 99516e73b368 src/x264.mk --- a/src/x264.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/x264.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # x264 PKG := x264 diff -r 8474fcb3e1b5 -r 99516e73b368 src/xerces-1-fix-pkgconfig.patch --- a/src/xerces-1-fix-pkgconfig.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/xerces-1-fix-pkgconfig.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. This patch has been taken from: https://issues.apache.org/jira/browse/XERCESC-1951 diff -r 8474fcb3e1b5 -r 99516e73b368 src/xerces-test.cpp --- a/src/xerces-test.cpp Thu Mar 29 12:10:58 2012 +0200 +++ b/src/xerces-test.cpp Thu Mar 29 12:14:15 2012 +0200 @@ -1,6 +1,6 @@ /* * This file is part of MXE. - * See doc/index.html for further information. + * See index.html for further information. */ #include diff -r 8474fcb3e1b5 -r 99516e73b368 src/xerces.mk --- a/src/xerces.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/xerces.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # Xerces-C++ PKG := xerces diff -r 8474fcb3e1b5 -r 99516e73b368 src/xine-lib-1-fixes.patch --- a/src/xine-lib-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/xine-lib-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/xine-lib.mk --- a/src/xine-lib.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/xine-lib.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # xine-lib PKG := xine-lib diff -r 8474fcb3e1b5 -r 99516e73b368 src/xmlwrapp.mk --- a/src/xmlwrapp.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/xmlwrapp.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # xmlwrapp PKG := xmlwrapp diff -r 8474fcb3e1b5 -r 99516e73b368 src/xvidcore-1-fixes.patch --- a/src/xvidcore-1-fixes.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/xvidcore-1-fixes.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/xvidcore.mk --- a/src/xvidcore.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/xvidcore.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # xvidcore PKG := xvidcore diff -r 8474fcb3e1b5 -r 99516e73b368 src/xz.mk --- a/src/xz.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/xz.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # XZ PKG := xz diff -r 8474fcb3e1b5 -r 99516e73b368 src/zlib-1-win32-static.patch --- a/src/zlib-1-win32-static.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/zlib-1-win32-static.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. Contains ad hoc patches for cross building. diff -r 8474fcb3e1b5 -r 99516e73b368 src/zlib.mk --- a/src/zlib.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/zlib.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # zlib PKG := zlib diff -r 8474fcb3e1b5 -r 99516e73b368 src/zziplib-1-fix-fnmatch.patch --- a/src/zziplib-1-fix-fnmatch.patch Thu Mar 29 12:10:58 2012 +0200 +++ b/src/zziplib-1-fix-fnmatch.patch Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ This file is part of MXE. -See doc/index.html for further information. +See index.html for further information. This patch has been taken from: http://sourceforge.net/tracker/?func=detail&aid=2995373&group_id=6389&atid=306389 diff -r 8474fcb3e1b5 -r 99516e73b368 src/zziplib.mk --- a/src/zziplib.mk Thu Mar 29 12:10:58 2012 +0200 +++ b/src/zziplib.mk Thu Mar 29 12:14:15 2012 +0200 @@ -1,5 +1,5 @@ # This file is part of MXE. -# See doc/index.html for further information. +# See index.html for further information. # ZZIPlib PKG := zziplib diff -r 8474fcb3e1b5 -r 99516e73b368 tools/patch-tool-mxe --- a/tools/patch-tool-mxe Thu Mar 29 12:10:58 2012 +0200 +++ b/tools/patch-tool-mxe Thu Mar 29 12:14:15 2012 +0200 @@ -55,7 +55,7 @@ cd $gitsdir/$pkg_subdir && \ ( echo 'This file is part of MXE.' - echo 'See doc/index.html for further information.' + echo 'See index.html for further information.' echo '' echo 'Contains ad hoc patches for cross building.' echo ''