2 dnl Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
3 dnl 2011 Free Software Foundation, Inc.
5 dnl This program is free software; you can redistribute it and/or modify
6 dnl it under the terms of the GNU General Public License as published by
7 dnl the Free Software Foundation; either version 3 of the License, or
8 dnl (at your option) any later version.
10 dnl This program is distributed in the hope that it will be useful,
11 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 dnl GNU General Public License for more details.
14 dnl You should have received a copy of the GNU General Public License
15 dnl along with this program; if not, write to the Free Software
16 dnl Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 AC_DEFUN([GNASH_PATH_GLIB],
21 dnl Look for the header
22 AC_ARG_WITH(glib_incl, AC_HELP_STRING([--with-glib-incl], [directory where libglib header is]), with_glib_incl=${withval})
23 AC_CACHE_VAL(ac_cv_path_glib_incl,[
24 if test x"${with_glib_incl}" != x ; then
25 if test -f ${with_glib_incl}/glib.h ; then
26 ac_cv_path_glib_incl="-I`(cd ${with_glib_incl}; pwd)`"
27 gnash_glib_topdir=`basename ${with_glib_incl}`
28 gnash_glib_version=`echo ${gnash_glib_topdir} | sed -e 's:glib-::'`
30 AC_MSG_ERROR([${with_glib_incl} directory doesn't contain glib.h])
35 dnl Try with pkg-config
36 if test x${cross_compiling} = xno; then
37 if test x"$PKG_CONFIG" != x -a x"${ac_cv_path_glib_incl}" = x; then
38 $PKG_CONFIG --exists glib-2.0 && gnash_glib_version=`$PKG_CONFIG --modversion glib-2.0`
39 $PKG_CONFIG --exists glib-2.0 && ac_cv_path_glib_incl=`$PKG_CONFIG --cflags glib-2.0`
43 dnl Attempt to find the top level directory, which unfortunately has a
44 dnl version number attached. At least on Debain based systems, this
45 dnl doesn't seem to get a directory that is unversioned.
46 AC_MSG_CHECKING([for Glib header])
47 if test x"${ac_cv_path_glib_incl}" = x -a x"${gnash_glib_version}" = x; then
50 for i in $incllist; do
51 for j in `ls -dr $i/glib-[[0-9]].[[0-9]] $i/glib/glib-[[0-9]].[[0-9]] 2>/dev/null`; do
52 if test -f $j/glib.h; then
53 gnash_glib_topdir=`basename $j`
54 gnash_glib_version=`echo ${gnash_glib_topdir} | sed -e 's:glib-::'`
55 ac_cv_path_glib_incl="-I$j"
56 gnash_glib_config=`echo $j | sed -e 's:include:lib:' -e 's:lib/glib/:lib/:'`
57 if test -f ${gnash_glib_config}/include/glibconfig.h; then
58 ac_cv_path_glib_incl="${ac_cv_path_glib_incl} -I${gnash_glib_config}/include"
66 if test x"${ac_cv_path_glib_incl}" = x; then
69 AC_MSG_RESULT(${ac_cv_path_glib_incl})
73 dnl Look for the library
74 AC_ARG_WITH(glib_lib, AC_HELP_STRING([--with-glib-lib], [directory where glib library is]), with_glib_lib=${withval})
75 AC_CACHE_VAL(ac_cv_path_glib_lib,[
76 if test x"${with_glib_lib}" != x ; then
77 if test -f ${with_glib_lib}/libglib-${gnash_glib_version}.a -o -f ${with_glib_lib}/libglib-${gnash_glib_version}.${shlibext}; then
78 ac_cv_path_glib_lib="-L`(cd ${with_glib_lib}; pwd)` -lglib-${gnash_glib_version}"
80 AC_MSG_ERROR([${with_glib_lib} directory doesn't contain libglib.])
85 if test x${cross_compiling} = xno; then
86 if test x"$PKG_CONFIG" != x -a x"${ac_cv_path_glib_lib}" = x; then
87 $PKG_CONFIG --exists glib-2.0 && ac_cv_path_glib_lib=`$PKG_CONFIG --libs glib-2.0`
91 AC_MSG_CHECKING([for glib library])
92 if test x"${ac_cv_path_glib_lib}" = x; then
93 for i in $libslist; do
94 if test -f $i/libglib-${gnash_glib_version}.a -o -f $i/libglib-${gnash_glib_version}.${shlibext}; then
95 if test ! x"$i" = x"/usr/lib" -a ! x"$i" = x"/usr/lib64" -a ! x"$i" = x"/usr"; then
96 ac_cv_path_glib_lib="-L$i -lglib-${gnash_glib_version}"
99 ac_cv_path_glib_lib="-lglib-${gnash_glib_version}"
105 AC_MSG_RESULT(${ac_cv_path_glib_lib})
107 if test x"${ac_cv_path_glib_incl}" != x; then
108 GLIB_CFLAGS="${ac_cv_path_glib_incl} $GLIB_CFLAGS"
109 AC_DEFINE([HAVE_GLIB], [1], [Has GLIB library installed])
114 if test x"${ac_cv_path_glib_lib}" != x ; then
115 GLIB_LIBS="${ac_cv_path_glib_lib}"
120 AC_SUBST(GLIB_CFLAGS)
127 # indent-tabs-mode: nil