summaryrefslogtreecommitdiffhomepage
path: root/go
diff options
context:
space:
mode:
authorDan Callahan <d.callahan@f5.com>2024-02-27 15:15:42 +0000
committerDan Callahan <d.callahan@f5.com>2024-02-27 15:15:42 +0000
commitd76761901c4084bcdbc5a449e9bbb47d56b7093c (patch)
treeb4b7b4e3d588b73a2adcc0094cab466d9194c679 /go
parentc43629880472bba8d389dfb0b7ae6d883b0ba499 (diff)
parent088117008c9e8f397a58cc8d8070ce047beff12f (diff)
downloadunit-1.32.0-1.tar.gz
unit-1.32.0-1.tar.bz2
Merge tag '1.32.0' into branches/packaging1.32.0-1
Unit 1.32.0 release.
Diffstat (limited to 'go')
-rw-r--r--go/ldflags-darwin.go15
-rw-r--r--go/ldflags-lrt.go1
2 files changed, 16 insertions, 0 deletions
diff --git a/go/ldflags-darwin.go b/go/ldflags-darwin.go
new file mode 100644
index 00000000..77114ee4
--- /dev/null
+++ b/go/ldflags-darwin.go
@@ -0,0 +1,15 @@
+//go:build darwin
+// +build darwin
+
+/*
+ * Copyright (C) Danielle De Leo
+ * Copyright (C) NGINX, Inc.
+ */
+
+package unit
+
+/*
+#cgo LDFLAGS: -L/opt/homebrew/lib
+#cgo CFLAGS: -I/opt/homebrew/include
+*/
+import "C"
diff --git a/go/ldflags-lrt.go b/go/ldflags-lrt.go
index f5a63508..68a29145 100644
--- a/go/ldflags-lrt.go
+++ b/go/ldflags-lrt.go
@@ -1,3 +1,4 @@
+//go:build linux || netbsd
// +build linux netbsd
/*