comparison mcabber/configure.ac @ 2179:11a6318f30ad

Post-1.0.0 changes
author Mikael Berthe <mikael@lilotux.net>
date Sun, 28 Jun 2015 22:56:56 +0200
parents ef35d7458223
children 773590bd2a8a
comparison
equal deleted inserted replaced
2178:1b24931352d0 2179:11a6318f30ad
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],[1.0.0],[mcabber@lilotux.net]) 5 AC_INIT([mcabber],[1.0.1-dev],[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
282 282
283 AM_CONDITIONAL([OTR], [test x$libotr_found = xyes]) 283 AM_CONDITIONAL([OTR], [test x$libotr_found = xyes])
284 AM_CONDITIONAL([INSTALL_HEADERS], [test x$enable_modules != xno]) 284 AM_CONDITIONAL([INSTALL_HEADERS], [test x$enable_modules != xno])
285 285
286 # Prepare some config.h variables 286 # Prepare some config.h variables
287 AC_DEFINE([MCABBER_BRANCH], "1.0.0", [Mcabber branch]) 287 AC_DEFINE([MCABBER_BRANCH], "dev", [Mcabber branch])
288 AC_DEFINE([MCABBER_VERSION], "AC_PACKAGE_VERSION", [Mcabber version string]) 288 AC_DEFINE([MCABBER_VERSION], "AC_PACKAGE_VERSION", [Mcabber version string])
289 289
290 # We need _GNU_SOURCE for strptime() and strcasestr() 290 # We need _GNU_SOURCE for strptime() and strcasestr()
291 CFLAGS="$CFLAGS -D_GNU_SOURCE" 291 CFLAGS="$CFLAGS -D_GNU_SOURCE"
292 292