Newer
Older
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
dnl configure.ac
dnl
dnl xfwm4 - window manager for the XFce4 desktop environment
dnl
AC_INIT(src/main.c)
AC_PREREQ(2.52)
AM_INIT_AUTOMAKE(xfwm4, 0.1)
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_LIBTOOL
dnl Check C Compiler Characteristics
AC_C_CONST
AC_C_INLINE
dnl check for standard header files
AC_HEADER_STDC
dnl Check for i18n support
BM_I18N([xfwm4], [ar de es es_MX fi fr nl pl zh_CN])
dnl Check for X11 window system
BM_LIBX11_REQUIRE
BM_LIBXPM_REQUIRE
BM_DEPEND(GLIB, glib-2.0, 2.0.0)
BM_DEPEND(GTK, gtk+-2.0, 2.0.0)
BM_DEPEND(LIBXFCE4MCS_CLIENT, libxfce4mcs-client-1.0, 0.0.3)
BM_DEPEND(LIBXFCE4MCS_MANAGER, libxfce4mcs-manager-1.0, 0.0.3)
BM_DEPEND(LIBXFCE4UTIL, libxfce4util-1.0, 0.0)
BM_DEPEND(LIBXFCEGUI4, libxfcegui4-1.0, 0.0.16)
BM_DEPEND(XFCE_MCS_MANAGER, xfce-mcs-manager, 0.1)
BM_DEPEND_CHECK(LIBSTARTUP_NOTIFICATION, libstartup-notification-1.0, 0.4)
dnl Check for debugging support
BM_DEBUG_SUPPORT
AC_OUTPUT([
xfwm4.spec
Makefile
common/Makefile
defaults/Makefile
mcs-plugin/Makefile
po/Makefile.in
src/Makefile
themes/Makefile
themes/adept/Makefile
themes/agua/Makefile
themes/atlanta/Makefile
themes/atlanta2/Makefile
themes/b5/Makefile
themes/b6/Makefile
themes/bbs/Makefile
themes/beastie/Makefile
themes/biz/Makefile
themes/coldsteel/Makefile
themes/coolclean/Makefile
themes/crux/Makefile
themes/cruxish/Makefile
themes/curve/Makefile
themes/default.keys/Makefile
themes/eazel-blue/Makefile
themes/elberg/Makefile
themes/exocet/Makefile
themes/fbx/Makefile
themes/g2/Makefile
themes/gaudy/Makefile
themes/gnububble/Makefile
themes/gorilla/Makefile
themes/gtk/Makefile
themes/iceg/Makefile
themes/kde/Makefile
themes/keramik/Makefile
themes/kindaker/Makefile
themes/koynacity/Makefile
themes/linea/Makefile
themes/meenee/Makefile
themes/metabox/Makefile
themes/microcurve/Makefile
themes/microdeck/Makefile
themes/microdeck2/Makefile
themes/microdeck3/Makefile
themes/microgui/Makefile
themes/mofit/Makefile
themes/next/Makefile
themes/ops/Makefile
themes/oroborus/Makefile
themes/pills/Makefile
themes/piranha/Makefile
themes/platinum/Makefile
themes/quiet-purple/Makefile
themes/quinx/Makefile
themes/r9x/Makefile
themes/redmond/Makefile
themes/redmondxp/Makefile
themes/retro/Makefile
themes/silverado/Makefile
themes/slick/Makefile
themes/slimline/Makefile
themes/tabs/Makefile
themes/tgc/Makefile
themes/totem/Makefile
themes/trench/Makefile
themes/tux/Makefile
themes/variation/Makefile
themes/xfce/Makefile
])