Commit e4afd40e authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

#3618 get the statically linked tokudb_dump working. no need to run global...

#3618 get the statically linked tokudb_dump working. no need to run global destructors twice closes[t:3618]

git-svn-id: file:///svn/toku/tokudb@32323 c7de825b-a66e-492c-adef-691d508d4ae1
parent 3fa13f75
...@@ -246,7 +246,7 @@ static int test_main (int argc, char *const argv[]); ...@@ -246,7 +246,7 @@ static int test_main (int argc, char *const argv[]);
int int
main(int argc, char *const argv[]) { main(int argc, char *const argv[]) {
int r; int r;
#if IS_TDB && (TOKU_WINDOWS || TDB_IS_STATIC) #if IS_TDB && (TOKU_WINDOWS)
toku_ydb_init(); toku_ydb_init();
#endif #endif
#if !IS_TDB && DB_VERSION_MINOR==4 && DB_VERSION_MINOR == 7 #if !IS_TDB && DB_VERSION_MINOR==4 && DB_VERSION_MINOR == 7
...@@ -255,7 +255,7 @@ main(int argc, char *const argv[]) { ...@@ -255,7 +255,7 @@ main(int argc, char *const argv[]) {
r = db_env_set_func_realloc(toku_realloc); assert(r==0); r = db_env_set_func_realloc(toku_realloc); assert(r==0);
#endif #endif
r = test_main(argc, argv); r = test_main(argc, argv);
#if IS_TDB && (TOKU_WINDOWS || TDB_IS_STATIC) #if IS_TDB && (TOKU_WINDOWS)
toku_ydb_destroy(); toku_ydb_destroy();
#endif #endif
return r; return r;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment