Skip to content

Commit cce722b

Browse files
committed
Update sdl3_image meson.build
Some functions are currently failing to link when building with meson such as: IMG_Load(...), IMG_LoadTexture(...) since they are defined in IMG.c
1 parent c1a4468 commit cce722b

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

releases.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@
195195
"backward-cpp"
196196
],
197197
"versions": [
198+
"1.6-4",
198199
"1.6-3",
199200
"1.6-2",
200201
"1.6-1"
@@ -1340,6 +1341,7 @@
13401341
"tz"
13411342
],
13421343
"versions": [
1344+
"3.0.3-1",
13431345
"3.0.1-2",
13441346
"3.0.1-1",
13451347
"3.0.0-1",
@@ -3265,6 +3267,7 @@
32653267
"quill"
32663268
],
32673269
"versions": [
3270+
"9.0.3-1",
32683271
"9.0.2-1",
32693272
"9.0.0-1",
32703273
"8.2.0-1",
@@ -3535,6 +3538,7 @@
35353538
"sdl3_image"
35363539
],
35373540
"versions": [
3541+
"3.2.4-2",
35383542
"3.2.4-1"
35393543
]
35403544
},

subprojects/hinnant-date.wrap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[wrap-file]
2-
source_url = https://github.com/HowardHinnant/date/archive/v3.0.1.tar.gz
3-
source_filename = date-3.0.1.tar.gz
4-
source_hash = 7a390f200f0ccd207e8cff6757e04817c1a0aec3e327b006b7eb451c57ee3538
5-
directory = date-3.0.1
2+
source_url = https://github.com/HowardHinnant/date/archive/v3.0.3.tar.gz
3+
source_filename = date-3.0.3.tar.gz
4+
source_hash = 30de45a34a2605cca33a993a9ea54e8f140f23b1caf1acf3c2fd436c42c7d942
5+
directory = date-3.0.3
66
patch_directory = hinnant-date
77

88
[provide]

subprojects/packagefiles/backward-cpp/meson.build

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ if bfd.found()
3030
'-DBACKWARD_HAS_BFD=1',
3131
language: 'cpp',
3232
)
33-
if meson.version().version_compare('>= 0.62')
34-
deps += dependency('dl')
35-
else
36-
deps += cpp.find_library('dl')
33+
if host_machine.system() != 'windows'
34+
if meson.version().version_compare('>= 0.62')
35+
deps += dependency('dl')
36+
else
37+
deps += cpp.find_library('dl')
38+
endif
3739
endif
3840
endif
3941

subprojects/packagefiles/hinnant-date/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ project(
33
['cpp'],
44
default_options: ['cpp_std=c++17'],
55
license: 'MIT',
6+
version: '3.0.3',
67
)
78

89
pkg = import('pkgconfig')

subprojects/packagefiles/sdl3_image/src/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
img_src = files(
2+
'IMG.c',
23
'IMG_avif.c',
34
'IMG_bmp.c',
45
'IMG_gif.c',

subprojects/quill.wrap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[wrap-file]
2-
directory = quill-9.0.2
3-
source_url = https://github.com/odygrd/quill/archive/refs/tags/v9.0.2.tar.gz
4-
source_filename = quill-9.0.2.tar.gz
5-
source_hash = 7f5c6fbcc779d7d47a473b209a18908aadd691b2e3c82c4264ea015f6fbe4859
2+
directory = quill-9.0.3
3+
source_url = https://github.com/odygrd/quill/archive/refs/tags/v9.0.3.tar.gz
4+
source_filename = quill-9.0.3.tar.gz
5+
source_hash = 209b9a3fed9b44f61a50acc34fdc9f5f22338c03644728466e2f4a4b83036476
66

77
[provide]
88
quill = quill_dep

0 commit comments

Comments
 (0)