kou commented on pull request #10404:
URL: https://github.com/apache/arrow/pull/10404#issuecomment-871034191
@thisisnic Could you try the following change with #10626 on Raspberry Pi?
```diff
diff --git a/r/configure b/r/configure
index aa7e7a8d0..899a4a9f8 100755
--- a/r/configure
+++ b/r/configure
@@ -82,9 +82,8 @@ else
pkg-config --version >/dev/null 2>&1
if [ $? -eq 0 ] && [ "$ARROW_USE_PKG_CONFIG" != "false" ]; then
PKGCONFIG_CFLAGS=`pkg-config --cflags --silence-errors
${PKG_CONFIG_NAME}`
- PKGCONFIG_LIBS=`pkg-config --libs-only-l --silence-errors
${PKG_CONFIG_NAME}`
- PKGCONFIG_DIRS=`pkg-config --libs-only-L --silence-errors
${PKG_CONFIG_NAME}`
- # TODO: what about --libs-only-other?
+ PKGCONFIG_LIBS=`pkg-config --libs-only-l --libs-only-other --static
--silence-errors ${PKG_CONFIG_NAME}`
+ PKGCONFIG_DIRS=`pkg-config --libs-only-L --static --silence-errors
${PKG_CONFIG_NAME}`
fi
if [ "$PKGCONFIG_CFLAGS" ] && [ "$PKGCONFIG_LIBS" ]; then
```
--
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]