summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Klausner <wiz@NetBSD.org>2013-07-21 11:44:14 +0200
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-21 10:20:56 -0700
commit4427be3de93f359ab106a649a43e41319625e1e7 (patch)
treec6e540750b099f0f7eeb1df4a3869db347b896c5
parentaa7925c4a798b9ed2cd43bd3c99c2df2a1824311 (diff)
Fix zlib handling on NetBSD.
Signed-off-by: Thomas Klausner <wiz@NetBSD.org> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 9b7cd8c..65444b9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -77,10 +77,10 @@ case $host_os in
*netbsd*)
case $host in
*i386*)
- PCIACCESS_LIBS="-li386 -lpci"
+ PCIACCESS_LIBS="$PCIACCESS_LIBS -li386 -lpci"
;;
*x86_64*|*amd64*)
- PCIACCESS_LIBS="-lx86_64 -lpci"
+ PCIACCESS_LIBS="$PCIACCESS_LIBS -lx86_64 -lpci"
;;
esac
netbsd=yes