Skip to content

Commit

Permalink
[uClibc] Fix TZ after bfc296b
Browse files Browse the repository at this point in the history
inspired by t-nelson:
xbmc@a2f3ca2
  • Loading branch information
bkuhls committed Mar 14, 2014
1 parent 29e45f5 commit 8c4e101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/settings/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ void CSettings::Uninitialize()
m_settingsManager->UnregisterSettingsHandler(&CWakeOnAccess::Get());
m_settingsManager->UnregisterSettingsHandler(&CRssManager::Get());
m_settingsManager->UnregisterSettingsHandler(&g_application);
#if defined(TARGET_LINUX) && !defined(TARGET_ANDROID)
#if defined(TARGET_LINUX) && !defined(TARGET_ANDROID) && !defined(__UCLIBC__)
m_settingsManager->UnregisterSettingsHandler(&g_timezone);
#endif

Expand Down Expand Up @@ -973,7 +973,7 @@ void CSettings::InitializeISettingsHandlers()
m_settingsManager->RegisterSettingsHandler(&CWakeOnAccess::Get());
m_settingsManager->RegisterSettingsHandler(&CRssManager::Get());
m_settingsManager->RegisterSettingsHandler(&g_application);
#if defined(TARGET_LINUX) && !defined(TARGET_ANDROID)
#if defined(TARGET_LINUX) && !defined(TARGET_ANDROID) && !defined(__UCLIBC__)
m_settingsManager->RegisterSettingsHandler(&g_timezone);
#endif
}
Expand Down

0 comments on commit 8c4e101

Please sign in to comment.