-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac.in
45 lines (34 loc) · 902 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
dnl configure.ac
dnl
dnl xfce4-applet-batt - Battery Monitor plugin for xfce4-panel
dnl
dnl 2016 Tarun Prabhu <[email protected]>
dnl
m4_define([appletbatt_version],[4.0.1])
AC_INIT([xfce4-applet-batt], [appletbatt_version],
APPLETBATT_VERSION=appletbatt_version()
AM_INIT_AUTOMAKE([xfce4-applet-batt], [$APPLETBATT_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
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-2.0], [4.12.0])
XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-2], [4.12.0])
dnl Check for debugging support
XDT_FEATURE_DEBUG()
AC_OUTPUT([
Makefile
panel-plugin/Makefile
])