Jehan
9391a0ae6b
build: make the flatpak remote-add call clearer.
2017-06-01 01:01:34 +02:00
Jehan
590924f856
build: update the flatpak-howto.
...
In particular, I didn't have the correct metadata because I was missing
appstream-compose. This should be a dependency of flatpak. But for the
time being, let's just have a note in our howto.
2017-05-12 21:44:41 +02:00
Jehan
6265282115
build: update flatpak-howto.txt to build both 32 and 64-bit from...
...
...same manifest.
2017-05-03 22:48:53 +02:00
Jehan
81a44d5fb0
build: remove workaround for a flatpak bug.
...
The GNOME sdk runtime used to be built which flags not appreciated by
older CPUs. This has now been fixed. Let's get rid of our workaround.
See https://github.com/flatpak/flatpak/issues/143
2017-04-13 16:22:24 +02:00
Marco Ciampa
a774b24270
Small fix in the Windows Installer Italian translation
2017-02-14 12:08:15 +01:00
Jehan
c8ebd043aa
build: workaround python2 crashes in Flatpak.
...
See the upstream issue where python2 would crash on some platforms, yet
not others: https://github.com/flatpak/flatpak/issues/143
For this, I disable introspection on GEGL (which is anyway not useful
in the Flatpak build, I believe), and wrap gdbus-codegen in a temporary
build script for GIMP to force it to use Python 3 (I can't force
globally the $PYTHON environment variable like on Webkit because GIMP
needs Python 2 as dependency).
2017-02-13 15:38:05 +01:00
Jehan
afc69f83ae
build: fix Webkit build in Flatpak package.
...
For some reason, Webkit would not build with Python 2 on a different
machine though it did on mine. Let's just force Python 3 usage (for
build only, not as a runtime dependency) by setting the $PYTHON
environment variable during this build. Anyway Python 3 is available
from the base build so it's not a new dependency.
2017-02-13 15:36:51 +01:00
Michael Henning
6c983eb149
build/win: Upgrade dependencies.
2017-02-04 16:29:36 -05:00
Michael Henning
e00b0db8bf
build/win: Upgrade a few dependencies to fix build
2017-02-04 15:17:21 -05:00
Jehan
d33d80a518
build: poppler-data added as a submodule of poppler.
2017-02-02 21:41:15 +01:00
Jehan
4c33008f5d
build: factorize a bit the flatpak manifest.
...
We can actually group modules together to mark their relationship,
and easily deactivate them together if needed.
I grouped all Python modules, Exiv2 under GEXiv2, ilmbase under
openEXR, and finally libpng and lcms2 under a "duplicate-dependencies"
module to indicate that these modules are available in the runtime
(under a lower version, below our requirements) so we should check
whether to remove them, upon runtime update.
2017-02-01 14:13:32 +01:00
Jehan
c09b54d316
build: enable WebKit dependency and get a full-feature Flatpak build!
...
The build has been fixed by a patch from Upstream:
https://bugs.webkit.org/show_bug.cgi?id=156510
Note that WebKit takes hours to build, so if you just want to test
Flatpak, you may prefer disable this module again.
We now have a full-feature Flatpak build, except for libgudev, which
means that special input devices probably won't work in the GIMP
Flatpak. It is to be noted that Flatpak developers told me that
libudev won't work inside the sandbox anyway. A portal will have
to be implemented. See:
https://github.com/flatpak/flatpak/issues/12#issuecomment-276016074
2017-01-31 19:35:01 +01:00
Jehan
4ff7f23da3
build: last dependency for a full flatpak build, temporarily disabled.
...
The last stable WebkitGTK is 2.14.3 but that apparently corresponds to
WebkitGTK4 (which is already in the GNOME runtime). We need an older
version, and the last available would be 2.4.11.
I disable it though because the build failed in my test but let's save
my work-in-progress.
2017-01-31 00:17:32 +01:00
Jehan
2bef3445de
build: adding Ghostscript dependency to flatpak build.
...
This is a special case build, since make must be run with "so",
and install is `make soinstall` to get a shared library.
See: https://ghostscript.com/doc/9.20/Make.htm#Unix_build
2017-01-31 00:17:32 +01:00
Jehan
c99800b104
build: update flatpak howto.
2017-01-31 00:17:32 +01:00
Jehan
b8e7907a63
build: update the flatpak howto with information on runtime module list.
2017-01-30 16:41:51 +01:00
Jehan
7ffba0314f
build: adding network and dbus unlimited access.
...
This is necessary for opening files from the network.
It is actually possible to allow only some named service bus which
would be much more in line with proper sandboxing. But I can't find
exactly what is the service name used for gvfs (which is the virtual
filesystem apparently used internally for remote file access in GIO).
Also I'm pretty sure we must use other buses for various services. We
should make a list of what service bus are necessary for normal usage.
For the time being though, let's just have a flatpak build with as many
features as possible.
2017-01-29 23:51:47 +01:00
Jehan
efce5d0f2c
build: update jasper in flatpak build to version 2.0.10.
...
I had to figure out a few things about making CMake builds in Flatpak
since jasper moved from autotools in recent versions.
2017-01-29 23:51:47 +01:00
Jehan
0b7b120673
build: add a Flatpak howto.
...
That's a work-in-progress, but that's my current status.
2017-01-29 16:08:58 +01:00
Jehan
ca832fb0ff
build: adding libwmf dependency to flatpak.
...
Main missing dependencies now are libgudev, webkit and ghostscript.
2017-01-29 14:59:36 +01:00
Jehan
448f12c83d
build: adding aalib, libmng and libwebp dependencies to flatpak.
2017-01-29 02:10:57 +01:00
Jehan
4245deb59f
build: add an initial flatpak-builder manifest.
...
Based on Alexander Larsson's original nightly GIMP flatpak. I updated
most dependencies, changed some options, and added some dependencies
whose versions were now too low in the runtime (libpng and lcms2).
I also use the new "--filesystem=xdg-config/GIMP" option, made upon my
request, which means we will want to use a recent flatpak.
Many options are still missing but that's a start with a working
flatpak manifest.
2017-01-29 00:23:16 +01:00
Jernej Simončič
6f0bb88e43
Installer: simplify file inclusion rules
...
No more separate GIMP/everything else directories, also got rid of some old cruft
2016-10-09 00:26:28 +02:00
Michael Henning
2d71da0703
build/win: Disable webkitgtk.
2016-06-04 21:33:42 -04:00
Michael Henning
c52ec55f3a
build/win: Clear DISPLAY before building.
2016-06-04 13:29:42 -04:00
Michael Henning
e8d523ed63
build/win: Upgrade exiv2 to 0.25
2016-06-04 13:17:10 -04:00
Michael Henning
cb02b22db2
build/win: Add pcre and upgrade glib2 to 2.48.1
2016-06-04 13:17:10 -04:00
Michael Henning
508b883c1e
build/win: Start building libmypaint.
2016-06-04 13:17:10 -04:00
Michael Natterer
1c9e5d62fc
Bug 763766 - Suggest changing "Postscript" to "PostScript"
...
We were already using "PostScript" almost everywhere, fix the
remaining strings too.
2016-03-19 22:45:16 +01:00
Jehan
2c6a53351a
build/windows: strengthen `windres` call.
2015-12-31 18:36:03 +01:00
Jehan
1ed8ceeb1a
build/windows: fix Windows build.
...
`windres` seems a very stupid tool and it breaks with double shlashes
in parameter paths. Strengthen the rule a little.
2015-12-29 18:58:34 +01:00
Jasper Krijgsman
0d2aebb347
Bug 732363 - wilber.ico doesn't contain 256x256 layer
...
Contributed by Jasper Krijgsman
(cherry picked from commit 5cbc0e8173
)
2015-11-30 23:22:38 +01:00
Michael Henning
f94a908c4f
build/win: Upgrade gdb to 7.9.1
2015-08-12 14:23:43 -04:00
Michael Henning
7c98c78ec1
build/win: Upgrade libxml2 to 2.9.2
2015-08-12 13:04:07 -04:00
Michael Henning
9ca026e303
build/win: Store mkarchive's temporary archive in /tmp
2015-08-10 22:53:06 -04:00
Michael Henning
c2a0189c98
win: Mark as Windows 10 compatible.
2015-08-10 15:17:47 -04:00
Michael Henning
5b7b7ac55d
build/win: Mark openjpeg2 as a poppler dependency.
2015-07-18 19:48:15 -04:00
Michael Henning
1a70fbfabf
build/win: Upgrade poppler to 0.34.0 and poppler-data to 0.4.7
2015-07-18 10:55:59 -04:00
Michael Henning
0452ea4b85
build/win: Add openjpeg2
2015-07-18 10:54:07 -04:00
Michael Henning
ab869ab35f
build/win: Upgrade librsvg to 2.40.9
2015-07-17 18:27:50 -04:00
Michael Henning
158fa888a6
build/win: Fix libepoxy version number.
2015-07-16 23:22:33 -04:00
Michael Henning
8cc2bbae38
build/win: Upgrade gtk3 to 3.16.5 and add libepoxy
2015-07-16 21:20:41 -04:00
Michael Henning
0bdf9ca15d
build/win: Upgrade pango to 1.36.8
2015-07-16 21:20:41 -04:00
Michael Henning
02ce81d8b0
build/win: Upgrade harfbuzz to 0.9.41
2015-07-04 10:59:47 -04:00
Michael Henning
413af2ed85
build/win: Upgrade freetype2 to 2.5.5
2015-07-01 23:05:41 -04:00
Michael Henning
65076fc30d
build/win: Upgrade libmng to 2.0.3
2015-06-30 22:06:41 -04:00
Michael Henning
a7b5d9803d
build/win: Upgrade libwebp to 0.4.3
2015-06-29 23:01:22 -04:00
Michael Henning
65960f1f94
build/win: Upgrade gettext to 0.19.4
2015-06-26 22:36:10 -04:00
Michael Henning
96e9b5bfcc
build/win: Upgrade iso-codes to 3.58
2015-06-25 19:19:30 -04:00
Michael Henning
3f88b40af1
build/win: Upgrade libgexiv2 to 0.10.3
2015-06-24 22:59:35 -04:00
Michael Henning
c585f6b267
build/win: Upgrade lcms2 to 2.7
2015-06-23 23:09:06 -04:00
Michael Henning
504283760d
build/win: Upgrade glib to 2.44.1
2015-06-22 22:05:10 -04:00
Michael Henning
1e8b9f46a0
build/win: Upgrade gtk2 to 2.24.28
2015-06-07 17:19:11 -04:00
Michael Henning
d77bcaebd6
build/win: Upgrade cairo to 1.14.2
2015-06-06 13:52:18 -04:00
Michael Henning
dae608dfdf
build/win: Fix building iconv on recent gcc versions.
2015-06-06 13:52:18 -04:00
Piotr Drąg
d17bccc724
Add Polish translation of the installer
2015-05-22 19:07:44 +02:00
Jordi Mas
9b729decc3
Add Catalan translation for the win32 installer
2015-05-22 06:02:07 +02:00
Michael Henning
4d9cf01965
build/win: Upgrade libffi to 3.2.1
2015-05-09 23:11:51 -04:00
Michael Henning
d5cab957ac
build/win: Add patches to gtk2 for fixing horizontal scrolling.
2015-04-28 03:16:38 -04:00
Michael Henning
b55d3e8d8e
build/win: Upgrade atk to 2.16.0
2015-04-26 21:23:12 -04:00
Michael Henning
5eaf8045ec
build/win: Upgrade glib2 to 2.44.0
2015-04-25 13:49:20 -04:00
Michael Henning
30c81b3d4e
build/win: Upgrade xz to 5.2.1
2015-04-24 17:09:11 -04:00
Michael Henning
468667e2d2
build/win: Stop setting PATH in the batch file.
...
This is possible since 60197c227d
2015-04-14 17:24:45 -04:00
Michael Henning
613d83679d
build/win: Upgrade gdk-pixbuf2 to 2.30.8
2015-04-14 17:12:13 -04:00
Michael Henning
51daad2bfc
builld/win: Upgrade libpng to 1.6.17
2015-04-14 17:01:53 -04:00
Michael Henning
9994c81ffb
build/win: Apply the same icu tweaks for 64 bit builds.
2015-04-03 13:50:39 -04:00
Michael Henning
6b186266b1
build/win: Patch libmng's Makefile.in instead of Makefile.am
...
It's hacky, but it removes the dependency on a specific
automake version.
2015-04-03 13:38:21 -04:00
Michael Henning
f685dbc7ed
win: Mark as Windows 8.1 compatible.
2015-04-01 01:42:57 -04:00
Michael Henning
748c381fd2
build/win: Add json-glib.
2015-01-21 19:33:40 -05:00
Michael Henning
3a343e02a3
build/win: Upgrade glib2 to 2.42.1
2015-01-21 19:33:40 -05:00
Michael Henning
bb5effe95a
build/win: Upgrade libpng to 1.6.15
2014-11-27 12:16:52 -05:00
Michael Henning
8e4511b8c1
build/win: Upgrade cairo to 1.14.0
2014-10-25 21:35:03 -04:00
Jehan
8c1cd7caac
Makefile: fix VPATH builds for win32.
2014-09-14 18:28:26 +02:00
Michael Henning
df1a352414
build/win: Preserve PATH in environment for building icu-native
2014-09-02 10:41:26 -04:00
Michael Henning
601f6af69b
build/win: Upgrade librsvg to 2.40.2
2014-08-18 11:25:19 -04:00
Michael Henning
0b03a6844c
build/win: Upgrade pango to 1.36.5
2014-08-15 13:31:07 -04:00
Michael Henning
b3d5985c72
build/win: Upgrade pixman to 0.32.6
2014-08-14 18:12:13 -04:00
Michael Henning
b0ad0d6b87
build/win: Upgrade harfbuzz to 0.9.34
2014-08-13 20:08:41 -04:00
Michael Henning
91cb85ea20
build/win: Upgrade poppler to 0.26.3
2014-08-13 16:32:08 -04:00
Michael Henning
416059a3f5
build/win: Tweak gtk2 hack
2014-08-10 15:52:52 -04:00
Michael Henning
90add0f55a
build/win: Remove all extra files while cleaning.
2014-08-09 15:55:52 -04:00
Michael Henning
92f942c71c
build/win: Remove extra poppler hacks.
2014-08-06 00:49:44 -04:00
Michael Henning
bf9cb2155e
build/win: Disable libwmf for now.
2014-07-30 16:34:42 -04:00
Michael Henning
978f8f2b0c
build/win: Add support for building 64-bit libs in jhbuild.
2014-07-30 16:34:42 -04:00
Michael Henning
a4bf1ff1cb
build/win: Reset tarball location on newer jhbuild versions.
2014-07-30 16:34:42 -04:00
Michael Henning
2801d9c387
build/win: Mark poppler as optional
...
Compiling it tends to fail on newer mingw releases.
2014-07-29 23:50:22 -04:00
Michael Henning
f08c519aa2
build/win: Disable lto in cairo
...
It causes issues with older binutils versions. See:
https://bugs.freedesktop.org/show_bug.cgi?id=77060
2014-07-29 23:50:22 -04:00
Michael Henning
cdb7f185a7
build/win: Upgrade libpng to 1.6.12
2014-07-29 23:50:22 -04:00
Michael Henning
a7953fb1a1
build/win: Upgrade webkitgtk to 2.0.4
...
Also fix the build against the latest versions of freetype.
2014-05-31 23:38:57 -04:00
Michael Henning
78f84e6267
build/win: Upgrade poppler to 0.26.1
2014-05-29 19:02:06 -04:00
Michael Henning
9ffb506f68
build/win: Upgrade pango to 1.36.3
2014-05-22 19:08:26 -04:00
Michael Henning
8e9424ffe3
build/win: Upgrade gdk-pixbuf2 to 2.30.7
2014-05-21 19:54:41 -04:00
Michael Henning
7266cd9c1f
build/win: Upgrade libjpeg-turbo to 1.3.1
2014-05-20 20:01:31 -04:00
Michael Henning
4671904f1a
build/win: Upgrade gdb to 7.7.1
2014-05-19 19:31:48 -04:00
Michael Henning
54b1c5e740
build/win: Upgrade poppler to 0.26.0
2014-05-19 19:04:50 -04:00
Michael Henning
e9158b8be0
build/win: Improvements to checkversions.sh
...
checkversions.sh now:
* No longer needs a build output directory to run
* Has comments
* Filters out irrelevant results
2014-05-18 11:40:09 -04:00
Michael Henning
a2b2c82e44
build/win: Upgrade libgexiv2 to 0.10.1
2014-05-18 11:00:48 -04:00
Michael Henning
79832618d5
build/win: We now need libxml-simple-perl on the host system.
2014-05-10 10:58:48 -04:00
Michael Henning
23ec10b2c6
build/win: Install and use gnome-icon-theme
2014-05-09 23:15:06 -04:00
Michael Henning
8593cae2ee
build/win: Upgrade atk to 2.12.0
2014-05-09 21:09:44 -04:00
Michael Henning
4377dda9e3
build/win: Upgrade gtk2 to 2.24.23
2014-05-08 18:34:46 -04:00
Michael Henning
767fc83864
build/win: Upgrade lcms2 to 2.6
2014-05-06 20:09:19 -04:00
Michael Henning
4d4c40b950
build/win: Add a script to create binary packages of individual dependencies
2014-05-04 13:09:58 -04:00
Michael Henning
55181571c3
build/win: Upgrade glib to 2.40.0
2014-05-04 09:53:14 -04:00
Michael Henning
dc7c4bf4b8
build/win: Upgrade fontconfig to 2.11.1
2014-05-03 13:35:18 -04:00
Michael Henning
017b6fabea
build/win: Upgrade harfbuzz to 0.9.28
2014-05-02 16:56:49 -04:00
Michael Henning
7c38bf1556
build/win: Upgrade libpng to 1.6.10
2014-04-23 22:44:18 -04:00
Michael Henning
3d219b5ac2
build/win: Upgrade pkg-isocodes to 3.52
2014-04-15 19:54:49 -04:00
Michael Henning
4088f34e4b
build/win: Update location of gexiv2.
2014-04-15 19:54:49 -04:00
Michael Henning
0df1c419d0
build/win: Upgrade freetype2 to 2.5.3
2014-03-11 21:00:19 -04:00
Michael Henning
03a57dff12
build/win: Upgrade glib to 2.39.91
...
The unstable version is needed for the fix in
774e064fbf
2014-03-08 20:02:03 -05:00
Michael Henning
db515b3701
build/win: Upgrade gdk-pixbuf2 to 2.30.6
2014-03-03 22:00:23 -05:00
Michael Henning
7743dca16f
build/win: Upgrade libpng to 1.6.9
2014-02-19 11:09:32 -05:00
Michael Henning
8bd729e6ad
build/win: Upgrade harfbuzz to 0.9.26
2014-02-17 09:48:26 -05:00
Michael Henning
4bd35bd53f
build/win: Upgrade poppler to 1.36.2
2014-02-07 14:01:45 -05:00
Michael Henning
df5e585a94
build/win: Upgrade libwebp to 0.4.0
2014-02-06 21:09:43 -05:00
Michael Henning
f4478907d8
build/win: Upgrade exiv2 to 0.24
...
And also switch to compiling exiv2 with cmake.
2014-02-05 14:07:40 -05:00
Michael Henning
d6c3fac4e8
build/win: Upgrade gdk-pixbuf2 to 2.30.4
2014-02-04 21:36:23 -05:00
Michael Henning
6faeef6335
build/win: Upgrade gettext to 0.18.3.2
2014-01-21 14:29:18 -05:00
Michael Henning
6a9ada2fac
build/win: Upgrade gdk-pixbuf2 to 2.30.3
2014-01-20 11:13:56 -05:00
Michael Henning
3e63af2732
build/win: Upgrade libpng to 1.6.8
2014-01-19 11:21:05 -05:00
Michael Henning
d9a46884bc
build/win: Upgrade freetype2 to 2.5.2
2014-01-18 10:35:35 -05:00
Michael Henning
3e87ba740c
build/win: Upgrade poppler to 0.24.5
2014-01-16 21:52:26 -05:00
Michael Henning
0ca7b9a811
build/win: Upgrade gdk-pixbuf2 to 2.30.2
2014-01-12 20:03:25 -05:00
Michael Henning
8b42761414
build/win: Include gdb and debug info in all builds.
2013-12-09 15:49:55 -05:00
Michael Henning
f3b78cb218
build/win: Upgrade harfbuzz to 0.9.24
2013-12-03 17:52:56 -05:00
Michael Henning
c3911bd0f5
build/win: Upgrade freetype2 to 2.5.1
2013-12-02 20:13:32 -05:00
Michael Henning
007faf2b32
build/win: Upgrade poppler to 0.24.4
2013-12-01 11:33:38 -05:00
Michael Henning
d22d5d1ed9
build/win: Upgrade libpng to 1.6.7
2013-11-24 16:07:14 -05:00
Michael Henning
ec11a6c6b3
build/win: Upgrade pixman to 0.32.4
2013-11-20 22:21:22 -05:00
Michael Henning
fd8bddae22
build/win: Upgrade glib to 2.38.2
2013-11-18 17:20:21 -05:00
Michael Henning
d6237f72ff
build/win: Mark libmng as an optional dependency.
2013-11-17 21:34:14 -05:00
Michael Henning
ddd48f6e0b
build/win: Fix building 64-bit gtk2
2013-11-15 20:30:38 -05:00
Michael Henning
6a42e3cb62
build/win: Upgrade pixman to 0.32.2
2013-11-15 16:26:57 -05:00
Michael Henning
ff1e1bf176
build/win: Upgrade pango to 1.36.1
2013-11-12 17:14:41 -05:00
Michael Henning
9779657ea8
build/win: Upgrade libsoup to 2.44.2
2013-11-12 16:26:21 -05:00
Michael Henning
0711a02ba7
build/win: Upgrade gdk-pixbuf to 2.30.1
2013-11-11 19:19:14 -05:00
Michael Henning
2d86772631
build/win: Also clean git repositories in ./clean script.
2013-11-07 14:04:28 -05:00
Michael Henning
e7bbc0bdbc
build/win: Upgrade sqlite to 3.8.1
2013-11-07 10:06:33 -05:00
Michael Henning
0aba2e0d8f
build/win: Upgrade gettext to 0.18.3.1
2013-11-07 10:01:09 -05:00
Michael Henning
87cd8bab66
build/win: Upgrade freetype2 to 2.5.0.1
2013-11-06 20:39:38 -05:00
Michael Henning
5d675005a6
build/win: Upgrade libmng to 2.0.2
2013-11-06 20:06:01 -05:00
Michael Henning
bf1cf7ec35
build/win: Add poppler-data
2013-11-05 19:42:06 -05:00
Michael Henning
8c2ed47c4c
build/win: Upgrade poppler to 0.24.3
2013-11-05 15:47:57 -05:00
Michael Henning
c12a4e85ae
build/win: Upgrade glib2 to 2.38.1
2013-11-04 19:24:10 -05:00
Michael Henning
8453087f5d
build/win: Upgrade pango to 1.36.0
2013-11-03 10:35:32 -05:00
Michael Henning
4573a12b70
build/win: Upgrade harfbuzz to 0.9.23
2013-11-02 11:29:09 -04:00
Michael Henning
0ef745cad2
build/win: Start building libgexiv2 and exiv2
2013-11-01 20:16:17 -04:00
Michael Henning
09bec557d4
build/win: Fix string comparison in split-build for non-bash shells.
2013-10-28 19:34:37 -04:00
Michael Henning
33d840346a
build/win: Upgrade atk to 2.10.0
2013-10-16 20:07:34 -04:00
Michael Henning
22b6cb4833
build/win: Upgrade gtk2 to 2.24.22
2013-10-14 11:03:28 -04:00
Michael Henning
7e2c50d370
build/win: Upgrade glib2 to 2.38.0
2013-10-13 11:11:49 -04:00
Michael Henning
fdc5dc3132
build/win: Upgrade libpng to 1.6.6
2013-10-06 16:33:38 -04:00
Michael Henning
9703f6333f
build/win: Upgrade glib2 to 2.36.4
2013-09-21 11:57:43 -04:00
Michael Henning
a2cee5d589
build/win: Never build webkitgtk with debugging symbols.
...
I've seen the dll take insane amounts of space (3.3 GB) with debug
symbols on some compilers, and I doubt the symbols will be needed.
2013-09-18 20:07:24 -04:00
Michael Henning
b2bbb1a8a7
build/win: Disable sse2 in pixman (Bug 707653)
2013-09-17 16:20:26 -04:00
Michael Henning
31954afcf8
build/win: Automatically remove unused tarballs.
2013-09-16 21:10:15 -04:00
Michael Henning
b74623090b
build/win: Remove -march=i686 flag
...
It used to be needed for a build hack, but it no longer is.
2013-09-13 20:32:53 -04:00
Michael Henning
a38d361bc0
build/win: Upgrade pixman to 0.30.2
2013-09-11 19:59:47 -04:00
Michael Henning
533ddd452d
build/win: Upgrade cairo to 1.12.16
2013-09-01 09:46:49 -04:00
Michael Henning
7e80a4f891
build/win: Add a jhbuild project for making windows binaries.
...
This was originally here:
http://github.com/drawoc/windows-gimp-jhbuild
2013-08-28 16:31:08 -04:00
João S. O. Bueno
15463749f8
Adding Brazilian Portuguese translation for GIMP-Windows install
2012-10-15 10:02:18 -03:00
Jernej Simončič
1243e0355b
Windows: mark GIMP as Windows 8 compatible
2012-10-09 15:48:28 +02:00
Michael Schumacher
f524d20360
Added plug-ins.ico to EXTRA_DIST
2011-08-29 22:19:58 +02:00
Michael Schumacher
88b916a4ab
Different resource rule approach
...
The last change fixed the warnings, but broke the build.
This reintroduces some warnings, but fixes the build again.
2011-04-15 21:55:34 +02:00
Martin Nordholts
b5a706b3c3
build: Update buildbot/suppressed-warnings.txt, warning was fixed
2011-02-09 23:48:32 +01:00
Martin Nordholts
5f16d2ccc3
build: Update buildbot/suppressed-warnings.txt for scheme.c
2011-02-08 08:15:18 +01:00
Martin Nordholts
e5a9d0a181
Update build/buildbot/suppressed-warnings.txt
...
We don't use non-public gegl_node_get_pad() GEGL API any longer.
2011-01-24 08:11:35 +01:00
Michael Natterer
711313e858
build: remove suppressed warnings (see commit below)
2010-11-24 22:03:04 +01:00
Michael Natterer
7b320c7bf6
Get rid of DOS line endings
2010-11-21 16:09:09 +01:00
Martin Nordholts
08a3a1dca7
build/buildbot: Suppress pygimp gimp_drawable_transform_* warnings
2010-10-06 20:04:37 +02:00
Martin Nordholts
1e96a981a5
build/buildbot: Suppress png.h deprecation warnings fixup 2...
2010-10-05 06:56:20 +02:00
Martin Nordholts
cacfc0181c
build/buildbot: Suppress png.h deprecation warnings fixup...
2010-10-04 22:57:32 +02:00
Martin Nordholts
b8ed5fea54
build/buildbot: Suppress png.h deprecation warnings
2010-10-04 22:50:48 +02:00
Martin Nordholts
ee82861871
build/buildbot: Supress jas_config.h warnings
2010-10-04 22:39:06 +02:00
Mukund Sivaraman
333dfc7f13
Fix warnings from windows build related .rule files
2010-10-04 20:17:22 +05:30
Martin Nordholts
3047bbaa21
suppressed-warnings.txt: Don't suppress fixed warning
...
Don't suppress warning fixed in
69604ef12d
.
2010-10-03 14:16:12 +02:00
Martin Nordholts
5275270b36
build/buildbot: Supress AM_PROG_LIBTOOL warning with autoconf 2.68
2010-10-03 08:48:45 +02:00
Michael Schumacher
a5071f1252
Fix version resources for app/ and add the same code for plug-ins
2010-09-30 00:47:58 +02:00
Nils Philippsen
0c0470f9d6
use computed copyright year in Windows rc files
2010-09-28 17:56:16 +02:00
Martin Nordholts
27d3070a73
build: Cleanup in buildbot/suppressed-warnings.txt
2010-09-26 12:47:24 +02:00
Martin Nordholts
6af4cd6cff
build: Update buildbot/suppressed-warnings.txt again
...
Update buildbot/suppressed-warnings.txt again, hopefully final time,
all warnings should be fixed or suppressed now.
2010-09-05 23:47:06 +02:00
Martin Nordholts
92b1d80e0c
build: Update buildbot/suppressed-warnings.txt
2010-09-04 13:24:31 +02:00
Martin Nordholts
5f8a13a360
build: Update buildbot/suppressed-warnings.txt
2010-09-03 09:06:13 +02:00
Martin Nordholts
d791e308f1
build: Rename to buildbot/suppressed-warnings.txt
...
Rename buildbot/suppressed_warnings.txt to
buildbot/suppressed-warnings.txt, dashes are nicer in file names.
2010-09-01 17:14:24 +02:00
Sven Neumann
5f77a0c33f
build/windows: remove trailing whitespace and fix file coding system
2010-09-01 14:14:57 +02:00
Michael Schumacher
e77dd90fc0
Bug 574018 - Add a manifest to executables
...
Created a resource file for plug-ins and a rule to link it to them.
The application icon file is smaller than the default one, there's no
point in doubling the size of a plug-in executable just for an icon.
If no problems turn up, this will close the bug.
2010-09-01 08:24:45 +02:00
Michael Schumacher
81024bd501
Adjusted copyright date to 2010
2010-09-01 08:19:24 +02:00
Martin Nordholts
b8c8993ff9
build: Add initial version of buildbot/suppressed_warnings.txt
2010-08-31 22:52:22 +02:00
Michael Schumacher
9781cf1523
Bug 574018 - Add a manifest to executables
...
This step moves the %.rc.o pattern rule to a small include file in the
build/windows/ directory. Michael Natterer suggested this approach in
order to minimize the changes done to each executable's Makefile.am.
2010-08-27 21:31:38 +02:00
Michael Schumacher
82dca2ecf4
Bug 574018 - Add a manifest to executables
...
Eventually all executables will have the manifest and version resources
linked. In this initial step, the current resources are moved from the
app/ directory to a global build/windows directory.
2010-08-26 22:10:07 +02:00