2006-05-29 04:59:36 -04:00
# clutter package version number, (as distinct from shared library version)
# An odd micro number indicates in-progress development, (eg. from CVS)
# An even micro number indicates a released version.
2006-11-20 07:02:24 -05:00
m4_define([clutter_major_version], [0])
2008-09-29 06:41:48 -04:00
m4_define([clutter_minor_version], [9])
m4_define([clutter_micro_version], [0])
2006-11-20 07:02:24 -05:00
m4_define([clutter_version],
[clutter_major_version.clutter_minor_version.clutter_micro_version])
m4_define([clutter_api_version],
[clutter_major_version.clutter_minor_version])
2008-09-25 10:25:11 -04:00
# increase the interface age by 2 for each release;
# if the API changes, set to 0
2008-09-29 06:41:48 -04:00
m4_define([clutter_interface_age], [0])
2006-11-20 07:02:24 -05:00
m4_define([clutter_binary_age],
[m4_eval(100 * clutter_minor_version + clutter_micro_version)])
AC_PREREQ(2.53)
2006-05-29 04:59:36 -04:00
2007-12-19 11:16:10 -05:00
AC_INIT([clutter],
2006-11-20 07:02:24 -05:00
[clutter_version],
2006-06-22 11:01:22 -04:00
[http://bugzilla.o-hand.com/enter_bug.cgi?product=Clutter])
2006-05-29 04:59:36 -04:00
AC_CONFIG_SRCDIR([clutter/clutter.h])
2005-04-13 15:49:56 -04:00
AM_CONFIG_HEADER([config.h])
2008-01-23 06:08:39 -05:00
AM_INIT_AUTOMAKE([1.9])
2006-05-29 04:59:36 -04:00
2006-11-20 07:02:24 -05:00
CLUTTER_MAJOR_VERSION=clutter_major_version
CLUTTER_MINOR_VERSION=clutter_minor_version
CLUTTER_MICRO_VERSION=clutter_micro_version
CLUTTER_VERSION=clutter_version
2007-03-23 11:20:35 -04:00
CLUTTER_API_VERSION=clutter_api_version
2006-11-20 07:02:24 -05:00
CLUTTER_MAJORMINOR=clutter_api_version
AC_SUBST(CLUTTER_MAJOR_VERSION)
AC_SUBST(CLUTTER_MINOR_VERSION)
AC_SUBST(CLUTTER_MICRO_VERSION)
AC_SUBST(CLUTTER_VERSION)
2007-03-23 11:20:35 -04:00
AC_SUBST(CLUTTER_API_VERSION)
2006-05-29 04:59:36 -04:00
AC_SUBST(CLUTTER_MAJORMINOR)
2006-11-20 07:02:24 -05:00
m4_define([lt_current],
[m4_eval(100 * clutter_minor_version + clutter_micro_version - clutter_interface_age)])
m4_define([lt_revision], [clutter_interface_age])
m4_define([lt_age], [m4_eval(clutter_binary_age - clutter_interface_age)])
CLUTTER_LT_CURRENT=lt_current
CLUTTER_LT_REV=lt_revision
CLUTTER_LT_AGE=lt_age
2006-05-29 04:59:36 -04:00
CLUTTER_LT_VERSION="$CLUTTER_LT_CURRENT:$CLUTTER_LT_REV:$CLUTTER_LT_AGE"
CLUTTER_LT_LDFLAGS="-version-info $CLUTTER_LT_VERSION"
AC_SUBST(CLUTTER_LT_VERSION)
AC_SUBST(CLUTTER_LT_LDFLAGS)
dnl ========================================================================
2005-04-13 15:49:56 -04:00
# Checks for programs.
AC_PROG_CC
2008-04-25 09:37:36 -04:00
#_AM_DEPENDENCIES([OBJC])
#AC_PROG_OBJC
2006-06-23 05:20:04 -04:00
AC_DISABLE_STATIC
2005-04-13 15:49:56 -04:00
AC_PROG_LIBTOOL
2007-12-08 09:59:58 -05:00
# Make libtool respect the make -s switch (kudos to jacob berman)
changequote(,)dnl
LIBTOOL="${LIBTOOL} \$(shell echo \"\$(MFLAGS)\" | awk '/^[^ ]*s/ { print \"--silent\" }')"
changequote([,])dnl
2005-04-13 15:49:56 -04:00
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_MMAP
AC_CHECK_FUNCS([memset munmap strcasecmp strdup])
2008-06-09 09:29:17 -04:00
AC_PATH_PROG([GLIB_MKENUMS], [glib-mkenums])
AC_PATH_PROG([GLIB_GENMARSHAL], [glib-genmarshal])
PKG_PROG_PKG_CONFIG
2008-04-25 09:37:36 -04:00
dnl ========================================================================
2008-06-09 17:15:12 -04:00
# Peek which flavour the user wants so that we can couple the osx flavour with
# quartz imageloader.
if test "x$with_flavour" = "xosx"; then
imagebackend="quartz"
else
imagebackend="gdk-pixbuf"
fi
2008-04-25 09:37:36 -04:00
AC_ARG_WITH([imagebackend],
2008-06-09 17:15:12 -04:00
AC_HELP_STRING([--with-imagebackend=@<:@gdk-pixbuf/quartz/internal@:>@],
2008-04-25 09:37:36 -04:00
[Select COGL image loading backend]),
imagebackend=$with_imagebackend)
case $imagebackend in
2008-06-09 17:15:12 -04:00
quartz)
AC_DEFINE([USE_QUARTZ], 1, [Use Core Graphics (Quartz) for loading image files])
;;
2008-04-25 09:37:36 -04:00
gdk-pixbuf)
AC_DEFINE([USE_GDKPIXBUF], 1, [Use GdkPixbuf for loading image files])
;;
internal)
;;
esac
2005-04-13 15:49:56 -04:00
2006-05-29 04:59:36 -04:00
dnl ========================================================================
2007-11-15 09:45:27 -05:00
backendextra=
backendextralib=
2007-03-22 14:21:59 -04:00
clutterbackend=glx
AC_ARG_WITH([flavour],
2008-05-29 05:28:24 -04:00
AC_HELP_STRING([--with-flavour=@<:@glx/eglx/eglnative/sdl/osx/win32/fruity@:>@],
2007-03-22 14:21:59 -04:00
[Select the Clutter backend]),
clutterbackend=$with_flavour)
2008-05-29 05:28:24 -04:00
case $clutterbackend in
glx|eglx|eglnative|sdl|osx|win32|fruity) ;;
*) AC_MSG_ERROR([Invalid flavour $clutterbackend]) ;;
esac
2008-04-28 09:18:16 -04:00
2008-05-29 05:28:24 -04:00
glesversion=1.1
2008-04-28 09:18:16 -04:00
AC_ARG_WITH([gles],
2008-05-29 05:28:24 -04:00
AC_HELP_STRING([--with-gles=@<:@1.1/2.0@:>@],
2008-04-28 09:18:16 -04:00
[Select Clutter GLES version (for EGL backends)]),
glesversion=$with_gles)
2008-05-29 05:28:24 -04:00
case $glesversion in
1.1|2.0) ;;
*) AC_MSG_ERROR([Invalid GL ES version $glesversion])
esac
2008-05-01 11:28:56 -04:00
if test "x$clutterbackend" = "xfruity"
then
if test "x$glesversion" != "x1.1"; then
AC_MSG_ERROR([Fruity backend only supports GL ES 1.1.]);
fi
glesversion="fruity"
fi
2007-06-19 10:10:25 -04:00
BACKEND_PC_FILES=""
2007-07-06 09:56:01 -04:00
# Check for X though could be redundant if backend does not need it.
2008-06-09 09:29:17 -04:00
AC_MSG_CHECKING([for X11])
PKG_CHECK_EXISTS([x11], [have_x11=yes], [have_x11=no])
if test "x$have_x11" = "xno"; then
AC_PATH_X
if test x"$no_x" = "yes" ; then
if test "x$clutterbackend" = "xglx" or "x$clutterbackend" = "xeglx"
then
AC_MSG_ERROR([No X11 Libraries found and required by backend.])
fi
AC_MSG_RESULT([not found])
else
if test x"$x_includes" != x"NONE" && test -n "$x_includes" ; then
X11_CFLAGS=-I`echo $x_includes | sed -e "s/:/ -I/g"`
fi
if test x"$x_libraries" != x"NONE" && test -n "$x_libraries" ; then
X11_LIBS=-L`echo $x_libraries | sed -e "s/:/ -L/g"`
fi
AC_MSG_RESULT([found])
fi
else
AC_MSG_RESULT([found])
2007-07-06 09:56:01 -04:00
fi
2007-12-19 11:16:10 -05:00
2008-06-09 09:29:17 -04:00
AC_MSG_CHECKING([for XFIXES extension >= 3])
PKG_CHECK_EXISTS([xfixes >= 3], [have_xfixes=yes], [have_xfixes=no])
if test "x$have_xfixes" = "xyes"; then
AC_DEFINE(HAVE_XFIXES, 1, [Define to 1 if we have the XFIXES X extension])
X11_LIBS="$X11_LIBS -lXfixes"
AC_MSG_RESULT([found])
else
AC_MSG_RESULT([not found])
2007-07-06 09:56:01 -04:00
fi
2008-06-09 09:29:17 -04:00
AC_MSG_CHECKING([for XDAMAGE extension])
PKG_CHECK_EXISTS([xdamage], [have_xdamage=yes], [have_xdamage=no])
if test "x$have_xdamage" = "xyes"; then
AC_DEFINE(HAVE_XDAMAGE, 1, [Define to 1 if we have the XDAMAGE X extension])
X11_LIBS="$X11_LIBS -lXdamage"
AC_MSG_RESULT([found])
else
AC_MSG_RESULT([not found])
2008-04-15 17:18:13 -04:00
fi
2008-06-09 09:29:17 -04:00
AC_MSG_CHECKING([for XCOMPOSITE extension >= 0.4])
PKG_CHECK_EXISTS([xcomposite >= 0.4], [have_xcomposite=yes], [have_xcomposite=no])
if test "x$have_xcomposite" = "xyes"; then
AC_DEFINE(HAVE_XCOMPOSITE, 1, [Define to 1 if we have the XCOMPOSITE X extension])
2008-06-30 10:36:49 -04:00
X11_LIBS="$X11_LIBS -lXcomposite"
2008-06-09 09:29:17 -04:00
AC_MSG_RESULT([found])
else
AC_MSG_RESULT([not found])
2008-04-15 17:18:13 -04:00
fi
2008-04-25 09:37:36 -04:00
x11_tests=no
2008-04-15 17:18:13 -04:00
# Currently require all extentions, may not for actual release.
if test "x$clutterbackend" = "xglx" || test "x$clutterbackend" = "xeglx"
then
2008-06-30 10:36:49 -04:00
if test "x$have_xdamage" = "xno" || test "x$have_xfixes" = "xno" || test "x$have_xcomposite" = "xno"; then
2008-06-09 09:29:17 -04:00
AC_MSG_ERROR([Required backend X11 Libraries not found.])
fi
if test "x$have_xcomposite" = "xyes"; then
x11_tests=yes
fi
2008-04-25 09:37:36 -04:00
fi
AM_CONDITIONAL(X11_TESTS, test "x$x11_tests" != "xno")
2008-04-15 17:18:13 -04:00
2008-06-23 05:55:42 -04:00
xinput=no
AC_ARG_ENABLE(xinput,
AS_HELP_STRING([--enable-xinput],
["Use the XINPUT X extension"]),[
if test "x$enableval" = "xyes" ; then
PKG_CHECK_MODULES(XINPUT,[xi],
xinput=yes,
xinput=no)
fi],
[xinput=yes])
if test "x$xinput" = "xyes"; then
AC_DEFINE(USE_XINPUT, 1, Use the XINPUT X extension)
X11_LIBS="$X11_LIBS -lXi"
fi
2007-10-29 12:50:34 -04:00
clutter_gl_header=""
2008-05-27 13:42:50 -04:00
use_gles2_wrapper="no"
2007-10-29 12:50:34 -04:00
2008-04-28 09:18:16 -04:00
if test "x$clutterbackend" = "xeglnative" || test "x$clutterbackend" = "xeglx" || test "x$clutterbackend" = "xfruity"
then
case $glesversion in
1*)
clutter_gl_header="GLES/gl.h"
CLUTTER_COGL="gles"
AC_DEFINE([HAVE_COGL_GLES], 1, [Have GL/ES for rendering])
AC_CHECK_HEADERS([GLES/egl.h],,
[AC_MSG_ERROR([Unable to locate required GLES headers])])
AC_CHECK_HEADERS([$clutter_gl_header],,
[AC_MSG_ERROR([Unable to locate required GLES headers])])
# check for upper/lower case libgles_em
# The powervr sdk uses lower case.
AC_CHECK_LIB(GLES_CM, eglInitialize, HAVE_LIBGLES=yes, HAVE_LIBGLES=no)
if test "x$HAVE_LIBGLES" = "xno"; then
2008-04-29 08:22:39 -04:00
AC_CHECK_LIB(GLESv1_CM, eglInitialize, HAVE_LIBGLES=yes, HAVE_LIBGLES=no)
2008-04-28 09:18:16 -04:00
if test "x$HAVE_LIBGLES" = "xno"; then
2008-04-29 08:22:39 -04:00
AC_CHECK_LIB(gles_cm, eglInitialize, HAVE_LIBGLES=yes, HAVE_LIBGLES=no)
if test "x$HAVE_LIBGLES" = "xno"; then
AC_MSG_ERROR([GLES library not found and egl backend requested.]);
else
GLES_LIBS="-lgles_cm"
fi
else
2008-04-29 15:51:05 -04:00
GLES_LIBS="-lGLESv1_CM"
2008-04-29 08:22:39 -04:00
fi
2008-04-28 09:18:16 -04:00
else
GLES_LIBS="-lGLES_CM"
fi
;;
2*)
clutter_gl_header="GLES2/gl2.h"
2008-05-12 12:22:16 -04:00
CLUTTER_COGL="gles"
2008-04-28 09:18:16 -04:00
AC_DEFINE([HAVE_COGL_GLES2], 1, [Have GL/ES for rendering])
AC_CHECK_HEADERS([EGL/egl.h],,
[AC_MSG_ERROR([Unable to locate required GLES headers])])
AC_CHECK_HEADERS([$clutter_gl_header],,
[AC_MSG_ERROR([Unable to locate required GLES headers])])
GLES_LIBS="-lGLESv2 -lEGL"
2008-05-27 13:42:50 -04:00
use_gles2_wrapper=yes
2008-04-28 09:18:16 -04:00
;;
2008-05-01 11:28:56 -04:00
fruity)
2008-05-01 12:22:48 -04:00
CLUTTER_COGL="gles"
AC_DEFINE([HAVE_COGL_GLES], 1, [Have GL/ES for rendering])
2008-06-11 12:29:20 -04:00
clutter_gl_header="GLES/gl.h"
CLUTTER_COGL="gles"
AC_DEFINE([HAVE_COGL_GLES], 1, [Have GL/ES for rendering])
AC_CHECK_HEADERS([GLES/egl.h],,
[AC_MSG_ERROR([Unable to locate required GLES headers])])
AC_CHECK_HEADERS([$clutter_gl_header],,
[AC_MSG_ERROR([Unable to locate required GLES headers])])
2008-05-01 11:28:56 -04:00
;;
2008-04-28 09:18:16 -04:00
*) AC_MSG_ERROR([Invalid GL ES Version '$glesversion' specified])
;;
esac
fi
2008-05-27 13:42:50 -04:00
AM_CONDITIONAL(USE_GLES2_WRAPPER, test "x$use_gles2_wrapper" != "xno")
2007-03-22 14:21:59 -04:00
case $clutterbackend in
2007-03-27 17:09:11 -04:00
2007-05-02 16:05:29 -04:00
sdl)
2007-10-29 12:50:34 -04:00
clutter_gl_header="GL/gl.h"
2007-05-02 16:05:29 -04:00
CLUTTER_FLAVOUR="sdl"
2008-03-31 13:15:02 -04:00
CLUTTER_STAGE_TYPE="CLUTTER_TYPE_STAGE_SDL"
2007-05-02 16:05:29 -04:00
AC_DEFINE([HAVE_CLUTTER_SDL], 1, [Have the SDL backend])
CLUTTER_COGL="gl"
AC_DEFINE([HAVE_COGL_GL], 1, [Have GL for rendering])
AC_PATH_PROG(SDL_CONFIG, sdl-config)
if test "x$SDL_CONFIG" = "x"; then
AC_MSG_ERROR([[No sdl-config binary found in path and SDL flavour requested.]])
else
SDL_CFLAGS=`$SDL_CONFIG --cflags`
SDL_LIBS=`$SDL_CONFIG --libs`
2007-10-29 12:50:34 -04:00
AC_CHECK_HEADERS([$clutter_gl_header],,
[AC_MSG_ERROR([Unable to locate required GL headers])])
2007-12-19 11:16:10 -05:00
2008-05-16 07:09:59 -04:00
dnl Use -lopengl32 under Windows instead of -lGL
2007-12-19 11:16:10 -05:00
case "$host" in
*mingw32*)
2008-05-16 07:09:59 -04:00
SDL_LIBS="$SDL_LIBS -lopengl32"
2007-12-31 09:52:17 -05:00
CLUTTER_LT_LDFLAGS="$CLUTTER_LT_LDFLAGS -no-undefined"
2007-12-19 11:16:10 -05:00
;;
*)
AC_CHECK_LIB(GL, glEnable, HAVE_LIBGL=yes, HAVE_LIBGL=no)
if test "x$HAVE_LIBGL" = "xno"; then
AC_MSG_ERROR([libGL not found]);
fi
SDL_LIBS="$SDL_LIBS -lGL"
;;
esac
fi
2007-05-02 16:05:29 -04:00
;;
2007-03-22 14:21:59 -04:00
glx)
2007-03-27 17:09:11 -04:00
2007-10-29 12:50:34 -04:00
clutter_gl_header="GL/gl.h"
2007-03-22 14:21:59 -04:00
CLUTTER_FLAVOUR="glx"
2008-03-31 13:15:02 -04:00
CLUTTER_STAGE_TYPE="CLUTTER_TYPE_STAGE_GLX"
2007-03-22 14:21:59 -04:00
AC_DEFINE([HAVE_CLUTTER_GLX], 1, [Have the GLX backend])
2007-03-27 17:09:11 -04:00
2007-04-27 17:13:06 -04:00
CLUTTER_COGL="gl"
AC_DEFINE([HAVE_COGL_GL], 1, [Have GL for rendering])
2007-10-29 12:50:34 -04:00
AC_CHECK_HEADERS([$clutter_gl_header],,
[AC_MSG_ERROR([Unable to locate required GL headers])])
AC_CHECK_HEADERS([GL/glx.h],,
[AC_MSG_ERROR([Unable to locate required GLX headers])])
2007-03-27 17:09:11 -04:00
2007-05-02 16:05:29 -04:00
AC_CHECK_LIB(GL, glXCreateContext, HAVE_LIBGLX=yes, HAVE_LIBGLX=no)
2007-03-27 17:09:11 -04:00
2007-05-02 16:05:29 -04:00
if test "x$HAVE_LIBGLX" = "xno"; then
2007-03-27 17:09:11 -04:00
AC_MSG_ERROR([GLX not found and GLX backend requested]);
fi
2008-04-25 09:37:36 -04:00
if test "x$imagebackend" = "xgdk-pixbuf"; then
# xlib pixbuf needed for exporting the stage
BACKEND_PC_FILES="gdk-pixbuf-xlib-2.0"
fi
2007-12-19 11:16:10 -05:00
2007-03-27 17:09:11 -04:00
GLX_LIBS="$X11_LIBS -lGL"
GLX_CFLAGS="$X11_CFLAGS"
2007-12-19 11:16:10 -05:00
backendextra=x11
2007-11-15 09:45:27 -05:00
backendextralib="x11/libclutter-x11.la"
2007-03-22 14:21:59 -04:00
;;
2007-03-27 17:09:11 -04:00
2007-07-06 07:40:59 -04:00
eglx)
2007-12-19 11:16:10 -05:00
2007-07-06 07:40:59 -04:00
CLUTTER_FLAVOUR="eglx"
2008-04-14 11:10:22 -04:00
CLUTTER_STAGE_TYPE="CLUTTER_TYPE_STAGE_EGL"
2007-03-22 14:21:59 -04:00
AC_DEFINE([HAVE_CLUTTER_EGL], 1, [Have the EGL backend])
2007-03-27 17:09:11 -04:00
2008-04-28 09:18:16 -04:00
EGL_LIBS="$GLES_LIBS $X11_LIBS"
EGL_CFLAGS="$GLES_CFLAGS $X11_CFLAGS"
2007-11-15 09:45:27 -05:00
backendextra=x11
backendextralib="x11/libclutter-x11.la"
2007-03-22 14:21:59 -04:00
;;
2007-03-27 17:09:11 -04:00
2007-07-06 09:56:01 -04:00
eglnative)
2007-12-19 11:16:10 -05:00
2007-07-06 09:56:01 -04:00
CLUTTER_FLAVOUR="eglnative"
2008-03-31 13:15:02 -04:00
CLUTTER_STAGE_TYPE="CLUTTER_TYPE_STAGE_EGLNATIVE"
2007-07-06 09:56:01 -04:00
AC_DEFINE([HAVE_CLUTTER_EGL], 1, [Have the EGL backend])
2007-07-09 18:25:26 -04:00
PKG_CHECK_MODULES(TSLIB, tslib-1.0, [have_tslib=yes], [have_tslib=no])
if test x$have_tslib = xyes; then
AC_DEFINE([HAVE_TSLIB], 1, [Have tslib for touchscreen handling])
fi
2008-04-28 09:18:16 -04:00
EGL_LIBS="$GLES_LIBS $TSLIB_LIBS"
2007-07-09 18:25:26 -04:00
EGL_CFLAGS="$TSLIB_CFLAGS"
2007-07-06 09:56:01 -04:00
;;
2008-04-25 09:37:36 -04:00
fruity)
2008-04-29 12:30:47 -04:00
2008-04-25 09:37:36 -04:00
CLUTTER_FLAVOUR="fruity"
CLUTTER_STAGE_TYPE="CLUTTER_TYPE_STAGE_FRUITY"
AC_DEFINE([HAVE_CLUTTER_FRUITY], 1, [We're building a fruity version of the eglnative backend])
2008-04-28 09:18:16 -04:00
EGL_LIBS="-ObjC -framework Foundation -framework CoreFoundation -framework CoreGraphics -framework CoreSurface -framework GraphicsServices -framework OpenGLES -framework LayerKit -framework UIKit"
EGL_CFLAGS=""
2008-04-25 09:37:36 -04:00
;;
2007-10-26 18:06:45 -04:00
osx)
2007-07-06 09:56:01 -04:00
2007-10-29 12:50:34 -04:00
clutter_gl_header="OpenGL/gl.h"
2007-10-26 18:06:45 -04:00
CLUTTER_FLAVOUR="osx"
2008-03-31 13:15:02 -04:00
CLUTTER_STAGE_TYPE="CLUTTER_TYPE_STAGE_OSX"
2007-10-26 18:06:45 -04:00
AC_DEFINE([HAVE_CLUTTER_OSX], [1], [Have the OSX backend])
CLUTTER_COGL="gl"
AC_DEFINE([HAVE_COGL_GL], [1], [Have GL for rendering])
OSX_LIBS="-framework Cocoa -framework OpenGL"
2007-10-29 12:50:34 -04:00
AC_CHECK_HEADERS([$clutter_gl_header],,
2007-10-26 18:06:45 -04:00
[AC_MSG_ERROR([Unable to locate required GL headers])])
;;
2008-03-25 11:42:50 -04:00
win32)
clutter_gl_header="GL/gl.h"
CLUTTER_FLAVOUR="win32"
2008-03-31 13:15:02 -04:00
CLUTTER_STAGE_TYPE="CLUTTER_TYPE_STAGE_WIN32"
2008-03-25 11:42:50 -04:00
AC_DEFINE([HAVE_CLUTTER_WIN32], 1, [Have the Win32 backend])
CLUTTER_COGL="gl"
AC_DEFINE([HAVE_COGL_GL], 1, [Have GL for rendering])
AC_CHECK_HEADERS([$clutter_gl_header],,
[AC_MSG_ERROR([Unable to locate required GL headers])])
WIN32_CFLAGS="-D_WIN32_WINNT=0x0500"
2008-05-16 07:09:59 -04:00
WIN32_LIBS="-lopengl32 -lgdi32 -lwinmm"
2008-03-25 11:42:50 -04:00
CLUTTER_LT_LDFLAGS="$CLUTTER_LT_LDFLAGS -no-undefined"
;;
2008-04-25 09:37:36 -04:00
*) AC_MSG_ERROR([Invalid backend for Clutter: use glx,sdl,osx,win32,eglx, eglnative or fruity])
2007-03-22 14:21:59 -04:00
;;
2007-03-27 17:09:11 -04:00
2007-03-22 14:21:59 -04:00
esac
2008-04-28 09:18:16 -04:00
2007-10-29 12:50:34 -04:00
CLUTTER_GL_HEADER=$clutter_gl_header
2007-05-02 16:05:29 -04:00
AC_SUBST([clutterbackend])
2008-04-25 09:37:36 -04:00
AC_SUBST([imagebackend])
2007-11-15 09:45:27 -05:00
AC_SUBST([backendextra])
AC_SUBST([backendextralib])
2007-01-23 15:29:11 -05:00
AC_SUBST(CLUTTER_FLAVOUR)
2007-03-26 19:18:39 -04:00
AC_SUBST(CLUTTER_COGL)
2007-10-29 12:50:34 -04:00
AC_SUBST(CLUTTER_GL_HEADER)
2008-03-31 13:15:02 -04:00
AC_SUBST(CLUTTER_STAGE_TYPE)
2007-03-22 14:21:59 -04:00
2007-05-18 03:30:06 -04:00
clutterbackendlib=libclutter$CLUTTER_REAL-$clutterbackend-$CLUTTER_MAJORMINOR.la
2007-03-22 14:21:59 -04:00
AC_SUBST([clutterbackendlib])
2007-01-23 15:29:11 -05:00
2006-05-29 04:59:36 -04:00
dnl ========================================================================
2005-04-13 15:49:56 -04:00
2008-04-24 14:53:43 -04:00
# allow building clutter with an external dependency on json-glib
# using the --with-json=check argument, but keep the default to
# the internal version
AC_ARG_WITH([json],
AC_HELP_STRING([--with-json=@<:@internal/check@:>@],
[Select the JSON-GLib copy to use @<:@default=internal@:>@]),
[],
[with_json=internal])
case $with_json in
internal|check) ;;
*) AC_MSG_ERROR([Invalid value for the JSON library: use internal or check]) ;;
esac
if test "x$with_json" = "xinternal"; then
2008-04-23 09:58:58 -04:00
JSON_PREFIX=json
2008-04-24 14:53:43 -04:00
have_json=no
else
# if the user asked for it and if we have json-glib installed,
# prefer the system library instead of the internal copy
AC_MSG_CHECKING([for installed JSON-GLib])
PKG_CHECK_EXISTS(json-glib-1.0, [have_json=yes], [have_json=no])
if test "x$have_json" = "xyes"; then
JSON_PREFIX=json-glib
JSON_GLIB_PC=json-glib-1.0
AC_DEFINE(HAVE_JSON_GLIB, 1, [Have the JSON-GLib library installed])
AC_MSG_RESULT([found])
else
JSON_PREFIX=json
AC_MSG_RESULT([not found, using internal copy])
fi
2008-04-23 09:58:58 -04:00
fi
AC_SUBST(JSON_PREFIX)
AM_CONDITIONAL(LOCAL_JSON_GLIB, test "x$have_json" = "xno")
2008-10-20 17:52:35 -04:00
CLUTTER_REQUIRES="pangocairo >= 1.18 gobject-2.0 >= 2.14 gthread-2.0 gmodule-no-export-2.0 $BACKEND_PC_FILES $JSON_GLIB_PC"
2008-04-25 09:37:36 -04:00
if test "x$imagebackend" = "xgdk-pixbuf"; then
CLUTTER_REQUIRES="$CLUTTER_REQUIRES gdk-pixbuf-2.0"
fi
2007-12-31 06:22:11 -05:00
PKG_CHECK_MODULES(CLUTTER_DEPS, [$CLUTTER_REQUIRES])
AC_SUBST(CLUTTER_REQUIRES)
2005-04-13 15:49:56 -04:00
2008-04-23 09:58:58 -04:00
# prefixes for fixing gtk-doc references
2008-02-08 08:40:50 -05:00
GLIB_PREFIX="`$PKG_CONFIG --variable=prefix glib-2.0`"
PANGO_PREFIX="`$PKG_CONFIG --variable=prefix pango`"
2008-06-10 02:37:46 -04:00
GDKPIXBUF_PREFIX="`$PKG_CONFIG --variable=prefix gdk-pixbuf-2.0`"
2008-02-08 08:40:50 -05:00
AC_SUBST(GLIB_PREFIX)
AC_SUBST(PANGO_PREFIX)
AC_SUBST(GDKPIXBUF_PREFIX)
2006-05-29 04:59:36 -04:00
dnl ========================================================================
2005-04-13 15:49:56 -04:00
2006-05-29 04:59:36 -04:00
if test "x$GCC" = "xyes"; then
GCC_FLAGS="-g -Wall"
2005-04-13 15:49:56 -04:00
fi
2006-11-20 07:02:24 -05:00
dnl = Enable debug level ===================================================
m4_define([debug_default],
m4_if(m4_eval(clutter_minor_version % 2), [1], [yes], [minimum]))
AC_ARG_ENABLE(debug,
AC_HELP_STRING([--enable-debug=@<:@no/minimum/yes@:>@],
2006-11-22 15:52:27 -05:00
[turn on debugging. yes; All glib asserts, checks and runtime clutter verbose messages. minimum; Just glib cast checks and runtime clutter verbose messagaes. no; No glib asserts or checks and no runtime clutter verbose messages. @<:@default=debug_default@:>@]),
2006-11-20 07:02:24 -05:00
,
enable_debug=debug_default)
if test "x$enable_debug" = "xyes"; then
test "$cflags_set" = set || CFLAGS="$CFLAGS -g"
2006-11-21 04:18:40 -05:00
CLUTTER_DEBUG_CFLAGS="-DCLUTTER_ENABLE_DEBUG"
2006-11-20 07:02:24 -05:00
else
if test "x$enable_debug" = "xno"; then
2006-11-22 15:52:27 -05:00
CLUTTER_DEBUG_CFLAGS="-DG_DISABLE_ASSERT -DG_DISABLE_CHECKS -DG_DISABLE_CAST_CHECKS"
2006-11-21 Emmanuele Bassi <ebassi@openedhand.com>
* configure.ac: Enable debug messages also when
--enable-debug is set to "minimum".
* clutter/Makefile.am:
* clutter/clutter-debug.h: Move all debugging macros inside
this private header; make all debug macros depend on the
CLUTTER_ENABLE_DEBUG compile time define, controlled by
the --enable-debug configure switch; add G_LOG_DOMAIN define.
* clutter/clutter-main.c: Clean up the debug stuff; add
command line argument parsing using GOption; the debug
messages now are triggered like this:
CLUTTER_DEBUG=section:section:... clutter-app
or like this:
clutter-app --clutter-debug=section:section:...
where "section" is one of the sections listed in clutter-main.c,
or "all", for all sections; each section is bound to a flag,
which can be used to define a domain when adding a debug note
using the CLUTTER_NOTE() macro; the old CLUTTER_DBG() macro is
just a wrapper around that, under the CLUTTER_DEBUG_MISC domain;
CLUTTER_NOTE() is used like this:
CLUTTER_NOTE (DOMAIN, log-function);
where log function is g_printerr(), g_message(), g_warning(),
g_critical() or directly g_log() - for instance:
CLUTTER_NOTE (PANGO, g_warning ("Cache miss: %d", glyph));
will print the warning only if the "pango" flag has been
set to the CLUTTER_DEBUG envvar or passed to the --clutter-debug
command line argument.
similar to CLUTTER_SHOW_FPS, there's also the --clutter-show-fps
command line switch; also, the --display and --screen command
line switches have been added: the first overrides the DISPLAY
envvar and the second controls the X screen used by Clutter to
get the root window on the display.
* clutter/clutter-main.h:
* clutter/clutter-main.c: Add extended support for GOption
in Clutter; use clutter_init_with_args() to let Clutter
parse your own command line arguments; use instead
clutter_get_option_group() to get the GOptionGroup used by
Clutter if you want to do the parsing yourself with
g_option_context_parse(). The init sequence has been verified,
updated and moved into common functions where possible.
* clutter/pango/pangoclutter-render.c:
* clutter/*.c: Include "clutter-debug.h" where needed; use
CLUTTER_NOTE() instead of CLUTTER_DBG().
* examples/super-oh.c: Use the new clutter_init_with_args()
function, and add a --num-hands command line switch to
the SuperOH example code controlling the number of hands at
runtime.
2006-11-21 16:27:53 -05:00
else # minimum
2006-11-22 15:52:27 -05:00
CLUTTER_DEBUG_CFLAGS="-DCLUTTER_ENABLE_DEBUG -DG_DISABLE_CAST_CHECKS"
2006-11-20 07:02:24 -05:00
fi
fi
AC_SUBST(CLUTTER_DEBUG_CFLAGS)
2007-07-26 06:00:09 -04:00
dnl = Enable strict compiler flags =========================================
# use strict compiler flags only on development releases
#m4_define([maintainer_flags_default],
# m4_if(m4_eval(clutter_minor_version % 2), [1], [yes], [no]))
m4_define([maintainer_flags_default], [no])
AC_ARG_ENABLE([maintainer-flags],
AC_HELP_STRING([--enable-maintainer-flags=@<:@no/yes@:>@],
[Use strict compiler flags @<:@default=maintainer_flags_default@:>@]),,
enable_maintainer_flags=maintainer_flags_default)
if test "x$enable_maintainer_flags" = "xyes"; then
CPPFLAGS="$CPPFLAGS -Werror -Wall -Wshadow -Wcast-align -Wno-uninitialized"
fi
2006-11-20 07:02:24 -05:00
dnl = GTK Doc check ========================================================
2008-04-23 09:58:58 -04:00
GTK_DOC_CHECK([1.8])
2006-05-29 04:59:36 -04:00
2008-07-17 08:21:01 -04:00
# we don't want to build the documentation from a SVN checkout unless we
# explicitly tell configure to do so; this allows avoiding to recurse into
# the documentation directory when building Clutter inside Poky for a
# target device that doesn't have gtk-doc installed. for reference
# see: http://bugzilla.openedhand.com/show_bug.cgi?id=1047
#
# we use autogen.sh as it exists only inside the SVN checkouts, and it
# is not packaged into tarballs.
AM_CONDITIONAL([BUILD_GTK_DOC],
[test "x$enable_gtk_doc" = "xyes" || test ! -f "autogen.sh"])
2007-05-30 19:16:58 -04:00
dnl = Manual ===============================================================
AC_ARG_ENABLE(manual,
AC_HELP_STRING([--enable-manual=@<:@no/yes@:>@],
[Build application developers manual. Requires jw and xmlto binaries.]),
enable_manual=$enableval, enable_manual=no)
2007-06-16 05:06:03 -04:00
if test "x$enable_manual" = "xyes"; then
AC_PATH_PROG(JW, jw, no)
if test "x$JW" = "xno"; then
2007-06-16 16:58:00 -04:00
AC_MSG_ERROR(['jw' program needed by the manual not found in path])
2007-06-15 19:15:34 -04:00
fi
2007-06-16 05:06:03 -04:00
AC_PATH_PROG(XMLTO, xmlto, no)
if test "x$XMLTO" = "xno"; then
2007-06-16 16:58:00 -04:00
AC_MSG_ERROR(['xmlto' program needed by the manual not found in path])
2007-06-15 19:15:34 -04:00
fi
2007-06-14 07:56:35 -04:00
fi
2007-06-16 05:06:03 -04:00
AM_CONDITIONAL(ENABLE_MANUAL, test "x$enable_manual" != "xno")
2007-05-30 19:16:58 -04:00
2006-05-29 04:59:36 -04:00
dnl ========================================================================
2005-04-13 15:49:56 -04:00
AC_SUBST(GCC_FLAGS)
2008-04-23 09:58:58 -04:00
CLUTTER_CFLAGS="$SDL_CFLAGS $EGL_CFLAGS $GLX_CFLAGS $OSX_CFLAGS $WIN32_CFLAGS $CLUTTER_DEPS_CFLAGS"
2008-03-25 11:42:50 -04:00
CLUTTER_LIBS="$SDL_LIBS $EGL_LIBS $GLX_LIBS $OSX_LIBS $WIN32_LIBS $CLUTTER_DEPS_LIBS"
2005-04-13 15:49:56 -04:00
2006-05-29 04:59:36 -04:00
AC_SUBST(CLUTTER_CFLAGS)
AC_SUBST(CLUTTER_LIBS)
2005-04-13 15:49:56 -04:00
2008-06-10 12:47:38 -04:00
GETTEXT_PACKAGE="clutter-$CLUTTER_API_VERSION"
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
[The prefix for our gettext translation domains.])
ALL_LINGUAS=""
AM_GLIB_GNU_GETTEXT
2006-11-20 07:02:24 -05:00
AC_CONFIG_FILES([
Makefile
clutter/Makefile
clutter/clutter-version.h
2008-04-23 09:58:58 -04:00
clutter/clutter-json.h
2007-11-15 09:45:27 -05:00
clutter/x11/Makefile
2008-01-23 06:08:39 -05:00
clutter/x11/clutter-x11.pc
2007-03-22 14:21:59 -04:00
clutter/glx/Makefile
2007-07-06 09:56:01 -04:00
clutter/eglx/Makefile
clutter/eglnative/Makefile
2008-04-25 09:37:36 -04:00
clutter/fruity/Makefile
2007-10-26 18:06:45 -04:00
clutter/osx/Makefile
2008-03-25 11:42:50 -04:00
clutter/win32/Makefile
clutter/win32/clutter-win32.pc
2007-05-02 16:05:29 -04:00
clutter/sdl/Makefile
2007-03-26 19:18:39 -04:00
clutter/cogl/Makefile
2008-04-25 09:37:36 -04:00
clutter/cogl/common/Makefile
clutter/cogl/cogl.h
clutter/cogl/cogl-defines-gl.h:clutter/cogl/gl/cogl-defines.h.in
clutter/cogl/cogl-defines-gles.h:clutter/cogl/gles/cogl-defines.h.in
2007-03-26 19:18:39 -04:00
clutter/cogl/gl/Makefile
2007-03-27 17:09:11 -04:00
clutter/cogl/gles/Makefile
2007-10-08 11:03:22 -04:00
clutter/json/Makefile
clutter/pango/Makefile
2007-05-04 19:53:49 -04:00
tests/Makefile
2006-11-20 07:02:24 -05:00
doc/Makefile
doc/reference/Makefile
2008-04-25 09:37:36 -04:00
doc/reference/clutter/Makefile
doc/reference/clutter/version.xml
doc/reference/cogl/Makefile
2008-06-24 06:39:12 -04:00
doc/reference/cogl/version.xml
2007-05-30 19:16:58 -04:00
doc/manual/clutter-manual.xml
doc/manual/Makefile
2008-06-10 12:47:38 -04:00
po/Makefile.in
2006-11-20 07:02:24 -05:00
clutter.pc
2005-04-13 15:49:56 -04:00
])
2006-06-06 16:40:40 -04:00
2006-11-20 07:02:24 -05:00
AC_OUTPUT
2006-06-06 16:40:40 -04:00
dnl ========================================================================
echo ""
2008-07-17 08:21:01 -04:00
echo " Clutter $VERSION"
echo " ===================="
2006-06-06 16:40:40 -04:00
echo ""
2008-07-17 08:21:01 -04:00
echo " prefix: ${prefix}"
2006-06-06 16:40:40 -04:00
echo ""
2008-07-17 08:21:01 -04:00
echo " Flavour: ${clutterbackend}/${CLUTTER_COGL}"
2008-06-23 05:55:42 -04:00
if test "x$clutterbackend" = "xeglx" || test "x$clutterbackend" = "xglx"; then
2008-07-17 08:21:01 -04:00
echo " XInput: ${xinput}"
2008-06-23 05:55:42 -04:00
fi
2008-07-17 08:21:01 -04:00
echo " GL Headers: ${CLUTTER_GL_HEADER}"
echo " Image backend: ${imagebackend}"
echo " Target library: ${clutterbackendlib}"
echo " Debug level: ${enable_debug}"
echo " Compiler flags: ${CPPFLAGS}"
echo " Build API Documentation: ${enable_gtk_doc}"
echo " Build Manual Documentation: ${enable_manual}"
2006-06-08 18:19:32 -04:00
echo ""
2008-04-25 09:37:36 -04:00
# you can add more configuration options or flags that will bring up the
# the experimental/unstable warning summary.
if test "x$imagebackend" = "xinternal"; then
2008-06-24 07:16:07 -04:00
experimental_stuff="$experimental_stuff imagebackend: $imagebackend\n"
2008-04-25 09:37:36 -04:00
fi
if test "x$clutterbackend" = "xfruity"; then
2008-06-24 07:16:07 -04:00
experimental_stuff="$experimental_stuff clutterbackend: $clutterbackend\n"
2008-04-25 09:37:36 -04:00
fi
if test "x$experimental_stuff" != "x"; then
echo ""
2008-04-28 09:18:16 -04:00
echo "☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠"
echo " *WARNING*"
echo ""
echo " Experimental features configured, stability of your build either uses"
echo " experimental backends or experimental and unsupported features:"
2008-06-24 07:16:07 -04:00
echo ""
echo -e "$experimental_stuff"
2008-04-28 09:18:16 -04:00
echo "☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠☠"
2008-04-25 09:37:36 -04:00
echo ""
fi