Skip to content

Commit 16517ce

Browse files
committed
Allow usage of system-installed libraries
1 parent 325d524 commit 16517ce

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

python/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ project(
2020
'cython',
2121
'cpp',
2222
version: run_command(
23-
'python',
23+
'python3',
2424
'-m',
2525
'setuptools_scm',
2626
'--force-write-version-files',

python/meson.options

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ option(
1919
'acero',
2020
type: 'feature',
2121
description: 'build the Acero Engine extension',
22-
value: 'enabled',
22+
value: 'auto',
2323
)
2424

2525
option(
@@ -61,14 +61,14 @@ option(
6161
'gcs',
6262
type: 'feature',
6363
description: 'build the Google Cloud Storage (GCS) extension',
64-
value: 'enabled',
64+
value: 'auto',
6565
)
6666

6767
option(
6868
'hdfs',
6969
type: 'feature',
7070
description: 'build the HDFS extension',
71-
value: 'enabled',
71+
value: 'auto',
7272
)
7373

7474
# TODO: check how CMake handled the JSON feature - was not there when
@@ -78,7 +78,7 @@ option(
7878
'json',
7979
type: 'feature',
8080
description: 'Build Arrow with JSON support',
81-
value: 'enabled',
81+
value: 'auto',
8282
)
8383

8484
option(

python/pyarrow/meson.build

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ if get_option('hdfs').enabled()
125125
endif
126126

127127
if get_option('cuda').enabled()
128-
error('arrow-cuda dep not yet implemented')
129128
cuda_dep = dependency('arrow-cuda')
130129
cython_modules += {'_cuda': {'dependencies': cuda_dep}}
131130
endif
@@ -141,7 +140,6 @@ if needs_dataset
141140
endif
142141

143142
if get_option('parquet').enabled()
144-
error('parquet dep not yet implemented')
145143
parquet_dep = dependency('parquet')
146144
cython_modules += {'_parquet': {'dependencies': parquet_dep}}
147145

@@ -235,7 +233,6 @@ if needs_substrait
235233
endif
236234

237235
if get_option('gandiva').enabled()
238-
error('gandiva dep not yet implemented')
239236
gandiva_dep = dependency('gandiva')
240237
cython_modules += {'gandiva': {'dependencies': gandiva_dep}}
241238
endif

0 commit comments

Comments
 (0)