Changes between Version 2 and Version 3 of doc-devel/slang-16Mcolors-32bits
- Timestamp:
- 02/01/17 14:21:50 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc-devel/slang-16Mcolors-32bits
v2 v3 30 30 ./configure --prefix=$HOME/local-slang 31 31 32 make 33 make install 32 make static 33 make install-static 34 34 35 35 rm -rf ~/slang-dev … … 56 56 57 57 # Run mc: 58 export LD_LIBRARY_PATH=$HOME/local-slang/lib59 58 export TERM=xterm-256color # if it's not already so. 60 59 export COLORTERM=truecolor # if it's not already so. … … 62 61 # ...then go to Options >> Appearance and choose the 16M skin. 63 62 }}} 63 64 == Static vs shared S-Lang library == 65 66 The instructions above compile & install a ''static'' library of S-Lang. If you want a ''shared'' library, replace "`make static; make install-static`" with "`make; make install`", and before running `mc` do "`export LD_LIBRARY_PATH=$HOME/local-slang/lib`".