11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# greater. See the accompanying file COPYING for details.
#
# This program is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE.
# echo OPTION=$OPTION
if [[ $OPTION == "" ]]; then
export OPTION=std
fi
echo You may need to do the following first:
echo sudo apt install libreadline-dev
|
>
>
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# greater. See the accompanying file COPYING for details.
#
# This program is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE.
# echo OPTION=$OPTION
# BKM for ubuntu 17.04:
# sudo dpkg -i libpng12-0_1.2.54-1ubuntu1_amd64.deb
# sudo dpkg -i libpng12-0_1.2.54-1ubuntu1_amd64.deb
if [[ $OPTION == "" ]]; then
export OPTION=std
fi
echo You may need to do the following first:
echo sudo apt install libreadline-dev
|