1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

speedo: Revamped speedo and include a w32 installer.

* build-aux/speedo/: New.
* build-aux/speedo/w32/: New.
--

The new installer uses some code from Gpg4win but is much smaller and
easier to maintain.  To build an installer, unpack GnuPG and then run

  make -f build-aux/speedo.mk  TARBALLS=~/mytarballs installer

~/mytarballs is a directory with tarballs of external libraries.  See
speedo.mk for a list of them.

WARNING: The installed W32 version does not correctly work right now.
This commit is contained in:
Werner Koch 2014-06-10 19:42:34 +02:00
parent 0399d87f7a
commit e06d5d1a3b
13 changed files with 4148 additions and 68 deletions

View file

@ -0,0 +1,27 @@
#! /bin/sh
patch -p0 -l -f $* < $0
exit $?
Without that patch the module is build with wrong symbols and thus
can't be loaded by pango. I don't know why they have this defines
just in this module. It entirely defeats the feature of loading
modules dynamically - maybe this was just a quick hack for including
the code directly - however, I was not able to make that work either.
--- modules/basic/basic-win32.c~ 2011-09-28 16:34:33.000000000 +0200
+++ modules/basic/basic-win32.c 2014-02-20 20:01:10.107723565 +0100
@@ -33,9 +33,10 @@
extern HFONT _pango_win32_font_get_hfont (PangoFont *font);
-#ifndef PANGO_MODULE_PREFIX
-#define PANGO_MODULE_PREFIX _pango_basic_win32
-#endif
+/* #ifndef PANGO_MODULE_PREFIX */
+/* #define PANGO_MODULE_PREFIX _pango_basic_win32 */
+/* #endif */
+#undef PANGO_MODULE_PREFIX
#include "pango-engine.h"
#include "pango-utils.h"