maemo-ui-old/configure.ac
author melunko
Wed Aug 01 14:50:29 2007 +0100 (2007-08-01)
branchtrunk
changeset 790 7a914b3fafc1
parent 416 maemo-ui/configure.ac@f176c8207077
permissions -rw-r--r--
[svn r796] Moved maemo-ui to maemo-ui-old
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
melunko@26
     6
AC_INIT([maemo-myth],[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
melunko@26
    13
AS_VERSION(maemo-myth, 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
# Checks for libraries.
renatofilho@21
    32
renatofilho@21
    33
# Checks for header files.
renatofilho@21
    34
AC_HEADER_STDC
renatofilho@21
    35
AC_CHECK_HEADERS([fcntl.h stdint.h stdlib.h string.h sys/ioctl.h sys/socket.h unistd.h])
renatofilho@21
    36
renatofilho@21
    37
# Checks for typedefs, structures, and compiler characteristics.
renatofilho@21
    38
AC_C_CONST
renatofilho@21
    39
AC_TYPE_PID_T
renatofilho@21
    40
AC_STRUCT_TM
renatofilho@21
    41
renatofilho@21
    42
# Checks for library functions.
renatofilho@21
    43
AC_FUNC_FORK
renatofilho@21
    44
AC_PROG_GCC_TRADITIONAL
renatofilho@21
    45
AC_FUNC_MALLOC
renatofilho@21
    46
AC_FUNC_MKTIME
renatofilho@21
    47
AC_FUNC_VPRINTF
renatofilho@21
    48
AC_CHECK_FUNCS([memset socket stime strstr strtoul])
renatofilho@21
    49
renatofilho@21
    50
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
renatofilho@21
    51
renatofilho@21
    52
# Checks required packages
renatofilho@21
    53
renatofilho@21
    54
dnl Test if --disable-debug given
renatofilho@21
    55
AC_ARG_ENABLE(debug,
renatofilho@21
    56
	[AC_HELP_STRING([--disable-debug], [disable debugging mode])],
renatofilho@21
    57
	enable_debug="$enableval",
renatofilho@21
    58
	enable_debug=yes)
renatofilho@21
    59
renatofilho@21
    60
if test "x$enable_debug" = "xyes" ; then
renatofilho@21
    61
      CFLAGS="$CFLAGS -g"
renatofilho@21
    62
else
renatofilho@21
    63
      AC_DEFINE( NDEBUG, 1, [disable debug messages] )
renatofilho@21
    64
      CFLAGS="$CFLAGS -O2 -DG_DISABLE_CHECKS -DNDEBUG"
renatofilho@21
    65
fi          
renatofilho@21
    66
renatofilho@21
    67
AM_CONDITIONAL( NDEBUG, test "x$enable_debug" = "xyes" )
renatofilho@21
    68
renatofilho@21
    69
# Check for pkgconfig
renatofilho@21
    70
AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no)
renatofilho@21
    71
# Give error and exit if we don't have pkgconfig
renatofilho@21
    72
if test "x$HAVE_PKGCONFIG" = "xno"; then
renatofilho@21
    73
  AC_MSG_ERROR(you need to have pkgconfig installed !)
renatofilho@21
    74
fi
renatofilho@21
    75
renatofilho@21
    76
# Check for Glib2.0
renatofilho@21
    77
PKG_CHECK_MODULES(GLIB, glib-2.0, HAVE_GLIB=yes,HAVE_GLIB=no)
renatofilho@21
    78
renatofilho@21
    79
# Give error and exit if we don't have glib
renatofilho@21
    80
if test "x$HAVE_GLIB" = "xno"; then
renatofilho@21
    81
  AC_MSG_ERROR(you need glib-2.0 installed)
renatofilho@21
    82
fi
renatofilho@21
    83
renatofilho@21
    84
# make GLIB_CFLAGS and GLIB_LIBS available
renatofilho@21
    85
AC_SUBST(GLIB_CFLAGS)
renatofilho@21
    86
AC_SUBST(GLIB_LIBS)
renatofilho@21
    87
renatofilho@21
    88
# Check for GObject2.0
renatofilho@21
    89
PKG_CHECK_MODULES(GOBJECT,
renatofilho@21
    90
  gobject-2.0,
renatofilho@21
    91
  HAVE_GOBJECT=yes, HAVE_GOBJECT=no)
renatofilho@21
    92
renatofilho@21
    93
# Give error and exit if we don't have gobject
renatofilho@21
    94
if test "x$HAVE_GOBJECT" = "xno"; then
renatofilho@21
    95
  AC_MSG_ERROR(you need gobject-2.0 installed)
renatofilho@21
    96
fi
renatofilho@21
    97
renatofilho@21
    98
# make GOBJECT_CFLAGS and GOBJECT_LIBS available
renatofilho@21
    99
AC_SUBST(GOBJECT_CFLAGS)
renatofilho@21
   100
AC_SUBST(GOBJECT_LIBS)
renatofilho@21
   101
renatofilho@21
   102
# Check for GTK+-2.0
renatofilho@21
   103
PKG_CHECK_MODULES(GTK, gtk+-2.0, HAVE_GTK=yes,HAVE_GTK=no)
renatofilho@21
   104
renatofilho@21
   105
# Give error and exit if we don't have gtk
renatofilho@21
   106
if test "x$HAVE_GTK" = "xyes"; then
renatofilho@21
   107
  AC_DEFINE(WITH_GTK, 1, [build with GTK+ related stuff])
renatofilho@21
   108
  dnl AC_MSG_ERROR(you need gtk+-2.0 installed)
renatofilho@21
   109
else
renatofilho@21
   110
  AC_MSG_RESULT(no)
renatofilho@21
   111
fi
renatofilho@21
   112
renatofilho@21
   113
AM_CONDITIONAL(WITH_GTK, test "x$HAVE_GTK" = "xyes" )
renatofilho@21
   114
renatofilho@21
   115
# make GTK_CFLAGS and GTK_LIBS available
renatofilho@21
   116
AC_SUBST(GTK_CFLAGS)
renatofilho@21
   117
AC_SUBST(GTK_LIBS)
renatofilho@21
   118
renatofilho@21
   119
dnl ========== Check for Hildon Libraries
renatofilho@21
   120
PKG_CHECK_MODULES(HILDON,
rosfran@416
   121
  libosso hildon-lgpl libosso hildon-status-bar-lib libhildonmenu hildon-base-lib hildon-control-panel hildon-libs,
renatofilho@21
   122
  HAVE_HILDON=yes, HAVE_HILDON=no)
renatofilho@21
   123
renatofilho@21
   124
if test "x$HAVE_HILDON" = "xyes"; then
rosfran@413
   125
  HILDON_CFLAGS="$HILDON_CFLAGS -DMAEMO_PLATFORM"
renatofilho@21
   126
  AC_DEFINE(MAEMO_PLATFORM, 1, [build with hildon libs])
renatofilho@21
   127
else
renatofilho@21
   128
  AC_MSG_RESULT(no)
renatofilho@21
   129
fi
renatofilho@21
   130
renatofilho@21
   131
AM_CONDITIONAL(MAEMO_PLATFORM, test "x$HAVE_HILDON" = "xyes")
renatofilho@21
   132
renatofilho@21
   133
dnl make HILDON_CFLAGS and HILDON_LIBS available
renatofilho@21
   134
AC_SUBST(HILDON_CFLAGS)
renatofilho@21
   135
AC_SUBST(HILDON_LIBS)
renatofilho@21
   136
renatofilho@21
   137
# Check for libxml-2.0
renatofilho@21
   138
PKG_CHECK_MODULES(LIBXML, libxml-2.0, HAVE_LIBXML=yes,HAVE_LIBXML=no)
renatofilho@21
   139
renatofilho@21
   140
# Give error and exit if we don't have libxml
renatofilho@21
   141
if test "x$HAVE_LIBXML" = "xno"; then
renatofilho@21
   142
  AC_MSG_ERROR(you need libxml-2.0 installed)
renatofilho@21
   143
fi
renatofilho@21
   144
renatofilho@21
   145
# make LIBXML_CFLAGS and LIBXML_LIBS available
renatofilho@21
   146
AC_SUBST(LIBXML_CFLAGS)
renatofilho@21
   147
AC_SUBST(LIBXML_LIBS)
renatofilho@21
   148
renatofilho@21
   149
renatofilho@21
   150
# check for gstreamer development files
renatofilho@21
   151
GST_REQUIRED=0.10
renatofilho@21
   152
GST_MAJORMINOR=0.10
renatofilho@21
   153
PKG_CHECK_MODULES(GST, \
renatofilho@21
   154
  gstreamer-$GST_MAJORMINOR >= $GST_REQUIRED,
renatofilho@21
   155
  HAVE_GST=yes, HAVE_GST=no)
renatofilho@21
   156
renatofilho@21
   157
# Give error and exit if we don't have gstreamer
renatofilho@21
   158
if test "x$HAVE_GST" = "xno"; then
renatofilho@21
   159
  AC_MSG_ERROR(you need gstreamer development packages installed !)
renatofilho@21
   160
fi
renatofilho@21
   161
renatofilho@21
   162
# make GST_CFLAGS and GST_LIBS available
renatofilho@21
   163
AC_SUBST(GST_CFLAGS)
renatofilho@21
   164
AC_SUBST(GST_LIBS)
renatofilho@21
   165
renatofilho@21
   166
# check for gstreamer-base plugins (xoverlay interface)
renatofilho@21
   167
GSTBASE_REQUIRED=0.10
renatofilho@21
   168
GSTBASE_MAJORMINOR=0.10
renatofilho@21
   169
PKG_CHECK_MODULES(GSTBASE, \
renatofilho@21
   170
  gstreamer-base-$GSTBASE_MAJORMINOR >= $GSTBASE_REQUIRED,
renatofilho@21
   171
  HAVE_GSTBASE=yes, HAVE_GSTBASE=no)
renatofilho@21
   172
renatofilho@21
   173
# Give error and exit if we don't have gstreamer base libraries
renatofilho@21
   174
if test "x$HAVE_GSTBASE" = "xno"; then
renatofilho@21
   175
  AC_MSG_ERROR(you need gstreamer base development packages installed !)
renatofilho@21
   176
fi
renatofilho@21
   177
renatofilho@21
   178
# make GSTBASE_CFLAGS and GSTBASE_LIBS available
renatofilho@21
   179
AC_SUBST(GSTBASE_CFLAGS)
renatofilho@21
   180
AC_SUBST(GSTBASE_LIBS)
renatofilho@21
   181
renatofilho@21
   182
# make GST_MAJORMINOR available in Makefile.am
renatofilho@21
   183
AC_SUBST(GST_MAJORMINOR)
renatofilho@21
   184
rosfran@50
   185
rosfran@50
   186
# check for gstreamer-base plugins (xoverlay interface)
rosfran@50
   187
GSTPLUGINSBASE_REQUIRED=0.10
rosfran@50
   188
GSTPLUGINSBASE_MAJORMINOR=0.10
rosfran@50
   189
PKG_CHECK_MODULES(GSTPLUGINSBASE, \
rosfran@50
   190
  gstreamer-plugins-base-$GSTPLUGINSBASE_MAJORMINOR >= $GSTPLUGINSBASE_REQUIRED,
rosfran@50
   191
  HAVE_GSTPLUGINSBASE=yes, HAVE_GSTPLUGINSBASE=no)
rosfran@50
   192
rosfran@50
   193
# Give error and exit if we don't have gstreamer base libraries
rosfran@50
   194
if test "x$HAVE_GSTPLUGINSBASE" = "xno"; then
rosfran@50
   195
  AC_MSG_ERROR(you need gstreamer plugins base development packages installed !)
rosfran@50
   196
fi
rosfran@50
   197
rosfran@50
   198
# make GSTPLUGINSBASE_CFLAGS and GSTPLUGINSBASE_LIBS available
rosfran@50
   199
AC_SUBST(GSTPLUGINSBASE_CFLAGS)
rosfran@50
   200
AC_SUBST(GSTPLUGINSBASE_LIBS)
rosfran@50
   201
rosfran@50
   202
# check for gstreamer-interfaces (xoverlay interface)
rosfran@50
   203
AC_CHECK_FUNC( gst_x_overlay_get_type,
rosfran@50
   204
  HAVE_GSTINTERFACES=yes, HAVE_GSTINTERFACES=no )
rosfran@50
   205
rosfran@50
   206
# Give error and exit if we don't have gstreamer base libraries
rosfran@50
   207
if test "x$HAVE_GSTINTERFACES" = "xno"; then
rosfran@50
   208
  AC_MSG_NOTICE(you need gstreamer interfaces development packages installed !)
rosfran@50
   209
  CFLAGS="$CFLAGS -lgstinterfaces-$GSTPLUGINSBASE_MAJORMINOR"
rosfran@50
   210
fi
rosfran@50
   211
rosfran@416
   212
# Check for gmyth-0.1
renatofilho@21
   213
renatofilho@21
   214
PKG_CHECK_MODULES(LIBGMYTH, gmyth-0.1, HAVE_LIBGMYTH=yes,HAVE_LIBGMYTH=no)
renatofilho@21
   215
renatofilho@21
   216
# Give error and exit if we don't have gmyth-0.1
renatofilho@21
   217
if test "x$HAVE_LIBGMYTH" = "xno"; then
renatofilho@21
   218
  AC_MSG_ERROR(you need gmyth-0.1 installed)
renatofilho@21
   219
fi
renatofilho@21
   220
renatofilho@21
   221
# make LIBXML_CFLAGS and LIBXML_LIBS available
renatofilho@21
   222
AC_SUBST(LIBGMYTH_CFLAGS)
renatofilho@21
   223
AC_SUBST(LIBGMYTH_LIBS)
renatofilho@21
   224
renatofilho@21
   225
renatofilho@21
   226
AC_CONFIG_FILES([Makefile
renatofilho@21
   227
                src/Makefile
renatofilho@21
   228
                pixmaps/Makefile])
renatofilho@21
   229
AC_OUTPUT