1 | AC_INIT(drivemount/drivemount.c) |
---|
2 | AM_CONFIG_HEADER(config.h) |
---|
3 | AM_INIT_AUTOMAKE(gnome-applets, 2.8.2) |
---|
4 | |
---|
5 | AM_MAINTAINER_MODE |
---|
6 | |
---|
7 | AC_PROG_INTLTOOL |
---|
8 | |
---|
9 | AC_ISC_POSIX |
---|
10 | AC_PROG_CC |
---|
11 | AC_STDC_HEADERS |
---|
12 | AM_PROG_LIBTOOL |
---|
13 | AC_PATH_PROGS(PATH_TO_XRDB, "xrdb") |
---|
14 | AC_PATH_XTRA |
---|
15 | X_LIBS="$X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS" |
---|
16 | AC_SUBST(X_LIBS) |
---|
17 | |
---|
18 | GNOME_COMPILE_WARNINGS |
---|
19 | |
---|
20 | dnl Stuff we might need, not quite sure yet |
---|
21 | |
---|
22 | GTK_REQUIRED=2.1.0 |
---|
23 | LIBGNOME_REQUIRED=2.0.0 |
---|
24 | LIBGNOMEUI_REQUIRED=2.0.0 |
---|
25 | GNOME_VFS_REQUIRED=1.9.16 |
---|
26 | GCONF_REQUIRED=1.1.11 |
---|
27 | SCROLLKEEPER_REQUIRED=0.1.4 |
---|
28 | LIBPANEL_REQUIRED=2.7.0 |
---|
29 | LIBGTOP_REQUIRED=2.5.0 |
---|
30 | LIBGLADE_REQUIRED=2.0.0 |
---|
31 | |
---|
32 | dnl configure argument for disabling gstreamer usage |
---|
33 | |
---|
34 | AC_ARG_ENABLE(gstreamer, |
---|
35 | AC_HELP_STRING([--enable-gstreamer],[use gstreamer, if available]), |
---|
36 | [case "${enableval}" in |
---|
37 | yes) ENABLE_GSTREAMER=yes ;; |
---|
38 | no) ENABLE_GSTREAMER=no ;; |
---|
39 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-gstreamer) ;; |
---|
40 | esac], |
---|
41 | [ENABLE_GSTREAMER=yes]) dnl Default value |
---|
42 | |
---|
43 | |
---|
44 | dnl ****************************************** |
---|
45 | dnl ** pkg-config dependacy checks ** |
---|
46 | dnl ****************************************** |
---|
47 | |
---|
48 | PKG_CHECK_MODULES(GAILUTIL, gail >= 0.13) |
---|
49 | AC_SUBST(GAILUTIL_CFLAGS) |
---|
50 | AC_SUBST(GAILUTIL_LIBS) |
---|
51 | |
---|
52 | PKG_CHECK_MODULES(GNOME_APPLETS, gtk+-2.0 >= $GTK_REQUIRED libpanelapplet-2.0 >= $LIBPANEL_REQUIRED) |
---|
53 | AC_SUBST(GNOME_APPLETS_CFLAGS) |
---|
54 | AC_SUBST(GNOME_APPLETS_LIBS) |
---|
55 | |
---|
56 | PKG_CHECK_MODULES(GNOME_LIBS2, libgnome-2.0 >= $LIBGNOME_REQUIRED libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED) |
---|
57 | AC_SUBST(GNOME_LIBS2_CFLAGS) |
---|
58 | AC_SUBST(GNOME_LIBS2_LIBS) |
---|
59 | |
---|
60 | build_gnome_vfs_applets=false |
---|
61 | PKG_CHECK_MODULES(GNOME_VFS_APPLETS, |
---|
62 | [gnome-vfs-2.0 >= $GNOME_VFS_REQUIRED], |
---|
63 | build_gnome_vfs_applets=true,) |
---|
64 | AC_SUBST(GNOME_VFS_APPLETS_CFLAGS) |
---|
65 | AC_SUBST(GNOME_VFS_APPLETS_LIBS) |
---|
66 | AM_CONDITIONAL(BUILD_GNOME_VFS_APPLETS, $build_gnome_vfs_applets) |
---|
67 | |
---|
68 | PKG_CHECK_MODULES(LIBGLADE, libglade-2.0 >= $LIBGLADE_REQUIRED) |
---|
69 | AC_SUBST(LIBGLADE_CFLAGS) |
---|
70 | AC_SUBST(LIBGLADE_LIBS) |
---|
71 | |
---|
72 | AC_PATH_PROG(GDK_PIXBUF_CSOURCE, gdk-pixbuf-csource, no) |
---|
73 | |
---|
74 | if test x"$GDK_PIXBUF_CSOURCE" = xno; then |
---|
75 | AC_MSG_ERROR([gdk-pixbuf-csource executable not found in your path - should be installed with GTK]) |
---|
76 | fi |
---|
77 | |
---|
78 | AC_SUBST(GDK_PIXBUF_CSOURCE) |
---|
79 | |
---|
80 | AC_PATH_PROG(GCONFTOOL, gconftool-2, no) |
---|
81 | |
---|
82 | if test x"$GCONFTOOL" = xno; then |
---|
83 | AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf]) |
---|
84 | fi |
---|
85 | |
---|
86 | AM_GCONF_SOURCE_2 |
---|
87 | |
---|
88 | |
---|
89 | dnl Still need to decide on the checks for these |
---|
90 | |
---|
91 | build_gtop_applets=false |
---|
92 | PKG_CHECK_MODULES(GTOP_APPLETS, |
---|
93 | [libgtop-2.0 >= $LIBGTOP_REQUIRED], |
---|
94 | build_gtop_applets=true, |
---|
95 | AC_MSG_WARN([libgtop not found. Not building gtop applets.])) |
---|
96 | AC_SUBST(GTOP_APPLETS_CFLAGS) |
---|
97 | AC_SUBST(GTOP_APPLETS_LIBS) |
---|
98 | AM_CONDITIONAL(BUILD_GTOP_APPLETS, $build_gtop_applets) |
---|
99 | |
---|
100 | dnl Setup for libxklavier |
---|
101 | PKG_CHECK_MODULES(LIBXKLAVIER, libxklavier >= 0.97,, |
---|
102 | AC_MSG_ERROR([Upcoming releases of gnome-control-center will depend on libxklavier. |
---|
103 | The latest release is available from http://prdownloads.sourceforge.net/gswitchit], 1)) |
---|
104 | |
---|
105 | AC_SUBST(LIBXKLAVIER_CFLAGS) |
---|
106 | AC_SUBST(LIBXKLAVIER_LIBS) |
---|
107 | |
---|
108 | AC_ARG_ENABLE(flags, |
---|
109 | [ --enable-flags Enable flags usage in the keyboard indicators], |
---|
110 | , enable_flags=no) |
---|
111 | AM_CONDITIONAL(ENABLE_FLAGS, test x$enable_flags != xno) |
---|
112 | |
---|
113 | dnl ============== |
---|
114 | dnl gswitchit |
---|
115 | dnl ============== |
---|
116 | dnl Make sure the new cvs virtual include has been checked out |
---|
117 | AC_MSG_CHECKING([for inclusion of libgswitchit]) |
---|
118 | if test ! -d "$srcdir/libgswitchit"; then |
---|
119 | AC_MSG_RESULT(no) |
---|
120 | AC_MSG_ERROR([Your checkout of gnome-applets is out of date. |
---|
121 | The 'libgswitchit' module has been virtually included into |
---|
122 | gnome-applets by CVS as a subdirectory. Please check |
---|
123 | out again (this can be done on top of your existing checkout]) |
---|
124 | else |
---|
125 | AC_MSG_RESULT(yes) |
---|
126 | fi |
---|
127 | AM_CONDITIONAL(INCLUDE_GSWITCHIT_DEVEL, true) dnl pull devel from applet |
---|
128 | |
---|
129 | dnl ************************ |
---|
130 | dnl ** Set up gettext ** |
---|
131 | dnl ************************ |
---|
132 | ALL_LINGUAS="am ar az be bg bn bs ca cs cy da de el en_CA en_GB es et eu fa fi fr ga gl gu he hi hr hu id is it ja ko lt lv mk ml mn ms nb nl nn no pa pl pt pt_BR ro ru sk sl sq sr sr@Latn sv ta th tr uk vi wa zh_CN zh_TW" |
---|
133 | |
---|
134 | GETTEXT_PACKAGE=gnome-applets-2.0 |
---|
135 | AC_SUBST(GETTEXT_PACKAGE) |
---|
136 | AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE") |
---|
137 | |
---|
138 | AM_GLIB_GNU_GETTEXT |
---|
139 | |
---|
140 | # this is the directory where the *.{mo,gmo} files are installed |
---|
141 | gnomelocaledir='${prefix}/${DATADIRNAME}/locale' |
---|
142 | AC_SUBST(gnomelocaledir) |
---|
143 | |
---|
144 | dnl ****************************************** |
---|
145 | dnl ** Check for Scrollkeeper ** |
---|
146 | dnl ****************************************** |
---|
147 | |
---|
148 | AC_PATH_PROG(SCROLLKEEPER_CONFIG, scrollkeeper-config, no) |
---|
149 | if test x$SCROLLKEEPER_CONFIG = xno; then |
---|
150 | AC_MSG_ERROR(Couldn't find scrollkeeper-config, please install the Scrollkeeper 0.1.4 package) |
---|
151 | fi |
---|
152 | AC_SUBST(SCROLLKEEPER_REQUIRED) |
---|
153 | |
---|
154 | dnl ****************************************** |
---|
155 | dnl ****************************************** |
---|
156 | |
---|
157 | |
---|
158 | dnl ****************************************** |
---|
159 | dnl ** Test whether jw is installed ** |
---|
160 | dnl ****************************************** |
---|
161 | |
---|
162 | AC_PATH_PROG(JW, jw, no) |
---|
163 | if test x$JW = xno; then |
---|
164 | HAVE_JW="no" |
---|
165 | else |
---|
166 | HAVE_JW="yes" |
---|
167 | fi |
---|
168 | AM_CONDITIONAL(HAVE_JW, test "x$HAVE_JW" = "xyes") |
---|
169 | AC_SUBST(HAVE_JW) |
---|
170 | |
---|
171 | dnl ****************************************** |
---|
172 | dnl ** cdplayer applet check ** |
---|
173 | dnl ****************************************** |
---|
174 | dnl FIXME: What's the default device for irix? and is this correct for Netbsd |
---|
175 | dnl AC_CANONICAL_HOST |
---|
176 | cdplayer_type_sun=false |
---|
177 | case "$host" in |
---|
178 | *irix*) CDROM_HOST=irix; CDROM_LIBS="-lcdaudio -lmediad -lds";cd_device_path="/dev/cdrom";; |
---|
179 | *linux*) CDROM_HOST=linux;cd_device_path="/dev/cdrom";; |
---|
180 | *netbsd*) CDROM_HOST=netbsd;cd_device_path="/dev/rcd0";; |
---|
181 | *solaris*) CDROM_HOST=solaris;cd_device_path="/vol/dev/aliases/cdrom0";cdplayer_type_sun=true;; |
---|
182 | esac |
---|
183 | case "$host" in |
---|
184 | sparc-*-solaris*) gkb_type_sun=true;; |
---|
185 | *) gkb_type_sun=false;; |
---|
186 | esac |
---|
187 | AM_CONDITIONAL(GKB_SUN, $gkb_type_sun) |
---|
188 | AM_CONDITIONAL(CDDA_SOLARIS, $cdplayer_type_sun) |
---|
189 | |
---|
190 | AM_CONDITIONAL(APPLET_CDPLAYER, test -n "$CDROM_HOST") |
---|
191 | AC_SUBST(CDROM_HOST) |
---|
192 | AC_SUBST(CDROM_LIBS) |
---|
193 | AC_DEFINE_UNQUOTED(DEV_PATH, "$cd_device_path") |
---|
194 | if test -z "$CDROM_HOST"; then |
---|
195 | dnl |
---|
196 | AC_MSG_WARN([*** \`cdplayer' applet will not be built ***]) |
---|
197 | fi |
---|
198 | |
---|
199 | dnl ****************************************** |
---|
200 | dnl ****************************************** |
---|
201 | |
---|
202 | |
---|
203 | dnl ****************************************** |
---|
204 | dnl ** battstat check ** |
---|
205 | dnl ****************************************** |
---|
206 | |
---|
207 | dnl --disable-battstat=(yes|no) |
---|
208 | AC_ARG_ENABLE(battstat, |
---|
209 | [ --disable-battstat=[no/yes] don't build battery monitor applet [default=no]],, |
---|
210 | disable_battstat=no) |
---|
211 | |
---|
212 | HAVE_LIBAPM=no |
---|
213 | NEED_LIBAPM=no |
---|
214 | build_battstat_applet=no |
---|
215 | |
---|
216 | if test x$disable_battstat = xno; then |
---|
217 | build_battstat_applet=yes |
---|
218 | case "${host}" in |
---|
219 | powerpc-*-linux*) |
---|
220 | NEED_LIBAPM=yes |
---|
221 | AC_CHECK_LIB(apm,apm_read,[HAVE_LIBAPM=yes],[HAVE_LIBAPM=no]) |
---|
222 | ;; |
---|
223 | # list of supported OS cores that use libapm |
---|
224 | *-*-linux*) |
---|
225 | NEED_LIBAPM=yes |
---|
226 | AC_CHECK_LIB(apm,apm_read,[HAVE_LIBAPM=yes],[HAVE_LIBAPM=no]) |
---|
227 | ;; |
---|
228 | # list of supported OS cores that do not use libapm |
---|
229 | *-*-freebsd*|*-*-netbsd*|*-*-openbsd*) |
---|
230 | ;; |
---|
231 | *) |
---|
232 | echo "warning: ${host} is not supported by battstat_applet, not building" >&2 |
---|
233 | build_battstat_applet=no |
---|
234 | ;; |
---|
235 | esac |
---|
236 | fi |
---|
237 | |
---|
238 | AC_SUBST(HAVE_LIBAPM) |
---|
239 | AC_SUBST(NEED_LIBAPM) |
---|
240 | AM_CONDITIONAL(HAVE_LIBAPM, test "x$HAVE_LIBAPM" = "xyes") |
---|
241 | AM_CONDITIONAL(NEED_LIBAPM, test "x$NEED_LIBAPM" = "xyes") |
---|
242 | AM_CONDITIONAL(BUILD_BATTSTAT_APPLET, test x$build_battstat_applet = xyes) |
---|
243 | |
---|
244 | dnl ******************************************* |
---|
245 | dnl ** mixer applet check ** |
---|
246 | dnl ******************************************* |
---|
247 | |
---|
248 | P_MIXER= |
---|
249 | MIXER_CFLAGS= |
---|
250 | MIXER_LIBS= |
---|
251 | |
---|
252 | if test "x$ENABLE_GSTREAMER" = "xyes"; then |
---|
253 | dnl check for both 0.8 and 0.7 versions |
---|
254 | GST_REQ=0.7.2 |
---|
255 | dnl start with 0.8 |
---|
256 | GST_MAJORMINOR=0.8 |
---|
257 | PKG_CHECK_MODULES(MIXER, gstreamer-interfaces-$GST_MAJORMINOR, |
---|
258 | HAVE_GST="yes", HAVE_GST="no") |
---|
259 | dnl fall back to 0.7 |
---|
260 | if test "x$HAVE_GST" = "xno"; then |
---|
261 | GST_MAJORMINOR=0.7 |
---|
262 | PKG_CHECK_MODULES(MIXER, gstreamer-interfaces-$GST_MAJORMINOR, |
---|
263 | HAVE_GST="yes", HAVE_GST="no") |
---|
264 | fi |
---|
265 | |
---|
266 | dnl decide what to do |
---|
267 | if test "x$HAVE_GST" = "xyes"; then |
---|
268 | P_MIXER=mixer |
---|
269 | MIXER_CFLAGS="-DHAVE_GSTREAMER $MIXER_CFLAGS" |
---|
270 | fi |
---|
271 | else |
---|
272 | AC_MSG_RESULT(*** GStreamer has been explicitly disabled ***) |
---|
273 | fi |
---|
274 | |
---|
275 | if test "x$P_MIXER" = "x"; then |
---|
276 | AC_CHECK_HEADERS(linux/soundcard.h,[P_MIXER=mixer],[ |
---|
277 | AC_CHECK_HEADERS(machine/soundcard.h, [P_MIXER=mixer],[ |
---|
278 | AC_CHECK_HEADERS(sys/soundcard.h, [P_MIXER=mixer],[ |
---|
279 | AC_CHECK_HEADERS(soundcard.h, [P_MIXER=mixer; MIXER_LIBS="-lossaudio"],[ |
---|
280 | AC_CHECK_HEADERS(sys/audioio.h, [P_MIXER=mixer],[ |
---|
281 | AC_CHECK_HEADERS(sys/audio.io.h, [P_MIXER=mixer],[ |
---|
282 | AC_CHECK_HEADERS(sun/audioio.h, [P_MIXER=mixer],[ |
---|
283 | AC_CHECK_HEADERS(dmedia/audio.h, [P_MIXER=mixer],[ |
---|
284 | AC_CHECK_HEADERS(sys/audio.h, [P_MIXER=mixer]),]),]) ]) ]) ]) ]) ]) ]) |
---|
285 | fi |
---|
286 | |
---|
287 | AC_SUBST(MIXER_CFLAGS) |
---|
288 | AC_SUBST(MIXER_LIBS) |
---|
289 | |
---|
290 | AM_CONDITIONAL(APPLET_MIXER, test "$P_MIXER" = "mixer") |
---|
291 | if test "$P_MIXER" != "mixer"; then |
---|
292 | AC_MSG_WARN([*** \`mixer' applet will not be built ***]) |
---|
293 | fi |
---|
294 | |
---|
295 | dnl ****************************************** |
---|
296 | dnl ** keyboard accessibility status applet check |
---|
297 | dnl ****************************************** |
---|
298 | |
---|
299 | savecppflags=$CPPFLAGS |
---|
300 | CPPFLAGS="$CPPFLAGS $X_CFLAGS" |
---|
301 | AC_CHECK_HEADER(X11/extensions/XKB.h, HAVE_XKB=true, HAVE_XKB=false) |
---|
302 | |
---|
303 | AM_CONDITIONAL(APPLET_ACCESSX, $HAVE_XKB) |
---|
304 | if test "x$APPLET_ACCESSX" = "xtrue"; then |
---|
305 | AC_MSG_WARN([*** \`keyboard accessibility status' applet will not be built ***]) |
---|
306 | fi |
---|
307 | CPPFLAGS=$savecppflags |
---|
308 | |
---|
309 | |
---|
310 | AM_CONDITIONAL(APPLET_GSWITCHIT, $HAVE_XKB) |
---|
311 | if test "x$HAVE_XKB" != "xtrue"; then |
---|
312 | AC_MSG_WARN([*** \`GSwitchIt' applet will not be built ***]) |
---|
313 | fi |
---|
314 | |
---|
315 | dnl ****************************************** |
---|
316 | dnl ** modemlights applet check ** |
---|
317 | dnl ****************************************** |
---|
318 | |
---|
319 | P_MODEMLIGHTS= |
---|
320 | case "$host_os" in |
---|
321 | linux*|freebsd*|netbsd*|openbsd*) |
---|
322 | AC_CHECK_HEADERS(net/ppp_defs.h,[P_MODEMLIGHTS=modemlights]) |
---|
323 | ;; |
---|
324 | esac |
---|
325 | AM_CONDITIONAL(APPLET_MODEMLIGHTS, test "$P_MODEMLIGHTS" = "modemlights") |
---|
326 | if test "$P_MODEMLIGHTS" != "modemlights"; then |
---|
327 | AC_MSG_WARN([*** \`modemlights' applet will not be built ***]) |
---|
328 | fi |
---|
329 | |
---|
330 | dnl ==================================================================== |
---|
331 | dnl Code for checking whether IPv6 is to be enabled on the system. |
---|
332 | dnl ==================================================================== |
---|
333 | AC_MSG_CHECKING([whether to enable ipv6]) |
---|
334 | AC_ARG_ENABLE(ipv6, [ --enable-ipv6 enable IPv6 extensions], ,enable_ipv6=yes) |
---|
335 | if test $enable_ipv6 = yes; then |
---|
336 | |
---|
337 | dnl ==================================================================== |
---|
338 | dnl Code for checking presence of AF_INET6 on the system. |
---|
339 | dnl ==================================================================== |
---|
340 | AC_TRY_COMPILE([ |
---|
341 | #include <sys/types.h> |
---|
342 | #include <sys/socket.h>], [ |
---|
343 | socket(AF_INET6, SOCK_STREAM, 0) |
---|
344 | ], |
---|
345 | have_ipv6=yes, |
---|
346 | have_ipv6=no |
---|
347 | ) |
---|
348 | AC_MSG_RESULT($have_ipv6) |
---|
349 | if test $have_ipv6 = yes; then |
---|
350 | AC_DEFINE(ENABLE_IPV6) |
---|
351 | fi |
---|
352 | fi |
---|
353 | |
---|
354 | dnl ================================================================= |
---|
355 | dnl Now we would check for specific function like getaddrinfo. |
---|
356 | dnl ================================================================= |
---|
357 | have_getaddrinfo=no |
---|
358 | AC_CHECK_FUNC(getaddrinfo, have_getaddrinfo=yes) |
---|
359 | if test $have_getaddrinfo != yes; then |
---|
360 | # getaddrinfo is not in the default libraries. See if it's in some other. |
---|
361 | for lib in bsd socket inet; do |
---|
362 | AC_CHECK_LIB($lib, getaddrinfo, [LIBS="$LIBS -l$lib";have_getaddrinfo=yes; break]) |
---|
363 | done |
---|
364 | fi |
---|
365 | if test $have_getaddrinfo = yes; then |
---|
366 | AC_DEFINE(HAVE_GETADDRINFO) |
---|
367 | fi |
---|
368 | |
---|
369 | dnl ================================================================= |
---|
370 | dnl End of IPv6 checks |
---|
371 | dnl ================================================================= |
---|
372 | |
---|
373 | # Honor aclocal flags |
---|
374 | ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" |
---|
375 | |
---|
376 | AC_DEFINE_UNQUOTED(GNOME_ICONDIR, "${prefix}/share/pixmaps") |
---|
377 | |
---|
378 | #defined the below to enable help to work for applets |
---|
379 | |
---|
380 | AC_DEFINE_UNQUOTED(DATADIR, "${prefix}/share") |
---|
381 | AC_DEFINE_UNQUOTED(SYSCONFDIR, "${prefix}/etc") |
---|
382 | AC_DEFINE_UNQUOTED(LIBDIR, "${prefix}/lib") |
---|
383 | AC_DEFINE_UNQUOTED(PREFIX, "$prefix") |
---|
384 | |
---|
385 | AC_OUTPUT([ |
---|
386 | gnome-applets.spec |
---|
387 | Makefile |
---|
388 | po/Makefile.in |
---|
389 | accessx-status/Makefile |
---|
390 | accessx-status/docs/Makefile |
---|
391 | accessx-status/docs/C/Makefile |
---|
392 | accessx-status/docs/eu/Makefile |
---|
393 | accessx-status/pixmaps/Makefile |
---|
394 | mailcheck/Makefile |
---|
395 | mailcheck/help/Makefile |
---|
396 | mailcheck/help/C/Makefile |
---|
397 | mailcheck/help/de/Makefile |
---|
398 | mailcheck/help/es/Makefile |
---|
399 | mailcheck/help/eu/Makefile |
---|
400 | mailcheck/help/fr/Makefile |
---|
401 | mailcheck/help/it/Makefile |
---|
402 | mailcheck/help/ja/Makefile |
---|
403 | mailcheck/help/ko/Makefile |
---|
404 | mailcheck/help/sv/Makefile |
---|
405 | mailcheck/help/zh_CN/Makefile |
---|
406 | mailcheck/help/zh_HK/Makefile |
---|
407 | mailcheck/help/zh_TW/Makefile |
---|
408 | mini-commander/Makefile |
---|
409 | mini-commander/src/Makefile |
---|
410 | mini-commander/help/Makefile |
---|
411 | mini-commander/help/C/Makefile |
---|
412 | mini-commander/help/de/Makefile |
---|
413 | mini-commander/help/es/Makefile |
---|
414 | mini-commander/help/eu/Makefile |
---|
415 | mini-commander/help/fr/Makefile |
---|
416 | mini-commander/help/it/Makefile |
---|
417 | mini-commander/help/ja/Makefile |
---|
418 | mini-commander/help/ko/Makefile |
---|
419 | mini-commander/help/sv/Makefile |
---|
420 | mini-commander/help/zh_HK/Makefile |
---|
421 | mini-commander/help/zh_CN/Makefile |
---|
422 | mini-commander/help/zh_TW/Makefile |
---|
423 | mixer/Makefile |
---|
424 | mixer/docs/Makefile |
---|
425 | mixer/docs/C/Makefile |
---|
426 | mixer/docs/de/Makefile |
---|
427 | mixer/docs/es/Makefile |
---|
428 | mixer/docs/eu/Makefile |
---|
429 | mixer/docs/fr/Makefile |
---|
430 | mixer/docs/it/Makefile |
---|
431 | mixer/docs/ja/Makefile |
---|
432 | mixer/docs/ko/Makefile |
---|
433 | mixer/docs/sv/Makefile |
---|
434 | mixer/docs/zh_CN/Makefile |
---|
435 | mixer/docs/zh_HK/Makefile |
---|
436 | mixer/docs/zh_TW/Makefile |
---|
437 | drivemount/Makefile |
---|
438 | drivemount/help/Makefile |
---|
439 | drivemount/help/C/Makefile |
---|
440 | drivemount/help/de/Makefile |
---|
441 | drivemount/help/es/Makefile |
---|
442 | drivemount/help/eu/Makefile |
---|
443 | drivemount/help/fr/Makefile |
---|
444 | drivemount/help/it/Makefile |
---|
445 | drivemount/help/ja/Makefile |
---|
446 | drivemount/help/ko/Makefile |
---|
447 | drivemount/help/sv/Makefile |
---|
448 | drivemount/help/zh_HK/Makefile |
---|
449 | drivemount/help/zh_CN/Makefile |
---|
450 | drivemount/help/zh_TW/Makefile |
---|
451 | modemlights/Makefile |
---|
452 | modemlights/docs/Makefile |
---|
453 | modemlights/docs/C/Makefile |
---|
454 | modemlights/docs/eu/Makefile |
---|
455 | cdplayer/Makefile |
---|
456 | cdplayer/docs/Makefile |
---|
457 | cdplayer/docs/C/Makefile |
---|
458 | cdplayer/docs/de/Makefile |
---|
459 | cdplayer/docs/es/Makefile |
---|
460 | cdplayer/docs/eu/Makefile |
---|
461 | cdplayer/docs/fr/Makefile |
---|
462 | cdplayer/docs/it/Makefile |
---|
463 | cdplayer/docs/ja/Makefile |
---|
464 | cdplayer/docs/ko/Makefile |
---|
465 | cdplayer/docs/sv/Makefile |
---|
466 | cdplayer/docs/zh_CN/Makefile |
---|
467 | cdplayer/docs/zh_HK/Makefile |
---|
468 | cdplayer/docs/zh_TW/Makefile |
---|
469 | multiload/Makefile |
---|
470 | multiload/docs/Makefile |
---|
471 | multiload/docs/C/Makefile |
---|
472 | multiload/docs/de/Makefile |
---|
473 | multiload/docs/es/Makefile |
---|
474 | multiload/docs/eu/Makefile |
---|
475 | multiload/docs/fr/Makefile |
---|
476 | multiload/docs/it/Makefile |
---|
477 | multiload/docs/ja/Makefile |
---|
478 | multiload/docs/ko/Makefile |
---|
479 | multiload/docs/sv/Makefile |
---|
480 | multiload/docs/zh_CN/Makefile |
---|
481 | multiload/docs/zh_HK/Makefile |
---|
482 | multiload/docs/zh_TW/Makefile |
---|
483 | gkb-new/Makefile |
---|
484 | gkb-new/gkb/Makefile |
---|
485 | gkb-new/xmodmap/Makefile |
---|
486 | gkb-new/descs/Makefile |
---|
487 | gkb-new/xmodmap.sun/Makefile |
---|
488 | gkb-new/descs.sun/Makefile |
---|
489 | gkb-new/gkb_xmmap.in |
---|
490 | gkb-new/help/Makefile |
---|
491 | gkb-new/help/C/Makefile |
---|
492 | gkb-new/help/de/Makefile |
---|
493 | gkb-new/help/es/Makefile |
---|
494 | gkb-new/help/eu/Makefile |
---|
495 | gkb-new/help/fr/Makefile |
---|
496 | gkb-new/help/it/Makefile |
---|
497 | gkb-new/help/ja/Makefile |
---|
498 | gkb-new/help/ko/Makefile |
---|
499 | gkb-new/help/sv/Makefile |
---|
500 | gkb-new/help/zh_CN/Makefile |
---|
501 | gkb-new/help/zh_HK/Makefile |
---|
502 | gkb-new/help/zh_TW/Makefile |
---|
503 | charpick/Makefile |
---|
504 | charpick/help/Makefile |
---|
505 | charpick/help/C/Makefile |
---|
506 | charpick/help/de/Makefile |
---|
507 | charpick/help/es/Makefile |
---|
508 | charpick/help/eu/Makefile |
---|
509 | charpick/help/fr/Makefile |
---|
510 | charpick/help/it/Makefile |
---|
511 | charpick/help/ja/Makefile |
---|
512 | charpick/help/ko/Makefile |
---|
513 | charpick/help/sv/Makefile |
---|
514 | charpick/help/zh_HK/Makefile |
---|
515 | charpick/help/zh_CN/Makefile |
---|
516 | charpick/help/zh_TW/Makefile |
---|
517 | gtik/Makefile |
---|
518 | gtik/access/Makefile |
---|
519 | gtik/help/Makefile |
---|
520 | gtik/help/C/Makefile |
---|
521 | gtik/help/de/Makefile |
---|
522 | gtik/help/es/Makefile |
---|
523 | gtik/help/eu/Makefile |
---|
524 | gtik/help/fr/Makefile |
---|
525 | gtik/help/it/Makefile |
---|
526 | gtik/help/ja/Makefile |
---|
527 | gtik/help/ko/Makefile |
---|
528 | gtik/help/sv/Makefile |
---|
529 | gtik/help/zh_CN/Makefile |
---|
530 | gtik/help/zh_HK/Makefile |
---|
531 | gtik/help/zh_TW/Makefile |
---|
532 | gweather/Makefile |
---|
533 | gweather/docs/Makefile |
---|
534 | gweather/docs/C/Makefile |
---|
535 | gweather/docs/de/Makefile |
---|
536 | gweather/docs/es/Makefile |
---|
537 | gweather/docs/eu/Makefile |
---|
538 | gweather/docs/fr/Makefile |
---|
539 | gweather/docs/it/Makefile |
---|
540 | gweather/docs/ja/Makefile |
---|
541 | gweather/docs/ko/Makefile |
---|
542 | gweather/docs/sv/Makefile |
---|
543 | gweather/docs/zh_HK/Makefile |
---|
544 | gweather/docs/zh_CN/Makefile |
---|
545 | gweather/docs/zh_TW/Makefile |
---|
546 | geyes/Makefile |
---|
547 | geyes/themes/Makefile |
---|
548 | geyes/docs/Makefile |
---|
549 | geyes/docs/C/Makefile |
---|
550 | geyes/docs/de/Makefile |
---|
551 | geyes/docs/es/Makefile |
---|
552 | geyes/docs/eu/Makefile |
---|
553 | geyes/docs/fr/Makefile |
---|
554 | geyes/docs/it/Makefile |
---|
555 | geyes/docs/ja/Makefile |
---|
556 | geyes/docs/ko/Makefile |
---|
557 | geyes/docs/sv/Makefile |
---|
558 | geyes/docs/zh_CN/Makefile |
---|
559 | geyes/docs/zh_HK/Makefile |
---|
560 | geyes/docs/zh_TW/Makefile |
---|
561 | battstat/Makefile |
---|
562 | battstat/apmlib/Makefile |
---|
563 | battstat/sounds/Makefile |
---|
564 | battstat/docs/Makefile |
---|
565 | battstat/docs/C/Makefile |
---|
566 | battstat/docs/de/Makefile |
---|
567 | battstat/docs/es/Makefile |
---|
568 | battstat/docs/eu/Makefile |
---|
569 | battstat/docs/fr/Makefile |
---|
570 | battstat/docs/it/Makefile |
---|
571 | battstat/docs/ja/Makefile |
---|
572 | battstat/docs/ko/Makefile |
---|
573 | battstat/docs/sv/Makefile |
---|
574 | battstat/docs/zh_CN/Makefile |
---|
575 | battstat/docs/zh_HK/Makefile |
---|
576 | battstat/docs/zh_TW/Makefile |
---|
577 | man/Makefile |
---|
578 | wireless/Makefile |
---|
579 | wireless/docs/Makefile |
---|
580 | wireless/docs/C/Makefile |
---|
581 | wireless/docs/de/Makefile |
---|
582 | wireless/docs/es/Makefile |
---|
583 | wireless/docs/eu/Makefile |
---|
584 | wireless/docs/fr/Makefile |
---|
585 | wireless/docs/it/Makefile |
---|
586 | wireless/docs/ja/Makefile |
---|
587 | wireless/docs/ko/Makefile |
---|
588 | wireless/docs/sv/Makefile |
---|
589 | wireless/docs/zh_CN/Makefile |
---|
590 | wireless/docs/zh_HK/Makefile |
---|
591 | wireless/docs/zh_TW/Makefile |
---|
592 | stickynotes/Makefile |
---|
593 | stickynotes/pixmaps/Makefile |
---|
594 | stickynotes/docs/Makefile |
---|
595 | stickynotes/docs/C/Makefile |
---|
596 | stickynotes/docs/de/Makefile |
---|
597 | stickynotes/docs/es/Makefile |
---|
598 | stickynotes/docs/eu/Makefile |
---|
599 | stickynotes/docs/fr/Makefile |
---|
600 | stickynotes/docs/it/Makefile |
---|
601 | stickynotes/docs/ja/Makefile |
---|
602 | stickynotes/docs/ko/Makefile |
---|
603 | stickynotes/docs/sv/Makefile |
---|
604 | stickynotes/docs/zh_CN/Makefile |
---|
605 | stickynotes/docs/zh_HK/Makefile |
---|
606 | stickynotes/docs/zh_TW/Makefile |
---|
607 | libgswitchit/Makefile |
---|
608 | libgswitchit/gswitchit.pc |
---|
609 | gswitchit/Makefile |
---|
610 | gswitchit/help/Makefile |
---|
611 | gswitchit/help/C/Makefile |
---|
612 | ]) |
---|