zfs_arc: simplify build logic
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Fri, 3 Jun 2016 20:29:03 +0000 (22:29 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Fri, 3 Jun 2016 21:21:17 +0000 (23:21 +0200)
Use BUILD_SOLARIS instead of assuming that any OS not FreeBSD or Linux is Solaris.

src/Makefile.am

index 250557b..eb786f4 100644 (file)
@@ -1268,13 +1268,9 @@ zfs_arc_la_SOURCES = zfs_arc.c
 zfs_arc_la_LDFLAGS = $(PLUGIN_LDFLAGS)
 if BUILD_FREEBSD
 zfs_arc_la_LIBADD = -lm
-else
-if BUILD_LINUX
-# zfs_arc requires no library on linux
-else
-# solaris
-zfs_arc_la_LIBADD = -lkstat
 endif
+if BUILD_SOLARIS
+zfs_arc_la_LIBADD = -lkstat
 endif
 endif