diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | nbd.c | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -24,6 +24,10 @@ endif LIBS+=$(AIOLIBS) +ifdef CONFIG_SOLARIS +LIBS+=-lsocket -lnsl -lresolv +endif + all: $(TOOLS) $(DOCS) recurse-all SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS)) @@ -22,6 +22,9 @@ #include <errno.h> #include <string.h> #include <sys/ioctl.h> +#ifdef __sun__ +#include <sys/ioccom.h> +#endif #include <ctype.h> #include <inttypes.h> #include <sys/socket.h> |