mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-14 04:17:36 -04:00
Bumps [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) from 0.40.0 to 0.41.0. - [Release notes](https://github.com/testcontainers/testcontainers-go/releases) - [Commits](https://github.com/testcontainers/testcontainers-go/compare/v0.40.0...v0.41.0) --- updated-dependencies: - dependency-name: github.com/testcontainers/testcontainers-go dependency-version: 0.41.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
790 B
Go
20 lines
790 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2022 The Ebitengine Authors
|
|
|
|
//go:build cgo && (darwin || freebsd || linux || netbsd)
|
|
|
|
package purego
|
|
|
|
// if CGO_ENABLED=1 import the Cgo runtime to ensure that it is set up properly.
|
|
// This is required since some frameworks need TLS setup the C way which Go doesn't do.
|
|
// We currently don't support ios in fakecgo mode so force Cgo or fail.
|
|
// Even if CGO_ENABLED=1 the Cgo runtime is not imported unless `import "C"` is used,
|
|
// which will import this package automatically. Normally this isn't an issue since it
|
|
// usually isn't possible to call into C without using that import. However, with purego
|
|
// it is since we don't use `import "C"`!
|
|
import (
|
|
_ "runtime/cgo"
|
|
|
|
_ "github.com/ebitengine/purego/internal/cgo"
|
|
)
|