chromium-bsu stable port information

Package: chromium-bsu
Version: 0.9.14.1
Revision: 6
Description: Fast paced, top-scrolling space shooter
License: Artistic
Maintainer: Hanspeter Niederstrasser
Depends: <<
fontconfig2-shlibs,
libftgl2-shlibs,
libgettext8-shlibs,
libglpng1-shlibs,
sdl-image-shlibs,
sdl-mixer-shlibs,
sdl-shlibs
<<
BuildDepends: <<
automake1.11,
fink (>= 0.24.12),
fink-package-precedence,
fontconfig2-dev,
freetype219,
gettext-tools,
libftgl2,
libgettext8-dev,
libglpng1,
libiconv-dev,
libvorbis0,
pkgconfig,
sdl-image,
sdl-mixer,
sdl
<<
Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: b8b41d08cd20cd870f497d06cf103db3
PatchFile: %n.patch
PatchFile-MD5: c33c3c2fce0ef464f9b7c7bc2ef57f10
PatchScript: <<
%{default_script}
### macro for HAVE_APPLE_OPENGL_FRAMEWORK became HAVE_OPENGL_GL_H, but code wasn't updated to reflect new #define
/usr/bin/sed -i.bak -e s/HAVE_APPLE_OPENGL_FRAMEWORK/HAVE_OPENGL_GL_H/g src/*
### Fink's glpng.h is in GL/glpng.h, nog glpng/glpng.h
/usr/bin/perl -pi -e 's,glpng\/glpng\.h,GL/glpng\.h,g' src/Image.cpp src/MainGL.cpp
<<
SetLDFLAGS: -lintl
ConfigureParams: --without-x --enable-dependency-tracking
GCC: 4.0
CompileScript: <<
autoreconf
PKG_CONFIG_PATH=%p/lib/fontconfig2/lib/pkgconfig:$PKG_CONFIG_PATH ./configure %c
/usr/bin/make -w
fink-package-precedence .
<<
#InstallScript: <<
# /usr/bin/install -d -m 755 %i/bin
# /usr/bin/install -d -m 755 %i/share
# /usr/bin/install -m 755 bin/%n %i/bin
# /bin/rm -rf data/CVS data/doc/CVS data/doc/images/CVS data/fonts/CVS data/png/CVS data/wav/CVS
# /bin/cp -R data %i/share/%n
#<<
DocFiles: AUTHORS ChangeLog COPYING README
RuntimeVars: <<
CHROMIUM_DATA: %p/share/%n
<<
Homepage: http://chromium-bsu.sourceforge.net
DescDetail: <<
You are captain of the cargo ship Chromium B.S.U., responsible for delivering
supplies to our troops on the front line. Your ship has a small fleet of
robotic fighters which you control from the relative safety of the Chromium
vessel.

* Do not let ANY enemy ships get past your fighters! Each enemy ship that
makes it past the bottom of the screen will attack the Chromium, and you lose
a fighter.
* Use your fighters as weapons! Crash into enemies to destroy them before
they can get past you.
* Strategic suicide is a powerful tactic! When the Chromium launches a new
fighter, it releases a high energy burst which destroys all enemies in range.
* Self-destruct to preserve your ammunition! A double-right-click will cause
your current fighter to self-destruct. Before the ship blows up, it ejects its
ammunition so that the next fighter can pick it up.
<<
DescUsage: <<
-f/--fullscreen : run in fullscreen mode
-w/--window : run in windowed mode
-v/--vidmode : mode 0 = 512 x 384
: 1 = 640 x 480
: 2 = 800 x 600
: 3 = 1024 x 768
: 4 = 1280 x 1024
na/--noaudio : do not initialize audio
<<
DescPort: <<
config.h patch is from git commit
http://chromium-bsu.git.sourceforge.net/git/gitweb.cgi?p=chromium-bsu/chromium-bsu;a=commitdiff;h=c2e316b05d31822b55ec7a4db951cb8da4bdccda

MainGLUT.cpp patch is from git commit
http://chromium-bsu.git.sourceforge.net/git/gitweb.cgi?p=chromium-bsu/chromium-bsu;a=commitdiff;h=fa42dad13fe0bbc95848720f8c2421131bc3ddd7

configure.ac patch for appending to *FLAGS is required for 10.4 to work around the += bashisms.
<<

chromium-bsu stable port .patch

diff --git a/Makefile.am b/Makefile.am
index 94aecf5..72f628d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3,6 +3,8 @@ MAINTAINERCLEANFILES = \
Makefile.in \
config.h.in \
config.h.in~ \
+ chromium-bsu-config.h.in \
+ chromium-bsu-config.h.in~ \
config.sub \
config.guess \
aclocal.m4 \
diff --git a/configure.ac b/configure.ac
index 2fd5c47..cb4609f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7,7 +7,7 @@ AC_INIT([Chromium B.S.U.], [0.9.14.1], [http://sf.net/projects/chromium-bsu/bugs
AM_INIT_AUTOMAKE([foreign])

AC_CONFIG_SRCDIR([src/main.cpp])
-AM_CONFIG_HEADER([config.h])
+AM_CONFIG_HEADER([chromium-bsu-config.h])

# Programs
AC_PROG_CXX
@@ -148,7 +148,7 @@
fi

if test "x$TEXT_TYPE" = xGLC -a "x$FONT_NAME" != x ; then
- TEXT_CFLAGS+=" -DFONT_NAME=\"\\\"$FONT_NAME\\\"\""
+ TEXT_CFLAGS="$TEXT_CFLAGS -DFONT_NAME=\"\\\"$FONT_NAME\\\"\""
AC_SUBST(TEXT_CFLAGS)
FONT="$FONT_NAME"
elif test "x$TEXT_TYPE" = xGLC ; then
@@ -156,18 +156,18 @@
fi

if test "x$TEXT_TYPE" = xFTGL -a "x$FONT_PATH" != x ; then
- TEXT_CFLAGS+=" -DFONT_PATH=\"\\\"$FONT_PATH\\\"\""
+ TEXT_CFLAGS="$TEXT_CFLAGS -DFONT_PATH=\"\\\"$FONT_PATH\\\"\""
AC_SUBST(TEXT_CFLAGS)
FONT="$FONT_PATH "
fi

if test "x$TEXT_TYPE" = xFTGL -a "x$HAVE_FONTCONFIG" = xyes ; then
AC_DEFINE(HAVE_FONTCONFIG, 1, [define to use fontconfig])
- TEXT_CFLAGS+=" $FONTCONFIG_CFLAGS"
+ TEXT_CFLAGS="$TEXT_CFLAGS $FONTCONFIG_CFLAGS"
AC_SUBST(TEXT_CFLAGS)
- TEXT_LIBS+=" $FONTCONFIG_LIBS"
+ TEXT_LIBS="$TEXT_LIBS $FONTCONFIG_LIBS"
AC_SUBST(TEXT_LIBS)
- FONT+="fontconfig (bold Gothic Uralic) "
+ FONT="$FONT fontconfig (bold Gothic Uralic) "
fi

if test "x$TEXT_TYPE" = xFTGL -a "x$HAVE_FONTCONFIG" != xyes -a "x$FONT_PATH" = x ; then
@@ -228,7 +228,7 @@
AC_SUBST(IMAGE_LIBS)
IMAGE_TYPE=glpng
if test "x$WINDOW_TYPE" = xSDL -a "x$HAVE_SDLIMAGE" = xyes -a "x$enable_sdlimage" != no ; then
- IMAGE_LIBS+=" -lSDL_image"
+ IMAGE_LIBS="$IMAGE_LIBS -lSDL_image"
AC_SUBST(IMAGE_LIBS)
AC_DEFINE(ENABLE_WINDOW_ICON, 1, [define to enable the window icon (needs SDL_image)])
WINDOW_ICON=yes
diff --git a/src/Audio.cpp b/src/Audio.cpp
index a852212..ac717af 100644
--- a/src/Audio.cpp
+++ b/src/Audio.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/Audio.h b/src/Audio.h
index b7c49cb..3b090d4 100644
--- a/src/Audio.h
+++ b/src/Audio.h
@@ -9,7 +9,7 @@
#define Audio_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#define NUM_EXPLO 2
diff --git a/src/AudioOpenAL.cpp b/src/AudioOpenAL.cpp
index fdd9d19..50601e7 100644
--- a/src/AudioOpenAL.cpp
+++ b/src/AudioOpenAL.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#ifdef AUDIO_OPENAL
diff --git a/src/AudioOpenAL.h b/src/AudioOpenAL.h
index 582db9d..d388ee6 100644
--- a/src/AudioOpenAL.h
+++ b/src/AudioOpenAL.h
@@ -9,7 +9,7 @@
#define AudioOpenAL_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#ifdef AUDIO_OPENAL
diff --git a/src/AudioSDLMixer.cpp b/src/AudioSDLMixer.cpp
index 5fbfa19..ba3f547 100644
--- a/src/AudioSDLMixer.cpp
+++ b/src/AudioSDLMixer.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#ifdef AUDIO_SDLMIXER
diff --git a/src/Config.cpp b/src/Config.cpp
index 71fb937..be6feb3 100644
--- a/src/Config.cpp
+++ b/src/Config.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/EnemyAircraft.cpp b/src/EnemyAircraft.cpp
index 049a4de..eef1de9 100644
--- a/src/EnemyAircraft.cpp
+++ b/src/EnemyAircraft.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/EnemyAircraft.h b/src/EnemyAircraft.h
index 6b99499..ff07325 100644
--- a/src/EnemyAircraft.h
+++ b/src/EnemyAircraft.h
@@ -9,7 +9,7 @@
#define EnemyAircraft_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/EnemyAmmo.cpp b/src/EnemyAmmo.cpp
index 6636930..0c38b7a 100644
--- a/src/EnemyAmmo.cpp
+++ b/src/EnemyAmmo.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "EnemyAmmo.h"
diff --git a/src/EnemyAmmo.h b/src/EnemyAmmo.h
index 5dfc7c1..4f26b6f 100644
--- a/src/EnemyAmmo.h
+++ b/src/EnemyAmmo.h
@@ -9,7 +9,7 @@
#define EnemyAmmo_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/EnemyFleet.cpp b/src/EnemyFleet.cpp
index b069c78..19adf41 100644
--- a/src/EnemyFleet.cpp
+++ b/src/EnemyFleet.cpp
@@ -11,7 +11,7 @@
#include

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/EnemyFleet.h b/src/EnemyFleet.h
index 0880be5..447d117 100644
--- a/src/EnemyFleet.h
+++ b/src/EnemyFleet.h
@@ -9,7 +9,7 @@
#define EnemyFleet_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/Explosions.cpp b/src/Explosions.cpp
index fc390d6..5fdb6b6 100644
--- a/src/Explosions.cpp
+++ b/src/Explosions.cpp
@@ -10,7 +10,7 @@
#include

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/Explosions.h b/src/Explosions.h
index 078034c..b0f9312 100644
--- a/src/Explosions.h
+++ b/src/Explosions.h
@@ -9,7 +9,7 @@
#define Explosions_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/Global.cpp b/src/Global.cpp
index 5ec606b..95c4bed 100644
--- a/src/Global.cpp
+++ b/src/Global.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/Ground.h b/src/Ground.h
index 8af35d6..ab1b777 100644
--- a/src/Ground.h
+++ b/src/Ground.h
@@ -9,7 +9,7 @@
#define Ground_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/GroundMetal.cpp b/src/GroundMetal.cpp
index 112f822..4c31ada 100644
--- a/src/GroundMetal.cpp
+++ b/src/GroundMetal.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "GroundMetal.h"
diff --git a/src/GroundMetal.h b/src/GroundMetal.h
index b18357c..58b80d5 100644
--- a/src/GroundMetal.h
+++ b/src/GroundMetal.h
@@ -9,7 +9,7 @@
#define GroundMetal_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/GroundMetalSegment.cpp b/src/GroundMetalSegment.cpp
index 859bb6d..72aab48 100644
--- a/src/GroundMetalSegment.cpp
+++ b/src/GroundMetalSegment.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "GroundMetalSegment.h"
diff --git a/src/GroundSea.cpp b/src/GroundSea.cpp
index 2d40146..e84040f 100644
--- a/src/GroundSea.cpp
+++ b/src/GroundSea.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "GroundSea.h"
diff --git a/src/GroundSea.h b/src/GroundSea.h
index a5b1778..bc06087 100644
--- a/src/GroundSea.h
+++ b/src/GroundSea.h
@@ -9,7 +9,7 @@
#define GroundSea_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/GroundSeaSegment.cpp b/src/GroundSeaSegment.cpp
index 9fab74f..5a330a6 100644
--- a/src/GroundSeaSegment.cpp
+++ b/src/GroundSeaSegment.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "GroundSeaSegment.h"
diff --git a/src/HeroAircraft.cpp b/src/HeroAircraft.cpp
index 0a88716..b54319c 100644
--- a/src/HeroAircraft.cpp
+++ b/src/HeroAircraft.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "HeroAircraft.h"
diff --git a/src/HeroAircraft.h b/src/HeroAircraft.h
index 0835bec..46d1af9 100644
--- a/src/HeroAircraft.h
+++ b/src/HeroAircraft.h
@@ -9,7 +9,7 @@
#define HeroAircraft_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/HeroAmmo.cpp b/src/HeroAmmo.cpp
index 233f230..4522e84 100644
--- a/src/HeroAmmo.cpp
+++ b/src/HeroAmmo.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/HeroAmmo.h b/src/HeroAmmo.h
index 601cc4e..6d0b9a8 100644
--- a/src/HeroAmmo.h
+++ b/src/HeroAmmo.h
@@ -9,7 +9,7 @@
#define HeroAmmo_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/HiScore.cpp b/src/HiScore.cpp
index 09e5939..d72992b 100644
--- a/src/HiScore.cpp
+++ b/src/HiScore.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/Image.cpp b/src/Image.cpp
index 54b0aee..3ca62db 100644
--- a/src/Image.cpp
+++ b/src/Image.cpp
@@ -8,7 +8,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#if IMAGE_SDL
diff --git a/src/MainGL.cpp b/src/MainGL.cpp
index cabc868..581d831 100644
--- a/src/MainGL.cpp
+++ b/src/MainGL.cpp
@@ -8,7 +8,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/MainGLUT.cpp b/src/MainGLUT.cpp
index e5ff460..fdf9ae7 100644
--- a/src/MainGLUT.cpp
+++ b/src/MainGLUT.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
@@ -20,7 +20,11 @@
#include
#include

+#ifdef HAVE_GLUT_GLUT_H
+#include
+#else
#include
+#endif

#include "Config.h"
#include "HiScore.h"
diff --git a/src/MainSDL.cpp b/src/MainSDL.cpp
index 7d58869..7e8051a 100644
--- a/src/MainSDL.cpp
+++ b/src/MainSDL.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/MainSDL_Event.cpp b/src/MainSDL_Event.cpp
index 9bf482e..a8425c8 100644
--- a/src/MainSDL_Event.cpp
+++ b/src/MainSDL_Event.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/MenuGL.cpp b/src/MenuGL.cpp
index 7934406..7e81590 100644
--- a/src/MenuGL.cpp
+++ b/src/MenuGL.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/MenuGL.h b/src/MenuGL.h
index db9be2e..b081e36 100644
--- a/src/MenuGL.h
+++ b/src/MenuGL.h
@@ -9,7 +9,7 @@
#define MenuGL_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/PowerUps.cpp b/src/PowerUps.cpp
index 3aa1ca8..be7d77b 100644
--- a/src/PowerUps.cpp
+++ b/src/PowerUps.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/PowerUps.h b/src/PowerUps.h
index df06736..2087579 100644
--- a/src/PowerUps.h
+++ b/src/PowerUps.h
@@ -9,7 +9,7 @@
#define PowerUps_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/ScreenItemAdd.cpp b/src/ScreenItemAdd.cpp
index f0d72bc..55250c0 100644
--- a/src/ScreenItemAdd.cpp
+++ b/src/ScreenItemAdd.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/StatusDisplay.cpp b/src/StatusDisplay.cpp
index bd8a9cf..8141198 100644
--- a/src/StatusDisplay.cpp
+++ b/src/StatusDisplay.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/StatusDisplay.h b/src/StatusDisplay.h
index 37d09d6..fd57169 100644
--- a/src/StatusDisplay.h
+++ b/src/StatusDisplay.h
@@ -9,7 +9,7 @@
#define StatusDisplay_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/Text.cpp b/src/Text.cpp
index bf85012..95a97bb 100644
--- a/src/Text.cpp
+++ b/src/Text.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "Text.h"
diff --git a/src/Text.h b/src/Text.h
index 0708420..52a46fd 100644
--- a/src/Text.h
+++ b/src/Text.h
@@ -9,7 +9,7 @@
#define Text_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

/**
diff --git a/src/TextFTGL.cpp b/src/TextFTGL.cpp
index ed1d6b4..ef38278 100644
--- a/src/TextFTGL.cpp
+++ b/src/TextFTGL.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#ifdef TEXT_FTGL
diff --git a/src/TextFTGL.h b/src/TextFTGL.h
index 242dfc2..087f2b8 100644
--- a/src/TextFTGL.h
+++ b/src/TextFTGL.h
@@ -9,7 +9,7 @@
#define TextFTGL_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#ifdef TEXT_FTGL
diff --git a/src/TextGLC.cpp b/src/TextGLC.cpp
index 9ce4747..38684a4 100644
--- a/src/TextGLC.cpp
+++ b/src/TextGLC.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#ifdef TEXT_GLC
diff --git a/src/TextGLC.h b/src/TextGLC.h
index 4b1c0f5..c10ab99 100644
--- a/src/TextGLC.h
+++ b/src/TextGLC.h
@@ -9,7 +9,7 @@
#define TextGLC_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#ifdef TEXT_GLC
diff --git a/src/define.h b/src/define.h
index f30e4f5..c9c0fbe 100644
--- a/src/define.h
+++ b/src/define.h
@@ -9,7 +9,7 @@
#define define_h

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

//#define SRAND (2.0*(0.5-(rand()/(double)RAND_MAX)))
diff --git a/src/main.cpp b/src/main.cpp
index 02611c4..6fe40c6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "gettext.h"
diff --git a/src/textGeometryBSU.cpp b/src/textGeometryBSU.cpp
index cbcadb5..c6a3651 100644
--- a/src/textGeometryBSU.cpp
+++ b/src/textGeometryBSU.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"
diff --git a/src/textGeometryChromium.cpp b/src/textGeometryChromium.cpp
index 9b12cae..b0515e1 100644
--- a/src/textGeometryChromium.cpp
+++ b/src/textGeometryChromium.cpp
@@ -7,7 +7,7 @@
*/

#ifdef HAVE_CONFIG_H
-#include
+#include
#endif

#include "compatibility.h"

chromium-bsu _unstable_ port .patch