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