Difference between revisions of "User talk:DaveC49"
From GnuCash
(→Build dependencies: new section) |
|||
Line 13: | Line 13: | ||
--[[User:DaveC49|DaveC49]] ([[User talk:DaveC49|talk]]) Wednesday 9 May 01:11:57 UTC 2018 | --[[User:DaveC49|DaveC49]] ([[User talk:DaveC49|talk]]) Wednesday 9 May 01:11:57 UTC 2018 | ||
+ | |||
+ | == Build dependencies == | ||
+ | |||
+ | Usually the devel packages depend on the respective binary package. So you can simplify your script (after testing) from e.g. <SyntaxHighlight lang="sh"> | ||
+ | sudo apt-get install libglib2.0 libglib2.0-dev | ||
+ | </SyntaxHighlight> | ||
+ | to <SyntaxHighlight lang="sh"> | ||
+ | sudo apt-get install libglib2.0-dev # installs also libglib2.0 | ||
+ | </SyntaxHighlight> | ||
+ | Sometimes they omit the lib prefix (gtk) or use more different names (libtool/libltdl). | ||
+ | |||
+ | --[[User:Fell|Fell]] ([[User talk:Fell|talk]]) 10:26, 28 July 2018 (UTC) |
Revision as of 10:26, 28 July 2018
Hi,
nice writing! You might consider to link some of your breakoff pages also in Building.
Can you review/update Eclipse#With Synaptic under Ubuntu / Debian, too?
--Fell (talk) 20:48, 8 May 2018 (UTC)
Thanks appreciate the feedback. I had considered incorporating the breakouts into the Building page where appropriate and not Ubunutu specific. Will do so!
I'll have a look at the Eclipse#With Synaptic under Ubuntu / Debian and see what I can do. I don't have a lot of familiarity with Eclipse at this time.
--DaveC49 (talk) Wednesday 9 May 01:11:57 UTC 2018
Build dependencies
Usually the devel packages depend on the respective binary package. So you can simplify your script (after testing) from e.g.sudo apt-get install libglib2.0 libglib2.0-dev
sudo apt-get install libglib2.0-dev # installs also libglib2.0
Sometimes they omit the lib prefix (gtk) or use more different names (libtool/libltdl).