From 41f443971ca18a909ab30f0e92bea2f4c0395a49 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Mon, 17 Sep 2012 21:58:55 +0100 Subject: [PATCH] Build: Add a --enable-standalone option This option will generate a libcogl2 DSO that depends on the least possible external libraries. Reviewed-by: Robert Bragg (cherry picked from commit 6357960e1b91081546adf1bb110067d7db4d7400) --- configure.ac | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/configure.ac b/configure.ac index f1e090f58..656533573 100644 --- a/configure.ac +++ b/configure.ac @@ -195,6 +195,26 @@ dnl ================================================================ dnl Handle extra configure options dnl ================================================================ +dnl ============================================================ +dnl Standalone cogl +dnl ============================================================ + +AC_ARG_ENABLE( + [standalone], + [AC_HELP_STRING([--enable-debug=@<:@no/yes@:>@], [Build Cogl without any external depedency @<:@default=no@:>@])], + [], + enable_standalone=no +) +AS_IF([test "x$enable_standalone" = "xyes"], + [ + enable_cairo=no + enable_glib=no + enable_cogl_pango=no + enable_nls=no + enable_gdk_pixbuf=no + ] +) + dnl ============================================================ dnl Enable debugging dnl ============================================================