Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.Unix.txt #218

Merged
merged 1 commit into from Apr 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
47 changes: 24 additions & 23 deletions README.Unix.txt
Expand Up @@ -67,7 +67,7 @@ Open a shell and install some software:

sudo apt-get install g++
sudo apt-get install gdb
sudo apt-get install subversion
sudo apt-get install git
sudo apt-get install autoconf
sudo apt-get install libx11-dev
sudo apt-get install libglu1-mesa-dev
Expand All @@ -81,13 +81,13 @@ If you are planning to use the Code::Blocks IDE, also install this

sudo apt-get install codeblocks

I like to use subversion to install the latest FLTK-1.3.release:
I like to use git to install the latest FLTK-X.Y.release:

svn co http://seriss.com/public/fltk/fltk/branches/branch-1.3/ fltk-1.3
git clone --branch branch-X.Y https://github.com/fltk/fltk

To update to the latest version, just go into the fltk-1.3 directory and type
To update to the latest version, just go into the fltk directory and type

svn update
git pull


2.2 Linux Mint 9
Expand All @@ -103,7 +103,7 @@ Open a shell and install some software:

sudo apt-get install g++
sudo apt-get install gdb
sudo apt-get install subversion
sudo apt-get install git
sudo apt-get install autoconf
sudo apt-get install libx11-dev
sudo apt-get install libglu1-mesa-dev
Expand All @@ -117,13 +117,13 @@ If you are planning to use the Code::Blocks IDE, also install this

sudo apt-get install codeblocks

I like to use subversion to install the latest FLTK-1.3.release:
I like to use git to install the latest FLTK-X.Y.release:

svn co http://seriss.com/public/fltk/fltk/branches/branch-1.3/ fltk-1.3
git clone --branch branch-X.Y https://github.com/fltk/fltk

To update to the latest version, just go into the fltk-1.3 directory and type
To update to the latest version, just go into the fltk directory and type

svn update
git pull

FIXME: no FL_SYMBOL font (-*-symbol-*), font 15 (Zapf-Dingbats)

Expand Down Expand Up @@ -153,13 +153,13 @@ Don't forget to leave root status (Ctrl-D) before loading FLTK. To install FLTK
for every user, you either have to set root user again, or use "visudo" to add
yourself to the "sudo" list.

I like to use subversion to install the latest FLTK-1.3.release:
I like to use git to install the latest FLTK-X.Y.release:

svn co http://seriss.com/public/fltk/fltk/branches/branch-1.3/ fltk-1.3
git clone --branch branch-X.Y https://github.com/fltk/fltk

To update to the latest version, just go into the fltk-1.3 directory and type
To update to the latest version, just go into the fltk directory and type

svn update
git pull

FIXME: no FL_SYMBOL font (-*-symbol-*), font 15 (Zapf-Dingbats)

Expand Down Expand Up @@ -242,18 +242,18 @@ To use the current stable version of FLTK, simply install it from pkgsrc:
cd /usr/pkgsrc/x11/fltk13
bmake install

For the latest development snapshot, first install the svn client from pkgsrc:
For the latest development snapshot, first install the git client from pkgsrc:

cd /usr/pkgsrc/devel/subversion
cd /usr/pkgsrc/devel/git
bmake install

Now fetch the latest FLTK source code:
Now fetch the latest FLTK X.Y.release source code:

svn co http://seriss.com/public/fltk/fltk/branches/branch-1.3/ fltk-1.3
git clone --branch branch-X.Y https://github.com/fltk/fltk

To update to the latest version, just go into the fltk-1.3 directory and type
To update to the latest version, just go into the fltk directory and type

svn update
git pull

If you have installed JPEG and PNG libraries from pkgsrc, configure your
environment as follows so that the FLTK configure script can find them:
Expand All @@ -278,8 +278,8 @@ Download FLTK from here:

https://www.fltk.org/software.php

If you are familiar with "subversion" and like to stay current with your
version, you will find the subversion access parameters at the bottom of that
If you are familiar with "git" and like to stay current with your
version, you will find the git access parameters at the bottom of that
page. Unpack FLTK into a convenient location. I like to have everything in my
dev directory:

Expand All @@ -294,7 +294,7 @@ dev directory:
3.2 Configuring FLTK
-----------------------

If you got FLTK via subversion then you need one extra step. Otherwise skip
If you got FLTK via git then you need one extra step. Otherwise skip
over this part. Stay in your FLTK source-code directory and type the
following:

Expand Down Expand Up @@ -442,3 +442,4 @@ Oct 30 2010 - matt: added Code::Blocks chapter
Oct 28 2010 - matt: restructured entire document and verified instructions
Nov 14 2010 - duncan: added install-desktop
Jun 17 2013 - erco: added mingodad's CodeBlocks/Fluid recommendations
Apr 13 2021 - giri: Replace svn instructions by git instructions