Welcome to mirror list, hosted at ThFree Co, Russian Federation.

configure.ac - github.com/neutrinolabs/libpainter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc1bd10588cc28417f621cd2e4f594821b394a03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Process this file with autoconf to produce a configure script

AC_PREREQ(2.59)
AC_INIT([libpainter], [0.1.0], [xrdp-devel@lists.sourceforge.net])
AC_CONFIG_HEADERS(config_ac.h:config_ac-h.in)
AM_INIT_AUTOMAKE([1.6 foreign])
AC_PROG_CC
AC_C_CONST
AC_PROG_LIBTOOL

# Use silent rules by default if supported by Automake
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])

AM_CONDITIONAL(GOT_PREFIX, test "x${prefix}" != "xNONE"])

AC_ARG_ENABLE(tests, AS_HELP_STRING([--enable-tests],
              [Build install tests (default: no)]),
              [], [enable_tests=no])
AM_CONDITIONAL(PT_TESTS, [test x$enable_tests = xyes])

if test "x${prefix}" = "xNONE" ; then
sysconfdir="/etc";
fi

pkgconfigdir=${libdir}/pkgconfig
AC_SUBST(pkgconfigdir)

AC_CONFIG_FILES([
  Makefile
  include/Makefile
  pkgconfig/libpainter.pc
  pkgconfig/libpainter-uninstalled.pc
  pkgconfig/Makefile
  src/Makefile
  tests/Makefile
])

AC_OUTPUT