maemo-ui/configure.ac
author rosfran
Thu Sep 28 22:05:21 2006 +0100 (2006-09-28)
branchtrunk
changeset 25 2ee2974c72c1
child 26 b9c6012bccdb
permissions -rw-r--r--
[svn r26] Sets the gstreamer pipeline to locked, just before get the EOS message from plug-in.
renatofilho@21
     1
#                                               -*- Autoconf -*-
renatofilho@21
     2
# Process this file with autoconf to produce a configure script.
renatofilho@21
     3
renatofilho@21
     4
AC_PREREQ(2.50)
renatofilho@21
     5
renatofilho@21
     6
AC_INIT([gmyth],[0.1])
renatofilho@21
     7
renatofilho@21
     8
dnl AC_CONFIG_SRCDIR([src/mmyth_main.c])
renatofilho@21
     9
AC_CONFIG_HEADER(config.h)
renatofilho@21
    10
renatofilho@21
    11
dnl when going to/from release please set the nano (fourth number) right !
renatofilho@21
    12
dnl releases only do Wall, SVN and prerelease does Werror too
renatofilho@21
    13
AS_VERSION(gmyth, GMYTH, 0, 1, 0, 3, GMYTH_SVN="no", GMYTH_SVN="yes")
renatofilho@21
    14
renatofilho@21
    15
GMYTH_MAJORMINOR=$GMYTH_MAJOR_VERSION.$GMYTH_MINOR_VERSION
renatofilho@21
    16
renatofilho@21
    17
AC_SUBST(GMYTH_MAJORMINOR)
renatofilho@21
    18
renatofilho@21
    19
dnl AM_MAINTAINER_MODE provides the option to enable maintainer mode
renatofilho@21
    20
AM_MAINTAINER_MODE
renatofilho@21
    21
dnl make aclocal work in maintainer mode
renatofilho@21
    22
AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
renatofilho@21
    23
renatofilho@21
    24
# Checks for programs.
renatofilho@21
    25
# check for tools
renatofilho@21
    26
# Make sure CFLAGS is defined to stop AC_PROC_CC adding -g
renatofilho@21
    27
CFLAGS="$CFLAGS -Wall"
renatofilho@21
    28
AC_PROG_CC
renatofilho@21
    29
AC_PROG_LIBTOOL
renatofilho@21
    30
renatofilho@21
    31
dnl Generate doxygen documentation
renatofilho@21
    32
DX_HTML_FEATURE(ON)
renatofilho@21
    33
DX_CHM_FEATURE(OFF)
renatofilho@21
    34
DX_CHI_FEATURE(OFF)
renatofilho@21
    35
DX_MAN_FEATURE(OFF)
renatofilho@21
    36
DX_RTF_FEATURE(OFF)
renatofilho@21
    37
DX_XML_FEATURE(OFF)
renatofilho@21
    38
DX_PDF_FEATURE(OFF)
renatofilho@21
    39
DX_PS_FEATURE(OFF)
renatofilho@21
    40
DX_INIT_DOXYGEN(gmyth, doxygen.cfg, docs)
renatofilho@21
    41
renatofilho@21
    42
renatofilho@21
    43
# Checks for libraries.
renatofilho@21
    44
renatofilho@21
    45
# Checks for header files.
renatofilho@21
    46
AC_HEADER_STDC
renatofilho@21
    47
AC_CHECK_HEADERS([fcntl.h stdint.h stdlib.h string.h sys/ioctl.h sys/socket.h unistd.h])
renatofilho@21
    48
renatofilho@21
    49
# Checks for typedefs, structures, and compiler characteristics.
renatofilho@21
    50
AC_C_CONST
renatofilho@21
    51
AC_TYPE_PID_T
renatofilho@21
    52
AC_STRUCT_TM
renatofilho@21
    53
renatofilho@21
    54
# Checks for library functions.
renatofilho@21
    55
AC_FUNC_FORK
renatofilho@21
    56
AC_PROG_GCC_TRADITIONAL
renatofilho@21
    57
AC_FUNC_MALLOC
renatofilho@21
    58
AC_FUNC_MKTIME
renatofilho@21
    59
AC_FUNC_VPRINTF
renatofilho@21
    60
AC_CHECK_FUNCS([memset socket stime strstr strtoul])
renatofilho@21
    61
renatofilho@21
    62
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
renatofilho@21
    63
renatofilho@21
    64
# Checks required packages
renatofilho@21
    65
renatofilho@21
    66
dnl Test if --disable-debug given
renatofilho@21
    67
AC_ARG_ENABLE(debug,
renatofilho@21
    68
	[AC_HELP_STRING([--disable-debug], [disable debugging mode])],
renatofilho@21
    69
	enable_debug="$enableval",
renatofilho@21
    70
	enable_debug=yes)
renatofilho@21
    71
renatofilho@21
    72
if test "x$enable_debug" = "xyes" ; then
renatofilho@21
    73
      CFLAGS="$CFLAGS -g"
renatofilho@21
    74
else
renatofilho@21
    75
      AC_DEFINE( NDEBUG, 1, [disable debug messages] )
renatofilho@21
    76
      CFLAGS="$CFLAGS -O2 -DG_DISABLE_CHECKS -DNDEBUG"
renatofilho@21
    77
fi          
renatofilho@21
    78
renatofilho@21
    79
AM_CONDITIONAL( NDEBUG, test "x$enable_debug" = "xyes" )
renatofilho@21
    80
renatofilho@21
    81
# Check for pkgconfig
renatofilho@21
    82
AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no)
renatofilho@21
    83
# Give error and exit if we don't have pkgconfig
renatofilho@21
    84
if test "x$HAVE_PKGCONFIG" = "xno"; then
renatofilho@21
    85
  AC_MSG_ERROR(you need to have pkgconfig installed !)
renatofilho@21
    86
fi
renatofilho@21
    87
renatofilho@21
    88
# Check for Glib2.0
renatofilho@21
    89
PKG_CHECK_MODULES(GLIB, glib-2.0, HAVE_GLIB=yes,HAVE_GLIB=no)
renatofilho@21
    90
renatofilho@21
    91
# Give error and exit if we don't have glib
renatofilho@21
    92
if test "x$HAVE_GLIB" = "xno"; then
renatofilho@21
    93
  AC_MSG_ERROR(you need glib-2.0 installed)
renatofilho@21
    94
fi
renatofilho@21
    95
renatofilho@21
    96
# make GLIB_CFLAGS and GLIB_LIBS available
renatofilho@21
    97
AC_SUBST(GLIB_CFLAGS)
renatofilho@21
    98
AC_SUBST(GLIB_LIBS)
renatofilho@21
    99
renatofilho@21
   100
# Check for GObject2.0
renatofilho@21
   101
PKG_CHECK_MODULES(GOBJECT,
renatofilho@21
   102
  gobject-2.0,
renatofilho@21
   103
  HAVE_GOBJECT=yes, HAVE_GOBJECT=no)
renatofilho@21
   104
renatofilho@21
   105
# Give error and exit if we don't have gobject
renatofilho@21
   106
if test "x$HAVE_GOBJECT" = "xno"; then
renatofilho@21
   107
  AC_MSG_ERROR(you need gobject-2.0 installed)
renatofilho@21
   108
fi
renatofilho@21
   109
renatofilho@21
   110
# make GOBJECT_CFLAGS and GOBJECT_LIBS available
renatofilho@21
   111
AC_SUBST(GOBJECT_CFLAGS)
renatofilho@21
   112
AC_SUBST(GOBJECT_LIBS)
renatofilho@21
   113
renatofilho@21
   114
# Check for GTK+-2.0
renatofilho@21
   115
PKG_CHECK_MODULES(GTK, gtk+-2.0, HAVE_GTK=yes,HAVE_GTK=no)
renatofilho@21
   116
renatofilho@21
   117
# Give error and exit if we don't have gtk
renatofilho@21
   118
if test "x$HAVE_GTK" = "xyes"; then
renatofilho@21
   119
  AC_DEFINE(WITH_GTK, 1, [build with GTK+ related stuff])
renatofilho@21
   120
  dnl AC_MSG_ERROR(you need gtk+-2.0 installed)
renatofilho@21
   121
else
renatofilho@21
   122
  AC_MSG_RESULT(no)
renatofilho@21
   123
fi
renatofilho@21
   124
renatofilho@21
   125
AM_CONDITIONAL(WITH_GTK, test "x$HAVE_GTK" = "xyes" )
renatofilho@21
   126
renatofilho@21
   127
# make GTK_CFLAGS and GTK_LIBS available
renatofilho@21
   128
AC_SUBST(GTK_CFLAGS)
renatofilho@21
   129
AC_SUBST(GTK_LIBS)
renatofilho@21
   130
renatofilho@21
   131
dnl ========== Check for Hildon Libraries
renatofilho@21
   132
PKG_CHECK_MODULES(HILDON,
renatofilho@21
   133
  hildon-lgpl libosso hildon-status-bar-lib libhildonmenu hildon-base-lib hildon-control-panel hildon-libs,
renatofilho@21
   134
  HAVE_HILDON=yes, HAVE_HILDON=no)
renatofilho@21
   135
renatofilho@21
   136
if test "x$HAVE_HILDON" = "xyes"; then
renatofilho@21
   137
  AC_DEFINE(MAEMO_PLATFORM, 1, [build with hildon libs])
renatofilho@21
   138
  HILDON_CFLAGS="$HILDON_CFLAGS -DMAEMO_PLATFORM=1"
renatofilho@21
   139
else
renatofilho@21
   140
  AC_MSG_RESULT(no)
renatofilho@21
   141
fi
renatofilho@21
   142
renatofilho@21
   143
AM_CONDITIONAL(MAEMO_PLATFORM, test "x$HAVE_HILDON" = "xyes")
renatofilho@21
   144
renatofilho@21
   145
dnl make HILDON_CFLAGS and HILDON_LIBS available
renatofilho@21
   146
AC_SUBST(HILDON_CFLAGS)
renatofilho@21
   147
AC_SUBST(HILDON_LIBS)
renatofilho@21
   148
renatofilho@21
   149
# Check for libxml-2.0
renatofilho@21
   150
PKG_CHECK_MODULES(LIBXML, libxml-2.0, HAVE_LIBXML=yes,HAVE_LIBXML=no)
renatofilho@21
   151
renatofilho@21
   152
# Give error and exit if we don't have libxml
renatofilho@21
   153
if test "x$HAVE_LIBXML" = "xno"; then
renatofilho@21
   154
  AC_MSG_ERROR(you need libxml-2.0 installed)
renatofilho@21
   155
fi
renatofilho@21
   156
renatofilho@21
   157
# make LIBXML_CFLAGS and LIBXML_LIBS available
renatofilho@21
   158
AC_SUBST(LIBXML_CFLAGS)
renatofilho@21
   159
AC_SUBST(LIBXML_LIBS)
renatofilho@21
   160
renatofilho@21
   161
renatofilho@21
   162
# check for gstreamer development files
renatofilho@21
   163
GST_REQUIRED=0.10
renatofilho@21
   164
GST_MAJORMINOR=0.10
renatofilho@21
   165
PKG_CHECK_MODULES(GST, \
renatofilho@21
   166
  gstreamer-$GST_MAJORMINOR >= $GST_REQUIRED,
renatofilho@21
   167
  HAVE_GST=yes, HAVE_GST=no)
renatofilho@21
   168
renatofilho@21
   169
# Give error and exit if we don't have gstreamer
renatofilho@21
   170
if test "x$HAVE_GST" = "xno"; then
renatofilho@21
   171
  AC_MSG_ERROR(you need gstreamer development packages installed !)
renatofilho@21
   172
fi
renatofilho@21
   173
renatofilho@21
   174
# make GST_CFLAGS and GST_LIBS available
renatofilho@21
   175
AC_SUBST(GST_CFLAGS)
renatofilho@21
   176
AC_SUBST(GST_LIBS)
renatofilho@21
   177
renatofilho@21
   178
# check for gstreamer-base plugins (xoverlay interface)
renatofilho@21
   179
GSTBASE_REQUIRED=0.10
renatofilho@21
   180
GSTBASE_MAJORMINOR=0.10
renatofilho@21
   181
PKG_CHECK_MODULES(GSTBASE, \
renatofilho@21
   182
  gstreamer-base-$GSTBASE_MAJORMINOR >= $GSTBASE_REQUIRED,
renatofilho@21
   183
  HAVE_GSTBASE=yes, HAVE_GSTBASE=no)
renatofilho@21
   184
renatofilho@21
   185
# Give error and exit if we don't have gstreamer base libraries
renatofilho@21
   186
if test "x$HAVE_GSTBASE" = "xno"; then
renatofilho@21
   187
  AC_MSG_ERROR(you need gstreamer base development packages installed !)
renatofilho@21
   188
fi
renatofilho@21
   189
renatofilho@21
   190
# make GSTBASE_CFLAGS and GSTBASE_LIBS available
renatofilho@21
   191
AC_SUBST(GSTBASE_CFLAGS)
renatofilho@21
   192
AC_SUBST(GSTBASE_LIBS)
renatofilho@21
   193
renatofilho@21
   194
renatofilho@21
   195
# make GST_MAJORMINOR available in Makefile.am
renatofilho@21
   196
AC_SUBST(GST_MAJORMINOR)
renatofilho@21
   197
renatofilho@21
   198
#
renatofilho@21
   199
# mysql libraries
renatofilho@21
   200
#
renatofilho@21
   201
AC_CHECK_PROG(MYSQL_CFLAGS,mysql_config,`mysql_config --cflags`)
renatofilho@21
   202
if test -z "$MYSQL_CFLAGS"; then 
renatofilho@21
   203
        AC_MSG_ERROR([Could not find mysql_config script. Make sure the mysql client libraries are installed])
renatofilho@21
   204
fi
renatofilho@21
   205
AC_SUBST(MYSQL_CFLAGS)
renatofilho@21
   206
renatofilho@21
   207
renatofilho@21
   208
AC_CHECK_PROG(MYSQL_LIBS,mysql_config,`mysql_config --libs`)
renatofilho@21
   209
if test -z "$MYSQL_LIBS"; then 
renatofilho@21
   210
        AC_MSG_ERROR([Could not find mysql_config script. Make sure the mysql client libraries are installed])
renatofilho@21
   211
fi
renatofilho@21
   212
AC_SUBST(MYSQL_LIBS)
renatofilho@21
   213
renatofilho@21
   214
## Check for gmyth-0.1
renatofilho@21
   215
renatofilho@21
   216
PKG_CHECK_MODULES(LIBGMYTH, gmyth-0.1, HAVE_LIBGMYTH=yes,HAVE_LIBGMYTH=no)
renatofilho@21
   217
renatofilho@21
   218
# Give error and exit if we don't have gmyth-0.1
renatofilho@21
   219
if test "x$HAVE_LIBGMYTH" = "xno"; then
renatofilho@21
   220
  AC_MSG_ERROR(you need gmyth-0.1 installed)
renatofilho@21
   221
fi
renatofilho@21
   222
renatofilho@21
   223
# make LIBXML_CFLAGS and LIBXML_LIBS available
renatofilho@21
   224
AC_SUBST(LIBGMYTH_CFLAGS)
renatofilho@21
   225
AC_SUBST(LIBGMYTH_LIBS)
renatofilho@21
   226
renatofilho@21
   227
#dnl Enable gtk-doc
renatofilho@21
   228
#GTK_DOC_CHECK(1.4)
renatofilho@21
   229
renatofilho@21
   230
renatofilho@21
   231
AC_CONFIG_FILES([Makefile
renatofilho@21
   232
                src/Makefile
renatofilho@21
   233
                pixmaps/Makefile])
renatofilho@21
   234
AC_OUTPUT