don't error out with DB_STORAGE disabled
Index: src/c-wrapper/api/c-call-log.cpp
--- src/c-wrapper/api/c-call-log.cpp.orig
+++ src/c-wrapper/api/c-call-log.cpp
@@ -378,7 +378,7 @@ bctbx_list_t *linphone_core_get_call_history_2(Linphon
 
 	return results;
 #else
-	bctbx_fatal("This function requires ENABLE_DB_STORAGE in order to work!");
+	//bctbx_fatal("This function requires ENABLE_DB_STORAGE in order to work!");
 	return NULL;
 #endif
 }
@@ -394,7 +394,7 @@ LinphoneCallLog *linphone_core_get_last_outgoing_call_
 
 	return log != nullptr ? linphone_call_log_ref(log->toC()) : NULL;
 #else
-	bctbx_fatal("This function requires ENABLE_DB_STORAGE in order to work!");
+	//bctbx_fatal("This function requires ENABLE_DB_STORAGE in order to work!");
 	return NULL;
 #endif
 }
