Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

quagga: fix build on SmartOS #78

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions net/quagga/distinfo
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ SHA1 (quagga-0.99.22.3.tar.gz) = 80e2d32bb0a95d2e3e9c90f16618eee863202f85
RMD160 (quagga-0.99.22.3.tar.gz) = 41fa875d1722af286621aa90b14b27a56e8d6c9d
Size (quagga-0.99.22.3.tar.gz) = 2363963 bytes
SHA1 (patch-configure) = a58a698ba9b8a174c3623a9cd4b52518e410c0df
SHA1 (patch-lib_queue.h) = be3dcf510540aaf843672f5ab75b2d2c4926c77e
15 changes: 15 additions & 0 deletions net/quagga/patches/patch-lib_queue.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
$NetBSD$

fix build on SmartOS
--- lib/queue.h.orig 2013-07-30 14:47:01.000000000 +0000
+++ lib/queue.h
@@ -33,7 +33,9 @@
#ifndef _SYS_QUEUE_H_
#define _SYS_QUEUE_H_

+#ifndef SUNOS_5
#include <sys/cdefs.h>
+#endif

/*
* This file defines four types of data structures: singly-linked lists,