File: configure.ac

package info (click to toggle)
xfce4-systemload-plugin 0.3.6-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,184 kB
  • ctags: 173
  • sloc: sh: 10,165; ansic: 1,435; makefile: 38
file content (45 lines) | stat: -rw-r--r-- 819 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
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

AC_INIT([panel-plugin/systemload.c])

AM_CONFIG_HEADER([config.h])

AM_INIT_AUTOMAKE([xfce4-systemload-plugin], [0.3.6])

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_LIBTOOL

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

dnl Check for standard header files
AC_HEADER_STDC

dnl Check for i18n support 
BM_I18N([xfce4-systemload], [de ca hu lt uk])

dnl configure the panel plugin
XFCE_PANEL_PLUGIN([XFCE4_PANEL], [3.99.2])

dnl Check for debugging support
BM_DEBUG_SUPPORT

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