summaryrefslogtreecommitdiff
path: root/indra/newview/llappviewer.cpp
diff options
context:
space:
mode:
authorCallum Prentice <callum@gmail.com>2020-10-06 17:20:08 -0700
committerCallum Prentice <callum@gmail.com>2020-10-06 17:20:08 -0700
commit56e30615530bf5d1c86fbafee89c9998a079e88f (patch)
treeefc724ca761903b4c5eac2bac2a9775c92010dd9 /indra/newview/llappviewer.cpp
parent3092aa8aae496803707980eb456cddbb9960ef1c (diff)
Remove SQLite from project and we are now not going to use it for the cache
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r--indra/newview/llappviewer.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index 3a99c5a464..0d25cb6dc8 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -131,7 +131,6 @@
#if !LL_LINUX
#include "cef/dullahan_version.h"
#include "vlc/libvlc_version.h"
-#include "sqlite3.h"
#endif // LL_LINUX
// Third party library includes
@@ -3161,15 +3160,6 @@ LLSD LLAppViewer::getViewerInfo() const
#endif
#if !LL_LINUX
- std::ostringstream sqlite_ver_codec;
- sqlite_ver_codec << "SQLite: ";
- sqlite_ver_codec << SQLITE_VERSION;
- info["SQLITE_VERSION"] = sqlite_ver_codec.str();
-#else
- info["SQLITE_VERSION"] = "Undefined";
-#endif
-
-#if !LL_LINUX
std::ostringstream vlc_ver_codec;
vlc_ver_codec << LIBVLC_VERSION_MAJOR;
vlc_ver_codec << ".";