File: configure.ac

package info (click to toggle)
xfce4-systemload-plugin 0.4-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,032 kB
  • ctags: 196
  • sloc: sh: 8,586; ansic: 1,389; makefile: 50
file content (49 lines) | stat: -rw-r--r-- 1,002 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
49
dnl configure.ac
dnl
dnl xfce4-systemload-plugin - Systemload monitor plugin for xfce4-panel
dnl
dnl 2003 Benedikt Meurer <benedikt.meurer@unix-ag.uni-siegen.de>
dnl

m4_define([systemload_version], [0.4.0])

AC_INIT([xfce4-systemload-plugin], [systemload_version()], 
	[xfce-goodies-dev@lists.berlios.de])

SYSTEMLOAD_VERSION=systemload_version()
AM_INIT_AUTOMAKE([xfce4-systemload-plugin], [$SYSTEMLOAD_VERSION])
AM_CONFIG_HEADER([config.h])

AM_MAINTAINER_MODE

dnl Check for UNIX variants
AC_AIX
AC_ISC_POSIX
AC_MINIX

dnl Check for basic programs
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_INTLTOOL

dnl Check for kvm, needed by bsd
AC_CHECK_LIB([kvm], [kvm_open])

dnl Check for standard header files
AC_HEADER_STDC

dnl configure the panel plugin
XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.22])

dnl Check for i18n support 
XDT_I18N([ca de fr hu ko lt nl uk vi zh_TW])

dnl Check for debugging support
XDT_FEATURE_DEBUG()

AC_OUTPUT([
Makefile
panel-plugin/Makefile
po/Makefile.in
])