diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-08-05 03:04:01 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-08-05 03:05:50 -0400 |
| commit | ba0581ae79ea39adbe6de9ad8b61bc3fc1c6ea2c (patch) | |
| tree | fe8a32d93cfbaa4414eae003c27aac0810908cec /core/flags/constants.odin | |
| parent | d9404d928c2cbbdd7fd34ba6c1be6a34dee3452f (diff) | |
Give FreeBSD access to `core:net` in `core:flags`
Diffstat (limited to 'core/flags/constants.odin')
| -rw-r--r-- | core/flags/constants.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/flags/constants.odin b/core/flags/constants.odin index ab3dc9a0a..6f5281928 100644 --- a/core/flags/constants.odin +++ b/core/flags/constants.odin @@ -12,7 +12,7 @@ IMPORTING_TIME :: #config(ODIN_CORE_FLAGS_USE_TIME, time.IS_SUPPORTED) // Override support for parsing `net` types. // TODO: Update this when the BSDs are supported. -IMPORTING_NET :: #config(ODIN_CORE_FLAGS_USE_NET, ODIN_OS == .Windows || ODIN_OS == .Linux || ODIN_OS == .Darwin) +IMPORTING_NET :: #config(ODIN_CORE_FLAGS_USE_NET, ODIN_OS == .Windows || ODIN_OS == .Linux || ODIN_OS == .Darwin || ODIN_OS == .FreeBSD) TAG_ARGS :: "args" SUBTAG_NAME :: "name" |