blob: cfbd6ee22f776e077c276f99d36e88ddec3eabe1 (
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
|
dnl Process this file with autoconf to produce a configure script.
dnl Auto* initialization
AC_INIT(xwinclip, 1.2.0)
AC_CONFIG_SRCDIR(xwinclip.c)
AM_INIT_AUTOMAKE([dist-bzip2])
AM_CONFIG_HEADER(config.h)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
dnl Checks for libraries.
dnl Checks for header files.
dnl Checks for library functions.
AC_PATH_X
AC_PATH_XTRA
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
|