diff options
author | marcus <marcus@FreeBSD.org> | 2005-12-31 12:34:04 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-12-31 12:34:04 +0800 |
commit | d5052d02f57c6e355068d035d12fb7c41598866e (patch) | |
tree | 6a4bb6cb44d413ae1a30b81b566258edb97bf918 /graphics/cairo/files | |
parent | cd757d56d4570850c591901fa14f0b356943ed3a (diff) | |
download | freebsd-ports-gnome-d5052d02f57c6e355068d035d12fb7c41598866e.tar.gz freebsd-ports-gnome-d5052d02f57c6e355068d035d12fb7c41598866e.tar.zst freebsd-ports-gnome-d5052d02f57c6e355068d035d12fb7c41598866e.zip |
Fix the build in the WITHOUT_X11 case.
Reported by: James Risner <risner@stdio.com>
Diffstat (limited to 'graphics/cairo/files')
-rw-r--r-- | graphics/cairo/files/patch-configure | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/graphics/cairo/files/patch-configure b/graphics/cairo/files/patch-configure new file mode 100644 index 000000000000..9fa456c67feb --- /dev/null +++ b/graphics/cairo/files/patch-configure @@ -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 |