@@ -59,10 +59,10 @@ let package = Package(
5959 " Gravity " ,
6060 " uFBX " ,
6161 ] )
62- dependencies. append (
63- . target( name: " Vorbis " ,
64- condition: . when( platforms: . any( except: . macOS , . wasi) ) )
65- )
62+ // dependencies.append(
63+ // .target(name: "Vorbis",
64+ // condition: .when(platforms: .any(except: .wasi)))
65+ // )
6666
6767 #if os(macOS) || os(Linux)
6868 dependencies. append (
@@ -166,13 +166,13 @@ let package = Package(
166166 settings. append ( . define( " GATEENGINE_WASI_UNSUPPORTED_HOST " , . when( platforms: [ . wasi] ) ) )
167167 #endif
168168
169- #if false // Experimental and upcomming language features.
169+ #if true // Experimental and upcomming language features.
170170 // These should be disabled for releases.
171171 // These are to get a headstart on the next Swift versions.
172172 // https://www.swift.org/swift-evolution/#?upcoming=true
173173 settings. append ( contentsOf: [
174174 . enableUpcomingFeature( " IsolatedDefaultValues " ) ,
175- . enableUpcomingFeature( " InternalImportsByDefault " ) ,
175+ // .enableUpcomingFeature("InternalImportsByDefault"),
176176 . enableUpcomingFeature( " DisableOutwardActorInference " ) ,
177177 . enableUpcomingFeature( " ImportObjcForwardDeclarations " ) ,
178178 . enableUpcomingFeature( " BareSlashRegexLiterals " ) ,
@@ -186,8 +186,8 @@ let package = Package(
186186
187187 . enableExperimentalFeature( " AccessLevelOnImport " ) ,
188188// .enableExperimentalFeature("StrictConcurrency"),
189- // .enableExperimentalFeature("StrictConcurrency=minimal"),
190- . enableExperimentalFeature( " StrictConcurrency=complete " ) ,
189+ . enableExperimentalFeature( " StrictConcurrency=minimal " ) ,
190+ // .enableExperimentalFeature("StrictConcurrency=complete"),
191191 ] )
192192 #endif
193193
@@ -259,12 +259,12 @@ let package = Package(
259259
260260 targets. append ( contentsOf: [
261261 // Vorbis
262- . target( name: " Vorbis " ,
263- path: " Dependencies/Vorbis " ,
264- publicHeadersPath: " include " ,
265- cSettings: [
266- . define( " extern " , to: " __declspec(dllexport) extern " , . when( platforms: [ . windows] ) )
267- ] ) ,
262+ // .target(name: "Vorbis",
263+ // path: "Dependencies/Vorbis",
264+ // publicHeadersPath: "include",
265+ // cSettings: [
266+ // .define("extern", to: "__declspec(dllexport) extern", .when(platforms: [.windows]))
267+ // ]),
268268
269269 // miniz
270270 . target( name: " miniz " ,
0 commit comments