tadeja commented on code in PR #50195:
URL: https://github.com/apache/arrow/pull/50195#discussion_r4006294709
##########
c_glib/arrow-glib/meson.build:
##########
@@ -225,6 +225,9 @@ if not gio.found()
gio = dependency('gio-2.0')
endif
dependencies = [arrow_acero, arrow_compute, arrow, gobject, gio]
+if arrow_s3.found()
+ dependencies += arrow_s3
+endif
Review Comment:
Perhaps such temporary change could be still useful?
```suggestion
pkgconfig_requires = ['gobject-2.0', 'arrow']
if arrow_s3.found()
dependencies += arrow_s3
pkgconfig_requires += ['arrow-s3']
endif
```
and then at line 255 -`requires: ['gobject-2.0', 'arrow'],`
can be replaced by +`requires: pkgconfig_requires,`
--
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]