=== modified file 'CMakeLists.txt'
--- CMakeLists.txt	2013-08-05 12:46:05 +0000
+++ CMakeLists.txt	2013-08-05 14:39:14 +0000
@@ -403,6 +403,7 @@
 add_dependencies( pcbnew boost )
 add_dependencies( eeschema boost )
 add_dependencies( cvpcb boost )
+add_dependencies( gal boost )
 add_dependencies( common boost )
 add_dependencies( pcbcommon boost )
 add_dependencies( 3d-viewer boost )

=== modified file 'common/gal/stroke_font.cpp'
--- common/gal/stroke_font.cpp	2013-07-29 12:12:27 +0000
+++ common/gal/stroke_font.cpp	2013-08-02 19:01:53 +0000
@@ -29,6 +29,10 @@
 
 using namespace KiGfx;
 
+
+const double STROKE_FONT::LINE_HEIGHT_RATIO  = 1.6;
+
+
 STROKE_FONT::STROKE_FONT( GAL* aGal ) :
     m_gal( aGal ),
     m_bold( false ),

=== modified file 'include/gal/stroke_font.h'
--- include/gal/stroke_font.h	2013-07-09 08:00:23 +0000
+++ include/gal/stroke_font.h	2013-08-02 19:01:58 +0000
@@ -182,7 +182,7 @@
      */
     VECTOR2D computeTextSize( const std::string& aText ) const;
 
-    static const double LINE_HEIGHT_RATIO  = 1.6;
+    static const double LINE_HEIGHT_RATIO;
 };
 } // namespace KiGfx
 

=== modified file 'pcbnew/pcb_painter.cpp'
--- pcbnew/pcb_painter.cpp	2013-08-02 13:57:24 +0000
+++ pcbnew/pcb_painter.cpp	2013-08-02 19:00:55 +0000
@@ -43,6 +43,10 @@
 
 using namespace KiGfx;
 
+
+const double PCB_RENDER_SETTINGS::MAX_FONT_SIZE = 100000000;
+
+
 PCB_RENDER_SETTINGS::PCB_RENDER_SETTINGS()
 {
     // By default everything should be displayed as filled

=== modified file 'pcbnew/pcb_painter.h'
--- pcbnew/pcb_painter.h	2013-07-17 11:38:56 +0000
+++ pcbnew/pcb_painter.h	2013-08-02 19:00:21 +0000
@@ -106,7 +106,7 @@
     bool    m_netNamesOnPads;
     bool    m_netNamesOnTracks;
 
-    static const double MAX_FONT_SIZE = 100000000;
+    static const double MAX_FONT_SIZE;
 
     DisplayZonesMode m_displayZoneMode;
 };

