From 3ca13e141e278a9c7c7e92ca91a2770d3196a54b Mon Sep 17 00:00:00 2001 From: hunbernd Date: Sun, 28 Oct 2018 21:34:45 +0100 Subject: [PATCH 1/4] Removed some old build scripts --- Start_RetroShare-Gui_Debug.bat | 11 -- build-all-mingw32make.bat | 217 --------------------------- libbitdht/src/mingw32make.bat | 13 -- libretroshare/src/TODO | 7 - libretroshare/src/mingw32make.bat | 14 -- msys2_build_libs/Makefile | 28 ---- plugins/mingw32make.bat | 13 -- retroshare-gui/src/mingw32make.bat | 15 -- retroshare-nogui/src/mingw32make.bat | 12 -- 9 files changed, 330 deletions(-) delete mode 100755 Start_RetroShare-Gui_Debug.bat delete mode 100755 build-all-mingw32make.bat delete mode 100644 libbitdht/src/mingw32make.bat delete mode 100644 libretroshare/src/TODO delete mode 100644 libretroshare/src/mingw32make.bat delete mode 100755 msys2_build_libs/Makefile delete mode 100644 plugins/mingw32make.bat delete mode 100644 retroshare-gui/src/mingw32make.bat delete mode 100644 retroshare-nogui/src/mingw32make.bat diff --git a/Start_RetroShare-Gui_Debug.bat b/Start_RetroShare-Gui_Debug.bat deleted file mode 100755 index 38680ccef..000000000 --- a/Start_RetroShare-Gui_Debug.bat +++ /dev/null @@ -1,11 +0,0 @@ -set QTDIR=C:\Qt\5.5\mingw492_32 -set LIBS=..\libs -set RSPATH=.\retroshare-gui\src\debug - -set PATH=%QTDIR%\bin;%LIBS%\bin;%PATH% - -If not exist %RSPATH%\retroshare.exe ( - build-all-mingw32make.bat -) - -%RSPATH%\retroshare.exe diff --git a/build-all-mingw32make.bat b/build-all-mingw32make.bat deleted file mode 100755 index 49eebe687..000000000 --- a/build-all-mingw32make.bat +++ /dev/null @@ -1,217 +0,0 @@ -set QTDIR=C:\Qt\5.5\mingw492_32\ -set MINGW=C:\Qt\Tools\mingw492_32 - -set PATH=%QTDIR%\bin;%MINGW%\bin;%PATH% -set DEBUG=1 - -@echo off -rem emptying used variables in case the script was aborted and tempfile -set pack= -set clean= -set errorlevel= -if exist tmp.txt del tmp.txt - - -:loop1 -if %1x == x ( - rem if not exist tmp.txt echo debug >>tmp.txt - goto :end1 -) -if /i %1==clean ( - set clean=clean - shift - goto :loop1 -) -if /i %1==pack ( - set pack=pack - shift - goto :loop1 -) -echo.%1>>tmp.txt -shift -goto :loop1 - -:end1 -if %clean%x==cleanx ( - if not exist tmp.txt echo %clean% >>tmp.txt -) - -if not exist tmp.txt ( - if not %pack%x==packx ( - echo debug >>tmp.txt - set clean=clean - ) -) - -for /f %%a in (tmp.txt) do ( -if ECHO==1 @echo on - - - - -rem TODO: Remove these lines -rem GOTO :retroshare-gui - - - - -:libbitdht -rem ################################### -rem ### libbitdht ##################### -rem ################################### -cd libbitdht\src - -if not %clean%x==x mingw32-make clean - -qmake libbitdht.pro -CALL :TEST_ERROR - -mingw32-make %%a -CALL :TEST_ERROR -echo ################################### -echo ### libbitdht done ################ -echo ################################### -cd ..\.. - -:openpgpsdk -rem ################################### -rem ### openpgpsdk #################### -rem ################################### -cd openpgpsdk\src - -if not %clean%x==x mingw32-make clean - -qmake openpgpsdk.pro -CALL :TEST_ERROR - -mingw32-make -CALL :TEST_ERROR -echo ################################### -echo ### openpgpsdk done ############### -echo ################################### -cd ..\.. - -:libresapi -rem ################################### -rem ### libresapi ##################### -rem ################################### -cd libresapi\src - -if not %clean%x==x mingw32-make clean - -qmake libresapi.pro -CALL :TEST_ERROR - -mingw32-make %%a -CALL :TEST_ERROR -echo ################################### -echo ### libresapi done ################ -echo ################################### -cd ..\.. - -:libretroshare -rem ################################### -rem ### libretroshare ################# -rem ################################### -cd libretroshare\src - -if not %clean%x==x mingw32-make clean - -qmake libretroshare.pro "CONFIG+=version_detail_bash_script" -CALL :TEST_ERROR - -mingw32-make %%a -CALL :TEST_ERROR -echo ################################### -echo ### libretroshare done ############ -echo ################################### -cd ..\.. - -:pegmarkdown -rem ################################### -rem ### pegmarkdown ################### -rem ################################### -cd supportlibs\pegmarkdown - -if not %clean%x==x mingw32-make clean - -qmake pegmarkdown.pro -CALL :TEST_ERROR - -mingw32-make %%a -CALL :TEST_ERROR -echo ################################### -echo ### pegmarkdown done ############## -echo ################################### -cd ..\.. - -:retroshare-nogui -rem ################################### -rem ### retroshare-nogui ############## -rem ################################### -cd retroshare-nogui\src - -if not %clean%x==x mingw32-make clean - -qmake retroshare-nogui.pro -CALL :TEST_ERROR - -mingw32-make %%a -CALL :TEST_ERROR -echo ################################### -echo ### retroshare-nogui done ######### -echo ################################### -cd ..\.. - -:retroshare-gui -rem ################################### -rem ### retroshare-gui ################ -rem ################################### -cd retroshare-gui\src - -if not %clean%x==x mingw32-make clean - -rem qmake -r -spec ..\mkspecs\win32-g++ "CONFIG+=version_detail_bash_script" retroshare-gui.pro -qmake retroshare-gui.pro "CONFIG+=version_detail_bash_script" -CALL :TEST_ERROR - -mingw32-make %%a -CALL :TEST_ERROR -echo ################################### -echo ### retroshare-gui done ########### -echo ################################### - -cd ..\.. -@echo off -) - - -@echo off -if %pack%x==packx call packaging.bat -rem ################################### -rem ### clean up ###################### -rem ################################### -set clean= -del tmp.txt -set pack= -pause - -rem ################################### -rem ### END ########################### -rem ################################### -GOTO :EOF - - -:TEST_ERROR -@echo off -if errorlevel 1 ( - pause - set clean= - del tmp.txt - set pack= - EXIT -) -if ECHO==1 @echo on -EXIT /B - -:EOF \ No newline at end of file diff --git a/libbitdht/src/mingw32make.bat b/libbitdht/src/mingw32make.bat deleted file mode 100644 index 008a15473..000000000 --- a/libbitdht/src/mingw32make.bat +++ /dev/null @@ -1,13 +0,0 @@ -set QTDIR=C:\Qt\4.8.6 -set MINGW=C:\MinGW - -set PATH=%QTDIR%\bin;%MINGW%\bin;%PATH% - -mingw32-make clean - -qmake libbitdht.pro - -mingw32-make - -pause - diff --git a/libretroshare/src/TODO b/libretroshare/src/TODO deleted file mode 100644 index 0e5e4f51b..000000000 --- a/libretroshare/src/TODO +++ /dev/null @@ -1,7 +0,0 @@ - -TODO ---------------- - -Too much to list... - -test SVN \ No newline at end of file diff --git a/libretroshare/src/mingw32make.bat b/libretroshare/src/mingw32make.bat deleted file mode 100644 index 3a58fe173..000000000 --- a/libretroshare/src/mingw32make.bat +++ /dev/null @@ -1,14 +0,0 @@ -set QTDIR=C:\Qt\4.8.6 -set MINGW=C:\MinGW -set GIT=C:\Program Files\Git - -set PATH=%QTDIR%\bin;%MINGW%\bin;;%GIT%\bin;%PATH% - -mingw32-make clean - -qmake libretroshare.pro "CONFIG+=version_detail_bash_script" - -mingw32-make - -pause - diff --git a/msys2_build_libs/Makefile b/msys2_build_libs/Makefile deleted file mode 100755 index e7f940780..000000000 --- a/msys2_build_libs/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -SQLCIPHER_VERSION=3.3.1 -MSYS2AUTOMAKE=/usr/share/automake-1.15 - -BLD=../build-libs -DLD=../downloads - -all: dirs sqlcipher - -dirs: - mkdir -p ../../libs/include - mkdir -p ../../libs/lib - mkdir -p ../../libs/bin - mkdir -p $(DLD) - mkdir -p $(BLD) - -sqlcipher: | ../../libs/lib/libsqlcipher.a - -$(DLD)/sqlcipher-$(SQLCIPHER_VERSION).tar.gz: - curl.exe -L -k https://github.com/sqlcipher/sqlcipher/archive/v$(SQLCIPHER_VERSION).tar.gz -o $(DLD)/sqlcipher-$(SQLCIPHER_VERSION).tar.gz - -../../libs/lib/libsqlcipher.a: $(DLD)/sqlcipher-$(SQLCIPHER_VERSION).tar.gz - tar xvf $(DLD)/sqlcipher-$(SQLCIPHER_VERSION).tar.gz -C $(BLD) - cp $(MSYS2AUTOMAKE)/config.guess $(BLD)/sqlcipher-$(SQLCIPHER_VERSION)/config.guess - cp $(MSYS2AUTOMAKE)/config.sub $(BLD)/sqlcipher-$(SQLCIPHER_VERSION)/config.sub - cd $(BLD)/sqlcipher-$(SQLCIPHER_VERSION) && LIBS="-L`pwd`/../../libs/lib -lgdi32 $$LIBS" && export LIBS && ./configure --disable-shared --enable-static --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC -I`pwd`/../../libs/include" LDFLAGS="-L`pwd`/../../libs/lib -lcrypto -lgdi32" && make install prefix="`pwd`/install" - cp -r $(BLD)/sqlcipher-$(SQLCIPHER_VERSION)/install/include/* ../../libs/include/ - cp $(BLD)/sqlcipher-$(SQLCIPHER_VERSION)/install/lib/libsqlcipher.a ../../libs/lib/ - cp $(BLD)/sqlcipher-$(SQLCIPHER_VERSION)/install/bin/sqlcipher.exe ../../libs/bin/ diff --git a/plugins/mingw32make.bat b/plugins/mingw32make.bat deleted file mode 100644 index c5b3f8f6a..000000000 --- a/plugins/mingw32make.bat +++ /dev/null @@ -1,13 +0,0 @@ -set QTDIR=C:\Qt\4.8.6 -set MINGW=C:\MinGW - -set PATH=%QTDIR%\bin;%MINGW%\bin;%PATH% - -mingw32-make clean - -qmake plugins.pro - -mingw32-make - -pause - diff --git a/retroshare-gui/src/mingw32make.bat b/retroshare-gui/src/mingw32make.bat deleted file mode 100644 index 6959bc761..000000000 --- a/retroshare-gui/src/mingw32make.bat +++ /dev/null @@ -1,15 +0,0 @@ -set QTDIR=C:\Qt\5.5.0\5.5\mingw492_32 -set MINGW=C:\Qt\Tools\mingw492_32 - -set GIT=C:\Program Files\Git - -set PATH=%QTDIR%\bin;%MINGW%\bin;%GIT%\bin;%PATH% - - -qmake retroshare-gui.pro "CONFIG+=version_detail_bash_script" - - -mingw32-make - -pause - diff --git a/retroshare-nogui/src/mingw32make.bat b/retroshare-nogui/src/mingw32make.bat deleted file mode 100644 index fbc0b627e..000000000 --- a/retroshare-nogui/src/mingw32make.bat +++ /dev/null @@ -1,12 +0,0 @@ -set QTDIR=C:\Qt\4.8.5 -set MINGW=C:\MinGW - -set PATH=%QTDIR%\bin;%MINGW%\bin;%PATH% - - -qmake retroshare-nogui.pro - -mingw32-make - -pause - From d5d3830b6e0958d7517704603b014b28b79b4322 Mon Sep 17 00:00:00 2001 From: hunbernd Date: Sun, 28 Oct 2018 22:15:07 +0100 Subject: [PATCH 2/4] Removed version.html --- retroshare-gui/src/gui/HelpDialog.cpp | 9 ++------- retroshare-gui/src/gui/help/version.html | 5 ----- retroshare-gui/src/gui/help/version.html.in | 4 ---- retroshare-gui/src/gui/images.qrc | 1 - 4 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 retroshare-gui/src/gui/help/version.html delete mode 100644 retroshare-gui/src/gui/help/version.html.in diff --git a/retroshare-gui/src/gui/HelpDialog.cpp b/retroshare-gui/src/gui/HelpDialog.cpp index c27e404a2..9790b6832 100644 --- a/retroshare-gui/src/gui/HelpDialog.cpp +++ b/retroshare-gui/src/gui/HelpDialog.cpp @@ -24,6 +24,7 @@ #include #include +#include "rshare.h" #ifdef ENABLE_WEBUI #include @@ -84,13 +85,7 @@ HelpDialog::HelpDialog(QWidget *parent) : ui->thanks->setText(in.readAll()); } - QFile versionFile(QLatin1String(":/help/version.html")); - if (versionFile.open(QIODevice::ReadOnly | QIODevice::Text)) { - QTextStream in(&versionFile); - QString version = in.readAll(); - - ui->version->setText(version); - } + ui->version->setText(Rshare::retroshareVersion(true)); /* Add version numbers of libretroshare */ std::list libraries; diff --git a/retroshare-gui/src/gui/help/version.html b/retroshare-gui/src/gui/help/version.html deleted file mode 100644 index af3ae831f..000000000 --- a/retroshare-gui/src/gui/help/version.html +++ /dev/null @@ -1,5 +0,0 @@ -Retroshare Gui version : -Svn version : 8013 -Fr 13. Mär 16:32:53 CET 2015 - - diff --git a/retroshare-gui/src/gui/help/version.html.in b/retroshare-gui/src/gui/help/version.html.in deleted file mode 100644 index 189d71df2..000000000 --- a/retroshare-gui/src/gui/help/version.html.in +++ /dev/null @@ -1,4 +0,0 @@ -Retroshare Gui version : -Git version : $Branch$ -$Hash$ -$Date$ \ No newline at end of file diff --git a/retroshare-gui/src/gui/images.qrc b/retroshare-gui/src/gui/images.qrc index 40613280e..8496f899b 100644 --- a/retroshare-gui/src/gui/images.qrc +++ b/retroshare-gui/src/gui/images.qrc @@ -646,7 +646,6 @@ images/newsfeed/news-feed-32.png images/newsfeed/news-feed-notify-32.png images/share-icon-16.png - help/version.html images/view-certificate-sign-48.png images/toasterEnable.png images/toasterDisable.png From 74fcb5435b98257e34770cfb6391753026cc9660 Mon Sep 17 00:00:00 2001 From: hunbernd Date: Sun, 28 Oct 2018 22:16:01 +0100 Subject: [PATCH 3/4] Updated links in readme --- libretroshare/src/Readme.txt | 14 ++++++++------ retroshare-gui/src/README.txt | 14 ++++++++------ 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/libretroshare/src/Readme.txt b/libretroshare/src/Readme.txt index 735e8444a..0b722cb63 100644 --- a/libretroshare/src/Readme.txt +++ b/libretroshare/src/Readme.txt @@ -2,13 +2,15 @@ README for RetroShare ======================================================================================= -RetroShare web site . . . . http://retroshare.sourceforge.net/ -Documentation . . . . . . . http://retroshare.sourceforge.net/doc.html -Support . . . . . . . . . . http://retroshare.sourceforge.net/support.html +RetroShare web site . . . . http://retroshare.net/index.html +Developer's blog . . . . . https://retroshareteam.wordpress.com +Documentation . . . . . . . https://retroshare.readthedocs.io/en/latest/ +Support . . . . . . . . . . http://retroshare.net/support.html Forums . . . . . . . . . . http://retroshare.sourceforge.net/forum/ -Wiki . . . . . . . . . . . http://retroshare.sourceforge.net/wiki/ -The Developers site . . . . http://retroshare.sourceforge.net/developers.html -Project site . . . . . . . https://sourceforge.net/projects/retroshare +Wiki . . . . . . . . . . . https://github.com/RetroShare/documentation/wiki +Old developers site . . . . http://retroshare.sourceforge.net/wiki/index.php/Developers_Corner +Project site . . . . . . . https://github.com/RetroShare/RetroShare +Relted projects/plugins . . https://github.com/RetroShare Contact: . . . . . . . . . retroshare@lunamutt.com ,defnax@users.sourceforge.net diff --git a/retroshare-gui/src/README.txt b/retroshare-gui/src/README.txt index febfabcfa..ca43d5928 100644 --- a/retroshare-gui/src/README.txt +++ b/retroshare-gui/src/README.txt @@ -2,13 +2,15 @@ README for RetroShare ======================================================================================= -RetroShare web site . . . . http://retroshare.sourceforge.net/ -Documentation . . . . . . . http://retroshare.sourceforge.net/doc.html -Support . . . . . . . . . . http://retroshare.sourceforge.net/support.html +RetroShare web site . . . . http://retroshare.net/index.html +Developer's blog . . . . . https://retroshareteam.wordpress.com +Documentation . . . . . . . https://retroshare.readthedocs.io/en/latest/ +Support . . . . . . . . . . http://retroshare.net/support.html Forums . . . . . . . . . . http://retroshare.sourceforge.net/forum/ -Wiki . . . . . . . . . . . http://retroshare.sourceforge.net/wiki/ -The Developers site . . . . http://retroshare.sourceforge.net/developers.html -Project site . . . . . . . https://sourceforge.net/projects/retroshare +Wiki . . . . . . . . . . . https://github.com/RetroShare/documentation/wiki +Old developers site . . . . http://retroshare.sourceforge.net/wiki/index.php/Developers_Corner +Project site . . . . . . . https://github.com/RetroShare/RetroShare +Relted projects/plugins . . https://github.com/RetroShare Contact: . . . . . . . . . retroshare@lunamutt.com ,defnax@users.sourceforge.net From f80b815b26dc9b8a0a577e2a0985f71788c0139b Mon Sep 17 00:00:00 2001 From: hunbernd Date: Sun, 28 Oct 2018 22:25:26 +0100 Subject: [PATCH 4/4] Removed outdated instructions from readme --- libretroshare/src/Readme.txt | 53 ++++++----------------------------- retroshare-gui/src/README.txt | 47 ++++++------------------------- 2 files changed, 16 insertions(+), 84 deletions(-) diff --git a/libretroshare/src/Readme.txt b/libretroshare/src/Readme.txt index 0b722cb63..7f7f35c8e 100644 --- a/libretroshare/src/Readme.txt +++ b/libretroshare/src/Readme.txt @@ -14,54 +14,17 @@ Relted projects/plugins . . https://github.com/RetroShare Contact: . . . . . . . . . retroshare@lunamutt.com ,defnax@users.sourceforge.net - -Compiling + Running RetroShare (V0.5.xxx) ========================================================================================= -REQUIREMENTS +Compiling RetroShare ========================================================================================= -Libraries/Tools: - * C/C++ Compiler. (standard on Linux/cygwin) - * Qt >= 4.5.x https://download.qt.io/official_releases/qt/4.8/4.8.7/qt-everywhere-opensource-src-4.8.7.tar.gz - * OpenSSL http://www.openssl.org/source/openssl-0.9.8k.tar.gz - * MiniUPnP http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.3.tar.gz - * gpgme ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.1.8.tar.bz2 - * libgpg-error ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.7.tar.bz2 +Build Scripts are avaible on GIT: +https://github.com/RetroShare/RetroShare/tree/master/build_scripts -Windows only: - * Cygwin http://www.cygwin.com/cygwin/setup.exe (for openssl compile) - * MinGW/Msys package http://sourceforge.net/projects/mingw/files/ (for compile gpgme,libgpg-error) - * Pthreads http://sourceware.org/pthreads-win32/ - * Zlib http://www.zlib.net/ - - Latest RetroShare sources from (SVN) sourceforge.net: - svn co https://retroshare.svn.sourceforge.net/svnroot/retroshare retroshare +You can find here instructions howto compile RetroShare: +https://retroshare.readthedocs.io/en/latest/developer/compilation/ -========================================================================================= - -Build Scripts are avaible on SVN for Debian and Ubuntu: -http://retroshare.svn.sourceforge.net/viewvc/retroshare/trunk/build_scripts/ - -Latest stable OpenSSL is available at: -http://www.openssl.org - -Latest miniupnpc-1.3 is avaible at: -http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.3.tar.gz - -Latest gpgme Library is avaible at: -ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.1.8.tar.bz2 - -Latest libgpg-error Library is avaible at: -ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.7.tar.bz2 - -Windows only: - pthreads: ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-8-0-release.tar.gz - zlib: http://www.zlib.net/zlib-1.2.3.tar.gz -========================================================================================= -You can find here instrustions howto compile libretroshare and gui: -http://retroshare.sourceforge.net/wiki/index.php/Developers_Corner - -========================================================================================= -You can go on over to our forum when you have trouble with compiling: +You can go on over to our forum or chat lobby when you have trouble with compiling: +retroshare://forum?name=Developers%20Discussions&id=8fd22bd8f99754461e7ba1ca8a727995 +retroshare://chat_room?name=Retroshare%20Devel%20%28signed%29&id=L68DB0A1E09BDA3A5 http://retroshare.sourceforge.net/forum/ ---------------------------------------------- diff --git a/retroshare-gui/src/README.txt b/retroshare-gui/src/README.txt index ca43d5928..7f7f35c8e 100644 --- a/retroshare-gui/src/README.txt +++ b/retroshare-gui/src/README.txt @@ -14,48 +14,17 @@ Relted projects/plugins . . https://github.com/RetroShare Contact: . . . . . . . . . retroshare@lunamutt.com ,defnax@users.sourceforge.net - -Compiling + Running RetroShare (V0.5.xxx) ========================================================================================= -REQUIREMENTS +Compiling RetroShare ========================================================================================= -Libraries/Tools: - * C/C++ Compiler. (standard on Linux/cygwin) - * Qt >= 4.6.x http://qt.nokia.com/downloads/downloads#lgpl - * OpenSSL http://www.openssl.org/source/openssl-1.0.1c.tar.gz - * MiniUPnP http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.3.tar.gz +Build Scripts are avaible on GIT: +https://github.com/RetroShare/RetroShare/tree/master/build_scripts -Windows only: - * Cygwin http://www.cygwin.com/cygwin/setup.exe (for compile, openssl, pthreads) - * MinGW/Msys package http://sourceforge.net/projects/mingw/files/(for compile zlib, miniupnc, bzip2) - * Pthreads http://sourceware.org/pthreads-win32/ - * Zlib http://www.zlib.net/ - * bzip2 http://www.bzip.org/1.0.6/bzip2-1.0.6.tar.gz - - Latest RetroShare sources from (SVN) sourceforge.net: - svn co https://retroshare.svn.sourceforge.net/svnroot/retroshare retroshare - -========================================================================================= - -Build Scripts are avaible on SVN for Debian and Ubuntu: -http://retroshare.svn.sourceforge.net/viewvc/retroshare/trunk/build_scripts/ - -Latest stable OpenSSL is available at: -http://www.openssl.org - -Latest miniupnpc-1.3 is avaible at: -http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.3.tar.gz - - -Windows only: - pthreads: ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-8-0-release.tar.gz - zlib: http://www.zlib.net/zlib-1.2.3.tar.gz -========================================================================================= You can find here instructions howto compile RetroShare: -http://retroshare.sourceforge.net/wiki/index.php/Developers_Corner - -========================================================================================= -You can go on over to our forum when you have trouble with compiling: +https://retroshare.readthedocs.io/en/latest/developer/compilation/ + +You can go on over to our forum or chat lobby when you have trouble with compiling: +retroshare://forum?name=Developers%20Discussions&id=8fd22bd8f99754461e7ba1ca8a727995 +retroshare://chat_room?name=Retroshare%20Devel%20%28signed%29&id=L68DB0A1E09BDA3A5 http://retroshare.sourceforge.net/forum/ ----------------------------------------------