From 1be23c0cc9741cbe68a54cd84de772bd120254b6 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 9 Nov 2009 16:44:34 +0000 Subject: [PATCH] build: Fix --with-imagebackend configure switch An overeager search and replace broke the image backend command line switch for the configure script. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a0f87c74f..c51b8ff35 100644 --- a/configure.ac +++ b/configure.ac @@ -401,7 +401,7 @@ IMAGE_PC_FILES="" # quartz imageloader. AS_IF([test "x$COGL_WINSYS" = "xosx"], [COGL_IMAGE_BACKEND=quartz], [COGL_IMAGE_BACKEND=gdk-pixbuf]) -AC_ARG_WITH([COGL_IMAGE_BACKEND], +AC_ARG_WITH([imagebackend], [AC_HELP_STRING([--with-imagebackend=@<:@gdk-pixbuf/quartz/internal@:>@], [Select COGL image loading backend])], [COGL_IMAGE_BACKEND=$with_imagebackend])