branches/gmyth-0.1b/configure.ac
author morphbr
Sat Feb 10 20:01:54 2007 +0000 (2007-02-10)
branchtrunk
changeset 349 7005e696052c
permissions -rw-r--r--
[svn r351] - Bug fix in gmyth_util.c: included support for time without seconds in gmyth_util_string_to_time_val_fmt (XML format from backend)
- Bug fix in gmyth_http.c: fixed bug when there are no channels
- gmyth_vlc.c/h: included support to specify a port when connecting to VLC
- tests: fixed vlc test file regarding the fix above
created script to compile http test app
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
GMYTH_MAJORMINOR=$GMYTH_MAJOR_VERSION.$GMYTH_MINOR_VERSION
renatofilho@320
    15
AC_SUBST(GMYTH_MAJORMINOR)
renatofilho@320
    16
renatofilho@320
    17
dnl AM_MAINTAINER_MODE provides the option to enable maintainer mode
renatofilho@320
    18
AM_MAINTAINER_MODE
renatofilho@320
    19
dnl make aclocal work in maintainer mode
renatofilho@320
    20
AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
renatofilho@320
    21
renatofilho@320
    22
# Checks for programs.
renatofilho@320
    23
# check for tools
renatofilho@320
    24
# Make sure CFLAGS is defined to stop AC_PROC_CC adding -g
renatofilho@320
    25
CFLAGS="$CFLAGS -Wall"
renatofilho@320
    26
AC_PROG_CC
renatofilho@320
    27
AC_PROG_LIBTOOL
renatofilho@320
    28
renatofilho@320
    29
dnl Generate doxygen documentation
renatofilho@320
    30
DX_HTML_FEATURE(ON)
renatofilho@320
    31
DX_CHM_FEATURE(OFF)
renatofilho@320
    32
DX_CHI_FEATURE(OFF)
renatofilho@320
    33
DX_MAN_FEATURE(OFF)
renatofilho@320
    34
DX_RTF_FEATURE(OFF)
renatofilho@320
    35
DX_XML_FEATURE(OFF)
renatofilho@320
    36
DX_PDF_FEATURE(OFF)
renatofilho@320
    37
DX_PS_FEATURE(OFF)
renatofilho@320
    38
DX_INIT_DOXYGEN(gmyth, doxygen.cfg, docs)
renatofilho@320
    39
renatofilho@320
    40
# Checks for libraries.
renatofilho@320
    41
renatofilho@320
    42
# Checks for header files.
renatofilho@320
    43
AC_HEADER_STDC
renatofilho@320
    44
AC_CHECK_HEADERS([fcntl.h stdint.h stdlib.h string.h sys/ioctl.h sys/socket.h unistd.h])
renatofilho@320
    45
renatofilho@320
    46
# Checks for typedefs, structures, and compiler characteristics.
renatofilho@320
    47
AC_C_CONST
renatofilho@320
    48
AC_TYPE_PID_T
renatofilho@320
    49
AC_STRUCT_TM
renatofilho@320
    50
AC_HEADER_TIME
renatofilho@320
    51
AC_HEADER_STDBOOL
renatofilho@320
    52
renatofilho@320
    53
# Checks for library functions.
renatofilho@320
    54
AC_FUNC_FORK
renatofilho@320
    55
AC_FUNC_STRFTIME
renatofilho@320
    56
AC_FUNC_SELECT_ARGTYPES
renatofilho@320
    57
AC_PROG_GCC_TRADITIONAL
renatofilho@320
    58
AC_FUNC_MALLOC
renatofilho@320
    59
AC_FUNC_MKTIME
renatofilho@320
    60
AC_FUNC_STRFTIME
renatofilho@320
    61
AC_FUNC_VPRINTF
renatofilho@320
    62
AC_CHECK_FUNCS([memset socket stime strstr strtoul gethostname inet_ntoa localtime_r select strrchr localtime strptime])
renatofilho@320
    63
renatofilho@320
    64
##############################
renatofilho@320
    65
# Checks for Network functions
renatofilho@320
    66
##############################
renatofilho@320
    67
renatofilho@320
    68
AC_CHECK_FUNCS([socket])
renatofilho@320
    69
AC_CHECK_FUNCS([inet_ntoa])
renatofilho@320
    70
AC_CHECK_HEADERS([ifaddrs.h])
renatofilho@320
    71
AC_CHECK_FUNCS([getifaddrs])
renatofilho@320
    72
AC_CHECK_FUNCS([time])
renatofilho@320
    73
renatofilho@320
    74
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
renatofilho@320
    75
renatofilho@320
    76
CFLAGS="$CFLAGS -I/usr/include"
renatofilho@320
    77
LDFLAGS="$LDFLAGS -L/usr/lib"
renatofilho@320
    78
renatofilho@320
    79
# Checks required packages
renatofilho@320
    80
renatofilho@320
    81
dnl Test if --disable-debug given
renatofilho@320
    82
AC_ARG_ENABLE(debug,
renatofilho@320
    83
	AC_HELP_STRING([--disable-debug], [enable debugging mode]))
renatofilho@320
    84
if test x"$enable_debug" != xno; then
renatofilho@320
    85
    CFLAGS="$CFLAGS -g -DGMYTH_USE_DEBUG"
renatofilho@320
    86
else
renatofilho@320
    87
    CFLAGS="$CFLAGS -O2 -DG_DISABLE_CHECKS"
renatofilho@320
    88
fi          
renatofilho@320
    89
renatofilho@320
    90
# Check for pkgconfig
renatofilho@320
    91
AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no)
renatofilho@320
    92
# Give error and exit if we don't have pkgconfig
renatofilho@320
    93
if test "x$HAVE_PKGCONFIG" = "xno"; then
renatofilho@320
    94
  AC_MSG_ERROR(you need to have pkgconfig installed !)
renatofilho@320
    95
fi
renatofilho@320
    96
renatofilho@320
    97
# Check for Glib2.0
renatofilho@320
    98
PKG_CHECK_MODULES(GLIB, glib-2.0, HAVE_GLIB=yes,HAVE_GLIB=no)
renatofilho@320
    99
renatofilho@320
   100
# Give error and exit if we don't have glib
renatofilho@320
   101
if test "x$HAVE_GLIB" = "xno"; then
renatofilho@320
   102
  AC_MSG_ERROR(you need glib-2.0 installed)
renatofilho@320
   103
fi
renatofilho@320
   104
renatofilho@320
   105
# make GLIB_CFLAGS and GLIB_LIBS available
renatofilho@320
   106
AC_SUBST(GLIB_CFLAGS)
renatofilho@320
   107
AC_SUBST(GLIB_LIBS)
renatofilho@320
   108
renatofilho@320
   109
# Check for GObject2.0
renatofilho@320
   110
PKG_CHECK_MODULES(GOBJECT,
renatofilho@320
   111
  gobject-2.0,
renatofilho@320
   112
  HAVE_GOBJECT=yes, HAVE_GOBJECT=no)
renatofilho@320
   113
renatofilho@320
   114
# Give error and exit if we don't have gobject
renatofilho@320
   115
if test "x$HAVE_GOBJECT" = "xno"; then
renatofilho@320
   116
  AC_MSG_ERROR(you need gobject-2.0 installed)
renatofilho@320
   117
fi
renatofilho@320
   118
renatofilho@320
   119
# make GOBJECT_CFLAGS and GOBJECT_LIBS available
renatofilho@320
   120
AC_SUBST(GOBJECT_CFLAGS)
renatofilho@320
   121
AC_SUBST(GOBJECT_LIBS)
renatofilho@320
   122
renatofilho@320
   123
# Check for libxml-2.0
renatofilho@320
   124
PKG_CHECK_MODULES(LIBXML, libxml-2.0, HAVE_LIBXML=yes,HAVE_LIBXML=no)
renatofilho@320
   125
renatofilho@320
   126
# Give error and exit if we don't have libxml
renatofilho@320
   127
if test "x$HAVE_LIBXML" = "xno"; then
renatofilho@320
   128
  AC_MSG_ERROR(you need libxml-2.0 installed)
renatofilho@320
   129
fi
renatofilho@320
   130
renatofilho@320
   131
# make LIBXML_CFLAGS and LIBXML_LIBS available
renatofilho@320
   132
AC_SUBST(LIBXML_CFLAGS)
renatofilho@320
   133
AC_SUBST(LIBXML_LIBS)
renatofilho@320
   134
renatofilho@320
   135
# Check for libcurl
renatofilho@320
   136
PKG_CHECK_MODULES(LIBCURL, libcurl, HAVE_LIBCRUL=yes, HAVE_LIBCURL=no)
renatofilho@320
   137
renatofilho@320
   138
# Give error and exit if we don't have libcurl
renatofilho@320
   139
if test "x$HAVE_LIBCURL" = "xno"; then
renatofilho@320
   140
  AC_MSG_ERROR(you need libcurl installed)
renatofilho@320
   141
fi
renatofilho@320
   142
renatofilho@320
   143
# make LIBCURL_CFLAGS and LIBCURL_LIBS available
renatofilho@320
   144
AC_SUBST(LIBCURL_CFLAGS)
renatofilho@320
   145
AC_SUBST(LIBCURL_LIBS)
renatofilho@320
   146
renatofilho@320
   147
renatofilho@320
   148
#
renatofilho@320
   149
# mysql libraries
renatofilho@320
   150
#
renatofilho@320
   151
AC_CHECK_PROG(MYSQL_CFLAGS,mysql_config,`mysql_config --cflags`)
renatofilho@320
   152
if test -z "$MYSQL_CFLAGS"; then
renatofilho@320
   153
        AC_MSG_ERROR([Could not find mysql_config script. Make sure the mysql client libraries are installed])
renatofilho@320
   154
fi
renatofilho@320
   155
AC_SUBST(MYSQL_CFLAGS)
renatofilho@320
   156
renatofilho@320
   157
renatofilho@320
   158
AC_CHECK_PROG(MYSQL_LIBS,mysql_config,`mysql_config --libs`)
renatofilho@320
   159
if test -z "$MYSQL_LIBS"; then
renatofilho@320
   160
        AC_MSG_ERROR([Could not find mysql_config script. Make sure the mysql client libraries are installed])
renatofilho@320
   161
fi
renatofilho@320
   162
AC_SUBST(MYSQL_LIBS)
renatofilho@320
   163
renatofilho@320
   164
#dnl Enable gtk-doc
renatofilho@320
   165
#GTK_DOC_CHECK(1.4)
renatofilho@320
   166
renatofilho@320
   167
AC_SUBST(CFLAGS)
renatofilho@320
   168
AC_SUBST(LDFLAGS)
renatofilho@320
   169
AC_SUBST(LIBS)
renatofilho@320
   170
renatofilho@320
   171
AC_OUTPUT([
renatofilho@320
   172
Makefile
renatofilho@320
   173
src/Makefile
renatofilho@320
   174
tests/Makefile
renatofilho@320
   175
gmyth.pc])
renatofilho@320
   176
renatofilho@320
   177
if test "x$enable_debug" != "xno"; then
renatofilho@320
   178
    AC_MSG_NOTICE([Debug: Enabled])
renatofilho@320
   179
else
renatofilho@320
   180
    AC_MSG_NOTICE([Debug: Disabled])
renatofilho@320
   181
fi          
renatofilho@320
   182