WillAyd commented on code in PR #45828:
URL: https://github.com/apache/arrow/pull/45828#discussion_r2000132958


##########
cpp/src/arrow/meson.build:
##########
@@ -244,6 +244,30 @@ else
     rapidjson_dep = disabler()
 endif
 
+if needs_filesystem
+    arrow_fs_srcs = [
+        'filesystem/filesystem.cc',
+        'filesystem/localfs.cc',
+        'filesystem/mockfs.cc',
+        'filesystem/path_util.cc',
+        'filesystem/util_internal.cc',
+    ]
+    arrow_fs_incdir = []
+
+    if needs_hdfs
+        arrow_fs_srcs += 'filesystem/hdfs.cc'
+        hdfs_incdir = '../../thirdparty/hadoop/include'
+        arrow_fs_incdir += hdfs_incdir
+    endif
+
+    arrow_components += {
+        'arrow_filesystem': {
+            'sources': arrow_fs_srcs,
+            'include_dirs': arrow_fs_incdir,
+        },
+    }
+endif
+

Review Comment:
   Are you asking to remove the entire block for now?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to