Cruisers Forum
 


Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 31-01-2017, 21:20   #1
Registered User

Join Date: Jan 2016
Posts: 2
OpenCPN compile error

i've followed the following guide to compile Linux OpenCPN on CentOS.

I've got some errors.

-I/OpenCPN/src/garmin/jeeps -I/OpenCPN/src/texcmp/lz4 -I/OpenCPN/src/texcmp/squish -I/OpenCPN/build/CMakeFiles/include -Wall -Wno-unused -fexceptions -rdynamic -g -fno-strict-aliasing -DPREFIX=\"/usr/local\" -o CMakeFiles/S57ENC.dir/src/s52plib.cpp.o -c /OpenCPN/src/s52plib.cpp
/OpenCPN/src/s52plib.cpp: In member function ‘render_canvas_parms* s52plib::CreatePatternBufferSpec(ObjRazRules*, Rules*, ViewPort*, bool, bool)’:
/OpenCPN/src/s52plib.cpp:8027:38: error: ‘class wxMemoryDC’ has no member named ‘GetGraphicsContext’
wxGraphicsContext* pgc = mdc.GetGraphicsContext();
^
/OpenCPN/src/s52plib.cpp:8029:18: error: ‘class wxGraphicsContext’ has no member named ‘SetAntialiasMode’
pgc->SetAntialiasMode(wxANTIALIAS_NONE);
^
/OpenCPN/src/s52plib.cpp:8029:35: error: ‘wxANTIALIAS_NONE’ was not declared in this scope
pgc->SetAntialiasMode(wxANTIALIAS_NONE);
^
make[2]: *** [CMakeFiles/S57ENC.dir/src/s52plib.cpp.o] error 1
make[2]: Leaving directory `/OpenCPN/build'
make[1]: *** [CMakeFiles/S57ENC.dir/all] error 2
make[1]: Leaving directory `/OpenCPN/build'
make: *** [all] error 2
hyun3388 is offline   Reply With Quote
Old 01-02-2017, 04:29   #2
Registered User

Join Date: Feb 2010
Location: Tierra del Fuego
Boat: Phantom 19
Posts: 6,145
Re: OpenCPN compile error

Your wxWidgets are clearly missing some of the required features.
As you are not saying anything about your environment version-vise, that's pretty much all we can say.
If your goal is to have a RPi running OpenCPN, as the outdated guide for Debian based distros you supposedly followed suggests, you will save yourself all the trouble by simply using the OpenPlotter image which has everything set up and working out of the box.

Pavel
nohal is online now   Reply With Quote
Old 08-02-2017, 10:46   #3
Registered User

Join Date: Jul 2009
Location: Oriental, NC
Boat: Cal2/46
Posts: 14
Re: OpenCPN compile error

FWIW, I'm seeing the same error on Fedora 24, fully updated as of 2/8:

[steve@tacopie gtk]$ uname -a
Linux tacopie.s2bj2.com 4.9.6-100.fc24.x86_64 #1 SMP Thu Jan 26 10:21:30 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

wxWidgets rpms:
wxBase-2.8.12-26.fc24.x86_64
wxGTK-2.8.12-26.fc24.x86_64
wxGTK-devel-2.8.12-26.fc24.x86_64
wxGTK-gl-2.8.12-26.fc24.x86_64
wxGTK-media-2.8.12-26.fc24.x86_64

[steve@tacopie OpenCPN]$ cat VERSION.cmake
SET(VERSION_MAJOR "4")
SET(VERSION_MINOR "5")
SET(VERSION_PATCH "204")
SET(VERSION_DATE "2017-02-04")

[ 14%] Building CXX object CMakeFiles/S57ENC.dir/src/s52plib.cpp.o
/usr/lib64/ccache/c++ -DLINUX_CRASHRPT -DOCPN_HAVE_X11 -DTIXML_USE_STL -DUSE_GARMINHOST -DUSE_LZMA -DUSE_RENDER_CAIRO -DUSE_S57 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__OCPN_USE_CURL__ -D__WXGTK__ -DocpnUSE_GL -DocpnUSE_SVG -isystem /usr/lib64/wx/include/gtk2-unicode-release-2.8 -isystem /usr/include/wx-2.8 -I/home/steve/project/opencpn-dev/OpenCPN/include -I/home/steve/project/opencpn-dev/OpenCPN/src -I/home/steve/project/opencpn-dev/OpenCPN/src/wxcurl -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/atk-1.0 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include -I/home/steve/project/opencpn-dev/OpenCPN/src/wxsvg/include/wxSVG -I/home/steve/project/opencpn-dev/OpenCPN/src/wxsvg/include/wxSVGXML -I/home/steve/project/opencpn-dev/OpenCPN/src/wxsvg/include -I/home/steve/project/opencpn-dev/OpenCPN/src/wxsvg/src -I/home/steve/project/opencpn-dev/OpenCPN/src/nmea0183 -I/home/steve/project/opencpn-dev/OpenCPN/src/mygdal -I/home/steve/project/opencpn-dev/OpenCPN/src/garmin/jeeps -I/home/steve/project/opencpn-dev/OpenCPN/src/texcmp/lz4 -I/home/steve/project/opencpn-dev/OpenCPN/src/texcmp/squish -I/home/steve/project/opencpn-dev/OpenCPN/build/CMakeFiles/include -pthread -O2 -DNDEBUG -Wall -Wno-unused -fexceptions -rdynamic -g -fno-strict-aliasing -DPREFIX=\"/usr/local\" -o CMakeFiles/S57ENC.dir/src/s52plib.cpp.o -c /home/steve/project/opencpn-dev/OpenCPN/src/s52plib.cpp
/home/steve/project/opencpn-dev/OpenCPN/src/s52plib.cpp: In member function ‘render_canvas_parms* s52plib::CreatePatternBufferSpec(ObjRazRules*, Rules*, ViewPort*, bool, bool)’:
/home/steve/project/opencpn-dev/OpenCPN/src/s52plib.cpp:8063:38: error: ‘class wxMemoryDC’ has no member named ‘GetGraphicsContext’
wxGraphicsContext* pgc = mdc.GetGraphicsContext();
^~~~~~~~~~~~~~~~~~
/home/steve/project/opencpn-dev/OpenCPN/src/s52plib.cpp:8065:18: error: ‘class wxGraphicsContext’ has no member named ‘SetAntialiasMode’
pgc->SetAntialiasMode(wxANTIALIAS_NONE);
^~~~~~~~~~~~~~~~
/home/steve/project/opencpn-dev/OpenCPN/src/s52plib.cpp:8065:35: error: ‘wxANTIALIAS_NONE’ was not declared in this scope
pgc->SetAntialiasMode(wxANTIALIAS_NONE);
^~~~~~~~~~~~~~~~
CMakeFiles/S57ENC.dir/build.make:113: recipe for target 'CMakeFiles/S57ENC.dir/src/s52plib.cpp.o' failed
teotwawki is offline   Reply With Quote
Old 08-02-2017, 12:27   #4
Marine Service Provider
 
bdbcat's Avatar

Join Date: Mar 2008
Posts: 7,384
Re: OpenCPN compile error

teotwaki...

We have not tested building against wxWidgets 2.8 in some time.

Does Fedora not offer a more modern release of wxWidgets?

Dave
bdbcat is offline   Reply With Quote
Old 08-02-2017, 15:08   #5
Registered User

Join Date: Aug 2009
Location: oriental
Boat: crowther trimaran 33
Posts: 4,414
Re: OpenCPN compile error

It should build without graphics context... but using wx 3 not 2.8
seandepagnier is offline   Reply With Quote
Old 08-02-2017, 17:48   #6
Registered User

Join Date: Jul 2009
Location: Oriental, NC
Boat: Cal2/46
Posts: 14
Re: OpenCPN compile error

Dave,

Sorry for the noise - I've had way too much work and way too little boat for the last year and haven't done a build in quite a while . I didn't realize the switch to 3.x had happened while I wasn't looking.

Fedora does have 3.x packages, though at a casual glance it looks like they've renamed some things to allow 2.x and 3.x to co-exist. At any rate cmake found/preferred the 2.8 version. I'll have to dig into it further.

Thanks for the assist!

Steve
teotwawki is offline   Reply With Quote
Old 08-02-2017, 20:33   #7
Registered User

Join Date: Jul 2009
Location: Oriental, NC
Boat: Cal2/46
Posts: 14
Re: OpenCPN compile error

Just to follow-up: I didn't have the wxGTK3-devel rpm installed, which caused cmake to fall back to the 2.8 version. With that installed the build finishes successfully.

Thanks again
teotwawki is offline   Reply With Quote
Old 10-02-2017, 08:11   #8
Registered User
 
hasse_A's Avatar

Join Date: Feb 2013
Location: Tyrell Bay,Carriacou
Boat: Allegro 33
Posts: 559
Re: OpenCPN compile error

Trying to compile on Windows
Downloaded latest OpenCPN.
I am using wxWidgets-3.0.2.
It compiled ok.
I suppose I have set all Path requirements.


Get this :
c:\users\hasse\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(15): fatal error C1083: Cannot open include file: 'cairo/cairo.h': No such file or directory [C:\Users\hasse\OpenCPN\build\WXSVG.vcxproj]


The SVGCanvasCairo.h has an include statement :
#include <cairo/cairo.h>
but I can't find this file anywhere.

Has this something to do with gtk ?
I can't find anything about gtk under windows development.
I see that in an older version that there is a gtk directory under the build directory and down there exists the cairo.h file.
Am I missing some step in the development setup ?

/Hans
hasse_A is offline   Reply With Quote
Old 10-02-2017, 09:40   #9
Registered User
 
hasse_A's Avatar

Join Date: Feb 2013
Location: Tyrell Bay,Carriacou
Boat: Allegro 33
Posts: 559
Re: OpenCPN compile error

Hmmm.

If I copy the directories gtk and expat-2.1.0 from my old development tree into
OpenCPN/buildwin I am able to compile without errors.

Why are those not in the repository if they need to be there ?

/Hans
hasse_A is offline   Reply With Quote
Old 10-02-2017, 11:05   #10
Registered User

Join Date: Nov 2012
Location: Orust Sweden
Boat: Najad 34
Posts: 4,112
Re: OpenCPN compile error

Hasse..
I've seen this a couple of time as well. That is when some files/folders from \Buildwin are suddenly disappeared. I've my "OpenCPN_buildwin.7z" always reachable. I haven't put much effort to trace why this happens but I've feeling it's there after some backtrack checkouts. There was an explanation why these file are not in the Github repository but I've forgot.
Håkan
Hakan is offline   Reply With Quote
Old 10-02-2017, 11:12   #11
Registered User
 
hasse_A's Avatar

Join Date: Feb 2013
Location: Tyrell Bay,Carriacou
Boat: Allegro 33
Posts: 559
Re: OpenCPN compile error

Well, it seems like you always have to install "OpenCPN_buildwin.7z" even if you do not intend to make Release builds and create setup packages.
This is contrary to what is said in the manual (Se under paragraph 3.1)

After extracting those and putting them under buildwin I am now able to compile.

/Hasse
hasse_A is offline   Reply With Quote
Old 10-02-2017, 12:11   #12
Registered User

Join Date: Nov 2012
Location: Orust Sweden
Boat: Najad 34
Posts: 4,112
Re: OpenCPN compile error

Hasse..
I may misunderstand but I suppose you use to build for release i.e. make the opencpn.exe file? I always use VS2013 so I have no other experiences.
Håkan
Hakan is offline   Reply With Quote
Old 20-10-2017, 19:30   #13
Registered User
 
hasse_A's Avatar

Join Date: Feb 2013
Location: Tyrell Bay,Carriacou
Boat: Allegro 33
Posts: 559
Re: OpenCPN compile error

I am trying to build OpenCPN following the latest manual :
https://opencpn.org/wiki/dokuwiki/do...piling_windows

I am compiling on win7
VS 2013
wxWidgets-3.0.2

I get hundreds of errors and have a difficult time figuring out what the reason can be. Here are the first few errors.

c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(48): error C2061: syntax error : identifier 'cairo_surface_t' [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(52): error C2143: syntax error : missing ';' before '*' [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(52): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(53): error C2143: syntax error : missing ';' before '*' [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(53): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(54): error C2143: syntax error : missing ';' before '*' [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(54): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(57): error C2061: syntax error : identifier 'cairo_t' [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(59): error C2061: syntax error : identifier 'cairo_t' [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(61): error C2061: syntax error : identifier 'cairo_t' [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(63): error C2061: syntax error : identifier 'cairo_t' [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(23): error C2614: 'wxSVGCanvasCairo' : illegal member initialization: 'm_cr' is not a base or member [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(23): error C2614: 'wxSVGCanvasCairo' : illegal member initialization: 'm_surface' is not a base or member [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
c:\users\hasse\obeta\opencpn\src\wxsvg\src\cairo/SVGCanvasCairo.h(23): error C2614: 'wxSVGCanvasCairo' : illegal member initialization: 'm_pattern' is not a base or member [C:\Users\hasse\obeta\OpenCPN\build\WXSVG.vcxproj]
If I run the command :
powershell -Command "(New-Object Net.WebClient).DownloadFile('http://sourceforge.net/projects/opencpnplugins/files/opencpn_packaging_data/OpenCPN_buildwin.7z/download', 'OpenCPN_buildwin.7z')"
"C:\Program Files (x86)\7-Zip\7z" x -y OpenCPN_buildwin.7z
which is in the bat-file git_openCPN.bat I get this :
C:\Users\hasse\obeta\OpenCPN>powershell -Command "(New-Object Net.WebClient).DownloadFile('http://sourceforge.net/projects/opencpnplugins/files/opencpn_packaging_data/OpenCPN_buildwin.7z/download', 'OpenCPN_buildwin.7z')"

C:\Users\hasse\obeta\OpenCPN>"C:\Program Files (x86)\7-Zip\7z" x -y OpenCPN_buildwin.7z

7-Zip 4.65 Copyright (c) 1999-2009 Igor Pavlov 2009-02-03

Processing archive: OpenCPN_buildwin.7z

Extracting buildwin
Extracting buildwin\crashrpt
Extracting buildwin\expat-2.1.0
Extracting buildwin\expat-2.1.0\include
Extracting buildwin\gtk
Extracting buildwin\gtk\include
Extracting buildwin\gtk\include\cairo
Extracting buildwin\vc
Extracting buildwin\wxWidgets
Extracting buildwin\wxWidgets\locale
Extracting buildwin\vc\msvcp120.dll
Extracting buildwin\vc\msvcr120.dll
Extracting buildwin\crashrpt\CrashSender1402.exe
Extracting buildwin\crashrpt\CrashRpt1402.dll
Extracting buildwin\crashrpt\dbghelp.dll
Extracting buildwin\crashrpt\CrashRpt1402.lib
Extracting buildwin\wxWidgets\wxbase30u_net_vc_custom.dll
Extracting buildwin\wxWidgets\wxbase30u_vc_custom.dll
Extracting buildwin\wxWidgets\wxbase30u_xml_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_adv_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_aui_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_core_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_gl_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_html_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_media_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_propgrid_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_qa_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_ribbon_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_richtext_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_stc_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_webview_vc_custom.dll
Extracting buildwin\wxWidgets\wxmsw30u_xrc_vc_custom.dll
Extracting buildwin\wxWidgets\locale\af.mo
Extracting buildwin\wxWidgets\locale\an.mo
Extracting buildwin\wxWidgets\locale\ar.mo
Extracting buildwin\wxWidgets\locale\ca.mo
Extracting buildwin\wxWidgets\locale\ca@valencia.mo
Extracting buildwin\wxWidgets\locale\cs.mo
Extracting buildwin\wxWidgets\locale\da.mo
Extracting buildwin\wxWidgets\locale\de.mo
Extracting buildwin\wxWidgets\locale\el.mo
Extracting buildwin\wxWidgets\locale\es.mo
Extracting buildwin\wxWidgets\locale\eu.mo
Extracting buildwin\wxWidgets\locale\fi.mo
Extracting buildwin\wxWidgets\locale\fr.mo
Extracting buildwin\wxWidgets\locale\gl_ES.mo
Extracting buildwin\wxWidgets\locale\hi.mo
Extracting buildwin\wxWidgets\locale\hu.mo
Extracting buildwin\wxWidgets\locale\id.mo
Extracting buildwin\wxWidgets\locale\it.mo
Extracting buildwin\wxWidgets\locale\ja.mo
Extracting buildwin\wxWidgets\locale\ko_KR.mo
Extracting buildwin\wxWidgets\locale\lt.mo
Extracting buildwin\wxWidgets\locale\lv.mo
Extracting buildwin\wxWidgets\locale\ms.mo
Extracting buildwin\wxWidgets\locale\nb.mo
Extracting buildwin\wxWidgets\locale\ne.mo
Extracting buildwin\wxWidgets\locale\nl.mo
Extracting buildwin\wxWidgets\locale\pl.mo
Extracting buildwin\wxWidgets\locale\pt.mo
Extracting buildwin\wxWidgets\locale\pt_BR.mo
Extracting buildwin\wxWidgets\locale\ro.mo
Extracting buildwin\wxWidgets\locale\ru.mo
Extracting buildwin\wxWidgets\locale\sk.mo
Extracting buildwin\wxWidgets\locale\sl.mo
Extracting buildwin\wxWidgets\locale\sq.mo
Extracting buildwin\wxWidgets\locale\sv.mo
Extracting buildwin\wxWidgets\locale\ta.mo
Extracting buildwin\wxWidgets\locale\tr.mo
Extracting buildwin\wxWidgets\locale\uk.mo
Extracting buildwin\wxWidgets\locale\vi.mo
Extracting buildwin\wxWidgets\locale\zh_CN.mo
Extracting buildwin\wxWidgets\locale\zh_TW.mo
Extracting buildwin\ocpn_gltest1.exe
Extracting buildwin\expat-2.1.0\expat.lib Unsupported Method
Extracting buildwin\expat-2.1.0\include\expat.h Unsupported Method
Extracting buildwin\expat-2.1.0\include\expat_external.h Unsupported Method
Extracting buildwin\gtk\cairo.lib Unsupported Method
Extracting buildwin\gtk\include\cairo\cairo-deprecated.h Unsupported Method
Extracting buildwin\gtk\include\cairo\cairo-features.h Unsupported Method
Extracting buildwin\gtk\include\cairo\cairo-version.h Unsupported Method
Extracting buildwin\gtk\include\cairo\cairo-win32.h Unsupported Method
Extracting buildwin\gtk\include\cairo\cairo.h Unsupported Method
Extracting buildwin\libcurl.lib Unsupported Method
Extracting buildwin\expat-2.1.0\expat.dll Unsupported Method
Extracting buildwin\gtk\cairo.dll Unsupported Method
Extracting buildwin\gtk\fontconfig.dll Unsupported Method
Extracting buildwin\gtk\iconv.dll Unsupported Method
Extracting buildwin\gtk\libpng16.dll Unsupported Method
Extracting buildwin\gtk\libxml2.dll Unsupported Method
Extracting buildwin\gtk\pixman-1.dll Unsupported Method
Extracting buildwin\libcurl.dll Unsupported Method
Extracting buildwin\zlib1.dll Unsupported Method

Sub items Errors: 19

I get 19 errors of Unsupported Method. Should this be ignored ?
Any ideas ?

/Hans
hasse_A is offline   Reply With Quote
Old 20-10-2017, 20:00   #14
Registered User
 
hasse_A's Avatar

Join Date: Feb 2013
Location: Tyrell Bay,Carriacou
Boat: Allegro 33
Posts: 559
Re: OpenCPN compile error

Think I solved this myself.

I had a very old 7-zip.
Installing a new version seem to fix this.
I am now able to build OpenCPN,. At least for Debug.

/Hans
hasse_A is offline   Reply With Quote
Old 21-10-2017, 07:44   #15
Registered User
 
rgleason's Avatar

Join Date: Mar 2012
Location: Boston, MA
Boat: 1981 Bristol 32 Sloop
Posts: 17,493
Images: 2
Re: OpenCPN compile error

Hasse_A you could try Transmitter Dan's BatchUTILs which uses opencpn /p or portable for both debug and release. It makes two parallel installs for debug and release and creates new opencpn.ini and logs in the respective directories which I really like because I get a debug and test platform separate from my normal opencpn!

Also his batchfiles are good.
rgleason is offline   Reply With Quote
Reply

Tags
enc, opencpn

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
OpenCPN compile error hyun3388 OpenCPN 2 01-02-2017 12:47
wxWidgets compile error wushinwei OpenCPN 5 10-05-2015 04:42
Compile on VS 2010 with one error? Glen96 OpenCPN 3 07-12-2014 16:15
Fedora Compile Link Error oystercatcher OpenCPN 4 16-12-2010 15:37

Advertise Here


All times are GMT -7. The time now is 19:26.


Google+
Powered by vBulletin® Version 3.8.8 Beta 1
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Social Knowledge Networks
Powered by vBulletin® Version 3.8.8 Beta 1
Copyright ©2000 - 2024, vBulletin Solutions, Inc.

ShowCase vBulletin Plugins by Drive Thru Online, Inc.