File: configure.in

package info (click to toggle)
alltray 0.69-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,832 kB
  • ctags: 399
  • sloc: sh: 9,001; ansic: 5,567; makefile: 113
file content (48 lines) | stat: -rw-r--r-- 968 bytes parent folder | download
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
dnl Process this file with autoconf to produce a configure script.


AC_INIT(configure.in)
AC_PREFIX_DEFAULT(/usr)
AM_INIT_AUTOMAKE(alltray, 0.69)
AM_CONFIG_HEADER(config.h)


AC_ISC_POSIX
AC_PROG_CC
AM_PROG_CC_STDC
AC_HEADER_STDC

AC_DISABLE_STATIC
AM_PROG_LIBTOOL

AM_BINRELOC


AC_ARG_ENABLE(gconf,
	[   --disable-gconf	Disable gconf], 
	[ if test "$enableval" = "no"; then
		user_disabled_gconf=1
	  fi ],
	[ user_disabled_gconf=0 ])

AC_MSG_CHECKING(if gconf is disabled)
if test "$user_disabled_gconf" = 1; then
	AC_MSG_RESULT(yes)
  pkg_modules="gtk+-2.0 >= 2.2.0 gdk-2.0 gdk-pixbuf-xlib-2.0" 
else
	AC_MSG_RESULT(no)
  AC_DEFINE(GCONF_NOT_DISABLED,1,Define if gconf is not disabled) 
  pkg_modules="gtk+-2.0 >= 2.2.0 gdk-2.0 gconf-2.0 gdk-pixbuf-xlib-2.0" 
fi                             


PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
AC_SUBST(PACKAGE_CFLAGS)
AC_SUBST(PACKAGE_LIBS)

AC_OUTPUT([
Makefile
src/Makefile
lib/Makefile
autopackage/default.apspec
])