Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Detect Qt for NetBSD (same as FreeBSD detection at present) -- patch …
…from Brook Milligan.

git-svn-id: http://svn.osgeo.org/qgis/trunk@6073 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gsherman committed Nov 11, 2006
1 parent 60b96fc commit 46e6cfe
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions acinclude.m4
Expand Up @@ -414,6 +414,15 @@ case "${host}" in
fi
;;
*netbsd*)
QT_LIBS="$QT_LIB"
if test $QT_IS_STATIC = yes && test $QT_IS_EMBEDDED = no; then
QT_LIBS="$QT_LIBS -L$x_libraries -lXext -lX11 -lm -lSM -lICE -ldl -ljpeg -lpthread"
else
QT_LIBS="$QT_LIBS -lpthread"
fi
;;
*darwin*)
QT_LIBS="$QT_LIB"
if test $QT_IS_STATIC = yes && test $QT_IS_EMBEDDED = no; then
Expand Down

0 comments on commit 46e6cfe

Please sign in to comment.