libdcp API fixes for macOS/Windows.
[dcpomatic.git] / src / lib / environment_info.cc
index 31279acfbf539b1be227542d9194af3ebd4a0ab2..5b1f56f727e279122211616742cb4598ad0cce32 100644 (file)
@@ -38,7 +38,7 @@ extern "C" {
 using std::string;
 using std::list;
 using std::pair;
-using boost::shared_ptr;
+using std::shared_ptr;
 
 /** @param v Version as used by FFmpeg.
  *  @return A string representation of v.
@@ -125,9 +125,11 @@ environment_info ()
 
 #if __GNUC__
 #if __x86_64__
-       info.push_back ("Built for 64-bit");
+       info.push_back ("Built for x86 64-bit");
+#elif __aarch64__
+       info.push_back ("Built for ARM 64-bit");
 #else
-       info.push_back ("Built for 32-bit");
+       info.push_back ("Built for x86 32-bit");
 #endif
 #endif