Skip to content

Commit 10a38a3

Browse files
committedSep 10, 2013
Handle --migrate even when compiled without leveldb support
1 parent c6e3797 commit 10a38a3

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed
 

‎src/main.cpp

+3-5
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
7979
#include "guiEngine.h"
8080
#include "mapsector.h"
8181

82-
#ifdef USE_LEVELDB
8382
#include "database-sqlite3.h"
83+
#ifdef USE_LEVELDB
8484
#include "database-leveldb.h"
8585
#endif
8686

@@ -795,10 +795,8 @@ int main(int argc, char *argv[])
795795
_("Set logfile path ('' = no logging)"))));
796796
allowed_options.insert(std::make_pair("gameid", ValueSpec(VALUETYPE_STRING,
797797
_("Set gameid (\"--gameid list\" prints available ones)"))));
798-
#if USE_LEVELDB
799798
allowed_options.insert(std::make_pair("migrate", ValueSpec(VALUETYPE_STRING,
800799
_("Migrate from current map backend to another (Only works when using minetestserver or with --server)"))));
801-
#endif
802800
#ifndef SERVER
803801
allowed_options.insert(std::make_pair("videomodes", ValueSpec(VALUETYPE_FLAG,
804802
_("Show available video modes"))));
@@ -1219,7 +1217,6 @@ int main(int argc, char *argv[])
12191217
// Create server
12201218
Server server(world_path, gamespec, false);
12211219

1222-
#if USE_LEVELDB
12231220
// Database migration
12241221
if (cmd_args.exists("migrate")) {
12251222
std::string migrate_to = cmd_args.get("migrate");
@@ -1242,8 +1239,10 @@ int main(int argc, char *argv[])
12421239
}
12431240
if (migrate_to == "sqlite3")
12441241
new_db = new Database_SQLite3(&(ServerMap&)server.getMap(), world_path);
1242+
#if USE_LEVELDB
12451243
else if (migrate_to == "leveldb")
12461244
new_db = new Database_LevelDB(&(ServerMap&)server.getMap(), world_path);
1245+
#endif
12471246
else {
12481247
errorstream << "Migration to " << migrate_to << " is not supported" << std::endl;
12491248
return 1;
@@ -1275,7 +1274,6 @@ int main(int argc, char *argv[])
12751274

12761275
return 0;
12771276
}
1278-
#endif
12791277

12801278
server.start(port);
12811279

0 commit comments

Comments
 (0)
Please sign in to comment.