Fix the build in the WITHOUT_X11 case.
Reported by: James Risner <risner@stdio.com>
This commit is contained in:
parent
92eaeee9b4
commit
b587769d87
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=152469
1 changed files with 51 additions and 0 deletions
51
graphics/cairo/files/patch-configure
Normal file
51
graphics/cairo/files/patch-configure
Normal file
|
@ -0,0 +1,51 @@
|
|||
--- configure.orig Fri Dec 30 23:31:42 2005
|
||||
+++ configure Fri Dec 30 23:32:17 2005
|
||||
@@ -20478,7 +20478,6 @@
|
||||
use_xlib=yes
|
||||
fi;
|
||||
|
||||
-if test "x$use_xlib" = "xyes"; then
|
||||
|
||||
|
||||
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
|
||||
@@ -20586,6 +20585,7 @@
|
||||
fi
|
||||
|
||||
pkg_failed=no
|
||||
+if test "x$use_xlib" = "xyes"; then
|
||||
echo "$as_me:$LINENO: checking for XRENDER" >&5
|
||||
echo $ECHO_N "checking for XRENDER... $ECHO_C" >&6
|
||||
|
||||
@@ -27796,26 +27796,26 @@
|
||||
*** to @BACKEND@-backend specific API.
|
||||
'
|
||||
|
||||
-if test x"$use_glitz" == "xyes" ; then
|
||||
+if test x"$use_glitz" = "xyes" ; then
|
||||
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Glitz/'
|
||||
fi
|
||||
|
||||
-if test x"$use_xcb" == "xyes" ; then
|
||||
+if test x"$use_xcb" = "xyes" ; then
|
||||
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/XCB/'
|
||||
fi
|
||||
|
||||
-if test x"$use_quartz" == "xyes" ; then
|
||||
+if test x"$use_quartz" = "xyes" ; then
|
||||
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/Quartz/'
|
||||
fi
|
||||
|
||||
-if test x"$use_quartz" == "xyes" ; then
|
||||
+if test x"$use_quartz" = "xyes" ; then
|
||||
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/ATSUI/'
|
||||
fi
|
||||
|
||||
-if test x"$use_pdf" == "xyes" ; then
|
||||
+if test x"$use_pdf" = "xyes" ; then
|
||||
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PDF/'
|
||||
fi
|
||||
|
||||
-if test x"$use_ps" == "xyes" ; then
|
||||
+if test x"$use_ps" = "xyes" ; then
|
||||
echo "$WARNING_MESSAGE" | sed 's/@BACKEND@/PostScript/'
|
||||
fi
|
Loading…
Reference in a new issue