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

Commitcc50694

Browse files
committed
meson: Add missing argument to gssapi.h check
These were missing since the initial introduction of the meson based build, ine692727. As-is this is unlikely to cause an issue, but a future commitwill add support for detecting gssapi without use of dependency(), which couldfail due to this.Discussion:https://postgr.es/m/20240708225659.gmyqoosi7km6ysgn@awork3.anarazel.deBackpatch: 16-, where the meson based build was added
1 parentfd958bb commitcc50694

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

‎meson.build

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,8 @@ if not gssapiopt.disabled()
627627
elif cc.check_header('gssapi/gssapi.h',dependencies: gssapi,required:false,
628628
args: test_c_args,include_directories: postgres_inc)
629629
cdata.set('HAVE_GSSAPI_GSSAPI_H',1)
630-
elif cc.check_header('gssapi.h',args: test_c_args,dependencies: gssapi,required: gssapiopt)
630+
elif cc.check_header('gssapi.h',dependencies: gssapi,required: gssapiopt,
631+
args: test_c_args,include_directories: postgres_inc)
631632
cdata.set('HAVE_GSSAPI_H',1)
632633
else
633634
have_gssapi=false
@@ -637,7 +638,8 @@ if not gssapiopt.disabled()
637638
elif cc.check_header('gssapi/gssapi_ext.h',dependencies: gssapi,required:false,
638639
args: test_c_args,include_directories: postgres_inc)
639640
cdata.set('HAVE_GSSAPI_GSSAPI_EXT_H',1)
640-
elif cc.check_header('gssapi_ext.h',args: test_c_args,dependencies: gssapi,required: gssapiopt)
641+
elif cc.check_header('gssapi_ext.h',dependencies: gssapi,required: gssapiopt,
642+
args: test_c_args,include_directories: postgres_inc)
641643
cdata.set('HAVE_GSSAPI_EXT_H',1)
642644
else
643645
have_gssapi=false

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp