mcabber/configure.ac
changeset 2094 7ee2388a492a
parent 2089 91a8f3740a1a
child 2097 5150b3bf4c15
equal deleted inserted replaced
2093:e520608a17ee 2094:7ee2388a492a
     1 #                                               -*- Autoconf -*-
     1 #                                               -*- Autoconf -*-
     2 # Process this file with autoconf to produce a configure script.
     2 # Process this file with autoconf to produce a configure script.
     3 
     3 
     4 AC_PREREQ(2.59)
     4 AC_PREREQ(2.59)
     5 AC_INIT([mcabber],[0.10.3-dev],[mcabber@lilotux.net])
     5 AC_INIT([mcabber],[0.10.3],[mcabber@lilotux.net])
     6 XC_AUTOMAKE
     6 XC_AUTOMAKE
     7 AC_CONFIG_SRCDIR([mcabber])
     7 AC_CONFIG_SRCDIR([mcabber])
     8 AC_CONFIG_HEADERS([mcabber/config.h])
     8 AC_CONFIG_HEADERS([mcabber/config.h])
     9 AC_CONFIG_HEADERS([include/config.h])
     9 AC_CONFIG_HEADERS([include/config.h])
    10 
    10 
   294 
   294 
   295 AM_CONDITIONAL([OTR], [test x$libotr_found = xyes])
   295 AM_CONDITIONAL([OTR], [test x$libotr_found = xyes])
   296 AM_CONDITIONAL([INSTALL_HEADERS], [test x$enable_modules != xno])
   296 AM_CONDITIONAL([INSTALL_HEADERS], [test x$enable_modules != xno])
   297 
   297 
   298 # Prepare some config.h variables
   298 # Prepare some config.h variables
   299 AC_DEFINE([MCABBER_BRANCH], "dev", [Mcabber branch])
   299 AC_DEFINE([MCABBER_BRANCH], "0.10.3", [Mcabber branch])
   300 AC_DEFINE([MCABBER_VERSION], "AC_PACKAGE_VERSION", [Mcabber version string])
   300 AC_DEFINE([MCABBER_VERSION], "AC_PACKAGE_VERSION", [Mcabber version string])
   301 
   301 
   302 # We need _GNU_SOURCE for strptime() and strcasestr()
   302 # We need _GNU_SOURCE for strptime() and strcasestr()
   303 CFLAGS="$CFLAGS -D_GNU_SOURCE"
   303 CFLAGS="$CFLAGS -D_GNU_SOURCE"
   304 
   304