Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4e63301

Browse files
committed
meson: fix header path of ossp-uuid
The ossp-uuid pkg-config file includes the necessary -I to include the header as uuid.h. Previously this would only work if ossp-uuid has its headers in ossp/ in an already searched path. Reported-by: Andrew Dunstan <andrew@dunslane.net> Discussion: https://postgr.es/m/7bb8b8a5-5297-ab3c-3412-466fd0124d00@dunslane.net
1 parent 1925ac2 commit 4e63301

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1268,7 +1268,7 @@ if uuidopt != 'none'
12681268
elif uuidopt == 'ossp'
12691269
uuid = dependency('ossp-uuid', required: true)
12701270
uuidfunc = 'uuid_export'
1271-
uuidheader = 'ossp/uuid.h'
1271+
uuidheader = 'uuid.h'
12721272
else
12731273
error('huh')
12741274
endif

0 commit comments

Comments
 (0)