~ubuntu-branches/ubuntu/quantal/pidgin/quantal

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-01-05 15:46:36 UTC
  • mfrom: (2.3.25 sid)
  • Revision ID: package-import@ubuntu.com-20120105154636-h07dpbrej0ijgj3f
Tags: 1:2.10.2-1ubuntu1
New upstream version based on the Debian update

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
m4_define([purple_lt_current], [10])
47
47
m4_define([purple_major_version], [2])
48
48
m4_define([purple_minor_version], [10])
49
 
m4_define([purple_micro_version], [1])
 
49
m4_define([purple_micro_version], [2])
50
50
m4_define([purple_version_suffix], [])
51
51
m4_define([purple_version],
52
52
          [purple_major_version.purple_minor_version.purple_micro_version])
202
202
dnl FreeBSD doesn't have libdl, dlopen is provided by libc
203
203
AC_CHECK_FUNC(dlopen, LIBDL="", [AC_CHECK_LIB(dl, dlopen, LIBDL="-ldl")])
204
204
 
 
205
dnl Haiku does not use libm for the math functions, they are part
 
206
dnl of the C library
 
207
AC_SEARCH_LIBS([ceil], [m], [], [
 
208
  AC_MSG_ERROR([unable to find the floor() function])
 
209
])
 
210
 
205
211
AC_MSG_CHECKING(for fileno())
206
212
AC_RUN_IFELSE([AC_LANG_SOURCE([[
207
213
#include <stdio.h>