aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/mods.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lib/mods.cc b/src/lib/mods.cc
index ab54e48..07f48da 100644
--- a/src/lib/mods.cc
+++ b/src/lib/mods.cc
@@ -161,14 +161,6 @@ bool libbible::installModFromInternet(string language, string name) {
#define delim '/'
bool libbible::installModFromZip(string filename) {
- // So... turns out it's a mite unsupported to install from a .zip
- // Here's the deal. We do a syscall to unzip. We fancy like that.
- // TODO: Use the ZipCompress module from SWORD instead.
- /*string command = "unzip -o " + filename + " -d " + basedir + "&> /dev/null";
- if(system(command.c_str())) {
- //Uh oh...
- printf("Something bad happened when unpacking %s\n. Is unzip installed?", filename.c_str());
- }*/
unzFile zipfile = unzOpen(filename.c_str());
if(zipfile == NULL) {
return false;