Go to file
Evgeniy Dushistov 502e845105 Import Volkov Peter ( volkov_peter )'s patch:
sdcv uses g_get_home_dir function to find home directory. That function uses passwd entry and this in turn breaks expectations of users and automatic tests inside sandbox where access behind some directory is not allowed (and thus tests are not allowed to write into /root/.stardict/dic...) The patch in attachment fixes this basically by using code from gnome manual:


http://library.gnome.org/devel/glib/stable/glib-Miscellaneous-Utility-Functions.html#g-get-home-dir

const char *homedir = g_getenv ("HOME");
if (!homedir)
homedir = g_get_home_dir ();
2010-08-01 21:00:33 +00:00
2010-08-01 20:42:04 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2008-10-11 16:04:35 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2007-08-14 18:18:20 +00:00
2008-10-11 16:04:35 +00:00
2007-08-14 18:18:20 +00:00

See sdcv man page for usage description.
See INSTALL file for installation description.

Description
Languages
C++ 78.1%
CMake 16.8%
Shell 5.1%