Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Adjust dlopened library name on OpenBSD so we always pick the right one.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasperla committed Sep 30, 2011
1 parent e17c097 commit 25a19e1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions configure.ac
Expand Up @@ -149,6 +149,9 @@ if test x$have_cairo_gobject = xyes; then
*-*-mingw*)
CAIRO_SHARED_LIBRARY="libcairo-gobject-2.dll"
;;
*-*-openbsd*)
CAIRO_SHARED_LIBRARY="libcairo-gobject.so"
;;
*)
CAIRO_SHARED_LIBRARY="libcairo-gobject.so.2"
;;
Expand All @@ -162,6 +165,9 @@ elif test x$have_cairo = xyes; then
*-*-mingw*)
CAIRO_SHARED_LIBRARY="libcairo-2.dll"
;;
*-*-openbsd*)
CAIRO_SHARED_LIBRARY="libcairo.so"
;;
*)
CAIRO_SHARED_LIBRARY="libcairo.so.2"
;;
Expand Down

0 comments on commit 25a19e1

Please sign in to comment.