Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Add meson.build file to support building from the contrib source tree.#139

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
rzharkov merged 1 commit intomasterfrommeson_build_master
Jan 24, 2025
Merged
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add meson.build file to support building from the contrib source tree.
  • Loading branch information
@rzharkov
rzharkov committedJan 24, 2025
commitc2f0ad54f51709b51c7d2338ab37a285eb2e6f91
96 changes: 96 additions & 0 deletionsmeson.build
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
# Copyright (c) 2025, Postgres Professional

# Does not support the PGXS infrastructure at this time. Please, compile as part
# of the contrib source tree.

rum_sources = files(
'src/btree_rum.c',
'src/rum_arr_utils.c',
'src/rum_ts_utils.c',
'src/rumbtree.c',
'src/rumbulk.c',
'src/rumdatapage.c',
'src/rumentrypage.c',
'src/rumget.c',
'src/ruminsert.c',
'src/rumscan.c',
'src/rumsort.c',
'src/rumtsquery.c',
'src/rumutil.c',
'src/rumvacuum.c',
'src/rumvalidate.c',
)

if host_system == 'windows'
rum_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
'--NAME', 'rum',
'--FILEDESC', 'rum - provides access method to work with the RUM indexes.',])
endif

rum = shared_module('rum',
rum_sources,
kwargs: contrib_mod_args,
)
contrib_targets += rum

install_data(
'rum.control',
'rum--1.0--1.1.sql',
'rum--1.0.sql',
'rum--1.1--1.2.sql',
'rum--1.1.sql',
'rum--1.2--1.3.sql',
'rum--1.2.sql',
'rum--1.3.sql',
kwargs: contrib_data_args,
)

tests += {
'name': 'rum',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'regress': {
'sql': [
'security',
'rum',
'rum_validate',
'rum_hash',
'ruminv',
'timestamp',
'orderby',
'orderby_hash',
'altorder',
'altorder_hash',
'limits',
'int2',
'int4',
'int8',
'float4',
'float8',
'money',
'oid',
'time',
'timetz',
'date',
'interval',
'macaddr',
'inet',
'cidr',
'text',
'varchar',
'char',
'bytea',
'bit',
'varbit',
'numeric',
'rum_weight',
'expr',
'array',
],
},
'tap': {
'tests': [
't/001_wal.pl',
],
},
}

[8]ページ先頭

©2009-2025 Movatter.jp