File: configure.ac

package info (click to toggle)
hotswap 0.4.0-15
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 5,000 kB
  • ctags: 477
  • sloc: sh: 11,424; perl: 2,035; ansic: 1,569; cpp: 479; makefile: 85; sed: 16
file content (75 lines) | stat: -rw-r--r-- 1,847 bytes parent folder | download | duplicates (6)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
dnl configure.ac
dnl
dnl Copyright (C) 2001-2003 Tim Stadelmann
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation; either version 2, or (at your option)
dnl any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program; if not, write to the Free Software Foundation,
dnl Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  

dnl Initialization

AC_INIT
AC_CONFIG_SRCDIR(config.h.in)
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE(hotswap, 0.4.0)
AC_SUBST(VERSION)
ISODATE=`date +%Y-%m-%d`
AC_SUBST(ISODATE)

AM_GNU_GETTEXT([external])

dnl Options

AC_ARG_ENABLE(kde-frontend,
  AC_HELP_STRING([--disable-kde-frontend],
    [do not build the KDE frontend]))

AC_ARG_ENABLE(motif-frontend,
  AC_HELP_STRING([--disable-motif-frontend],
    [do not build the Motif frontend]))

if test "$enable_kde_frontend" != "no"; then
  AC_CONFIG_SUBDIRS(kde-frontend) 
fi

if test "$enable_motif_frontend" != "no"; then
  AC_CONFIG_SUBDIRS(motif-frontend) 
fi

dnl Check for programs.

AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_MAKE_SET

dnl Check for libraries.

AM_PATH_XML2(2.3.4,
  RCFILE="rcfile.o"
  AC_DEFINE(HAVE_LIBXML2, [], [Define if you have libxml2.])
  )
AC_SUBST(RCFILE)

dnl Check for header files.

AC_HEADER_STDC
AC_CHECK_HEADERS([sys/ioctl.h sys/mount.h])

dnl Declare output files.

AC_CONFIG_FILES([Makefile]
		[src/Makefile]
		[po/Makefile.in]
		[m4/Makefile]
		[doc/Makefile])
AC_OUTPUT