File: FreeBSD_patches.mdwn

package info (click to toggle)
git-annex 10.20250721-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 74,484 kB
  • sloc: haskell: 90,982; javascript: 9,103; sh: 1,469; makefile: 213; perl: 137; ansic: 44
file content (25 lines) | stat: -rw-r--r-- 739 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
diff --git a/git-annex.cabal b/git-annex.cabal
index 0a50878eb..63d79bde9 100644
--- a/git-annex.cabal
+++ b/git-annex.cabal
@@ -396,8 +396,7 @@ Executable git-annex
     GHC-Options: -O0
 
   -- Avoid linking with unused dynamic libaries.
-  -- (Only tested on Linux).
-  if os(Linux)
+  if os(Linux) || os(freebsd)
     GHC-Options: -optl-Wl,--as-needed
 
   if (os(windows))
@@ -517,7 +516,7 @@ Executable git-annex
             Other-Modules: Utility.DirWatcher.Kqueue
 
   if flag(Dbus)
-    if (os(linux))
+    if os(linux) || os(freebsd)
       Build-Depends: dbus (>= 0.10.7), fdo-notify (>= 0.3)
       CPP-Options: -DWITH_DBUS -DWITH_DESKTOP_NOTIFY -DWITH_DBUS_NOTIFICATIONS
       Other-Modules: Utility.DBus

[[!tag moreinfo]]