~ubuntu-branches/ubuntu/trusty/silversearcher-ag/trusty

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Hajime Mizuno
  • Date: 2013-11-08 15:12:58 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20131108151258-tpsmmy5sntq2n4s1
Tags: 0.18.1+20131108-1
new upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_INIT([the_silver_searcher], [0.15], [https://github.com/ggreer/the_silver_searcher/issues], [the_silver_searcher], [https://github.com/ggreer/the_silver_searcher])
 
1
AC_INIT([the_silver_searcher], [0.18.1], [https://github.com/ggreer/the_silver_searcher/issues], [the_silver_searcher], [https://github.com/ggreer/the_silver_searcher])
2
2
AC_PROG_CC
3
3
AM_PROG_CC_C_O
4
4
AC_PREREQ([2.59])
17
17
CFLAGS="$CFLAGS $PCRE_CFLAGS -Wall -Wextra -std=c89 -D_GNU_SOURCE"
18
18
LDFLAGS="$LDFLAGS"
19
19
 
20
 
AC_CHECK_HEADERS([pthread.h, zlib.h lzma.h])
 
20
AC_CHECK_HEADERS([pthread.h zlib.h lzma.h])
21
21
 
22
22
AC_CHECK_DECL([PCRE_CONFIG_JIT], [AC_DEFINE([USE_PCRE_JIT], [], [Use PCRE JIT])], [], [#include <pcre.h>])
23
23
 
25
25
 
26
26
AC_CHECK_FUNCS(vasprintf fgetln getline strndup)
27
27
 
28
 
AC_CONFIG_FILES([Makefile])
 
28
AC_CONFIG_FILES([Makefile the_silver_searcher.spec])
29
29
AC_CONFIG_HEADERS([src/config.h])
30
30
 
31
31
AC_OUTPUT