1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

ocaml-sqlite3: Fix typo in patch (only affects DF)

This commit is contained in:
John Marino 2014-03-31 16:34:39 +00:00
parent 12662f2bd4
commit 1ca4f94c50
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=349772

View File

@ -8,7 +8,7 @@ Correct system-dependent defines
#if __GNUC__ >= 3
# define inline inline __attribute__ ((always_inline))
-# if !defined(__FreeBSD__) && !__APPLE__
+# if !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__DragonFly) && !__APPLE__
+# if !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__DragonFly__) && !__APPLE__
# define __unused __attribute__ ((unused))
# endif
#else