-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac.in
51 lines (39 loc) · 1009 Bytes
/
configure.ac.in
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
dnl configure.ac
dnl
dnl xfce4-genmon-plugin - Generic Monitor plugin for xfce4-panel
dnl
dnl 2004 Roger Seguin <roger_seguin@msn.com>
dnl 2006 Julien Devemy <jujucece@gmail.com>
dnl
m4_define([genmon_version],[3.4])
AC_INIT([xfce4-genmon-plugin], [genmon_version],
[xfce-goodies-dev@lists.berlios.de])
GENMON_VERSION=genmon_version()
AM_INIT_AUTOMAKE([xfce4-genmon-plugin], [$GENMON_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 Initialize libtool
LT_PREREQ([2.2.6])
LT_INIT([disable-static])
dnl Check for standard header files
AC_HEADER_STDC
dnl configure the panel plugin
XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.8.0])
XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.8.0])
dnl Translations
XDT_I18N([@LINGUAS@])
dnl Check for debugging support
XDT_FEATURE_DEBUG()
AC_OUTPUT([
Makefile
panel-plugin/Makefile
po/Makefile.in
])