File: configure.ac

package info (click to toggle)
aptsh 0.0.8
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 704 kB
  • sloc: sh: 3,691; cpp: 1,876; ansic: 272; makefile: 93
file content (64 lines) | stat: -rw-r--r-- 1,668 bytes parent folder | download | duplicates (3)
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

AC_INIT(aptsh, 0.0.7, http://aptsh.berlios.de)
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_SRCDIR(src/main.cc)

AC_HEADER_STDC

AM_CONFIG_HEADER(src/config.h)

AC_DEFINE(VERSION, "0.0.7")

# Whops... :)
# Well, Aptsh is intended to be used only on Debian-like systems,
# but if you would like to put configuration file somewhere else,
# then change this manually.
sysconfdir=/etc
AC_DEFINE(CONFIG_FILE, "/etc/aptsh.conf", [Aptsh configuration file])

AC_ARG_WITH(builddeb,
  [  --without-builddeb          Don't compile the program for FHS and packaging into deb])

if test "x$with_builddeb" != "xno"; then
	if test "x$prefix" == "xNONE"; then
		SHD="\"$ac_default_prefix/lib/aptsh/\""
	else
		SHD="\"$prefix/lib/aptsh/\""
	fi
else
	if test "x$prefix" == "xNONE"; then
		SHD="\"$ac_default_prefix/libexec/\""
	else
		SHD="\"$prefix/libexec/\""
	fi
fi

AC_DEFINE_UNQUOTED(SHARED_DIR, $SHD, [Aptsh libexec directory])

AC_CHECK_HEADERS([readline/readline.h],, [AC_MSG_ERROR([Can't find libreadline headers!])] )
AC_CHECK_LIB([readline], [readline],, [AC_MSG_ERROR([Readline library not found!])] )

AC_LANG_CPLUSPLUS
AC_CHECK_HEADERS([apt-pkg/cachefile.h],, [AC_MSG_ERROR([Can't find libapt-pkg headers!])] )
AC_CHECK_LIB([apt-pkg], main,, [AC_MSG_ERROR([Readline library not found!])] )

# We'll write ldflags separately for each executable
LIBS=

AC_CHECK_PROGS(APT_GET, apt-get, no)
AC_CHECK_PROGS(APT_CACHE, apt-cache, no)

if test "$APT_GET" == "no"; then
	AC_MSG_WARN([Apt was not found on this system])
elif test "$APT_CACHE" == "no"; then
	AC_MSG_WARN([Apt was not found on this system])
fi

AM_INIT_AUTOMAKE

AC_PROG_CC
AC_PROG_CXX


AC_OUTPUT(Makefile src/Makefile)