From cbbd990ae92b51096f90bd679b8175b0eaaf2268 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 24 May 2009 09:27:01 +0000 Subject: [PATCH] 2009-05-24 11:25 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * INSTALL + Added section: HOW TO GET SOURCE CODE. + Added hint how to use dirs with spaces. * ChangeLog ! Fixed header in my prev commit. --- harbour/ChangeLog | 10 +++++++++- harbour/INSTALL | 34 ++++++++++++++++++++++++++++++++-- 2 files changed, 41 insertions(+), 3 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d2928dc70d..93da37d602 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,7 +17,15 @@ past entries belonging to these authors: Viktor Szakats. */ -2009-05-23 14:05 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) +2009-05-24 11:25 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * INSTALL + + Added section: HOW TO GET SOURCE CODE. + + Added hint how to use dirs with spaces. + + * ChangeLog + ! Fixed header in my prev commit. + +2009-05-23 14:05 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * utils/hbmk2/hbmk2.prg ! Fixed to morph harbour binary extension according to target platform. This should fix HB_INSTALL_PREFIX autodetection and diff --git a/harbour/INSTALL b/harbour/INSTALL index 62a5eb741e..2deb5952af 100644 --- a/harbour/INSTALL +++ b/harbour/INSTALL @@ -23,6 +23,7 @@ HOW TO BUILD AND INSTALL HARBOUR * Supported ANSI C compiler * GNU Make (3.81 or upper recommended) + * Harbour sources (1.1.0dev or upper) Linux/Darwin/BSD/HP-UX/Solaris ------------------------------ @@ -154,9 +155,10 @@ HOW TO ENABLE OPTIONAL COMPONENTS BEFORE BUILD HB_INC_QT=C:\Qt\4.5.1\include HB_INC_SQLITE3=C:\sqlite3 (defaults to locally hosted version on win/os2) - NOTES: - For mingw+msys and cygwin you have to use forward slashes + NOTES: - For MinGW + msys and cygwin you have to use forward slashes and also cygwin drive notation for cygwin. - - Spaces in directory names isn't currently supported. + - Spaces in directory names aren't currently supported. + (you can use short name alias on Windows platform, though) - Don't put the dir inside double quotes. - Use absolute paths. @@ -531,6 +533,34 @@ EXAMPLES -->8-- +HOW TO GET THE HARBOUR SOURCES +============================== + + 1.) Most likely you're reading this file as part of the Harbour + source code package. If not, read along. + + 2.) Harbour source repository + + You'll need Subversion (SVN) version control software installed + on your system, and issue this command: + svn co https://harbour-project.svn.sf.net/svnroot/harbour-project/trunk/harbour + + You can get subsequent updates using this command: + svn update + + 3.) Harbour nightly sources (update once a day from source repository) + + Download source archive from any of these links and unpack: + http://harbour-project.org/harbour-nightly.zip + http://harbour-project.org/harbour-nightly.tgz + http://harbour-project.org/harbour-nightly.gz2 + + 4.) Harbour source download (stable) + + Download source archive from this page and unpack: + http://sourceforge.net/project/showfiles.php?group_id=681&package_id=192305 + + TROUBLESHOOTING ===============