Commit | Line | Data |
---|---|---|
2c453b37 | 1 | AC_PREREQ([2.57]) |
9bf8adf4 | 2 | AC_INIT(lxde-common,[0.2.99], [],lxde-common) |
2c453b37 HJYP |
3 | AM_INIT_AUTOMAKE([dist-bzip2]) |
4 | dnl AC_PROG_INTLTOOL(, [no-xml]) | |
5 | AM_MAINTAINER_MODE | |
6 | ||
7 | dnl AM_CONFIG_HEADER(config.h) | |
8 | ||
9 | AC_PROG_INSTALL | |
10 | dnl AM_PROG_CC_C_O | |
11 | ||
12 | dnl GETTEXT_PACKAGE=lxde | |
13 | dnl AM_GNU_GETTEXT([external]) | |
14 | dnl AM_GNU_GETTEXT_VERSION(0.14.1) | |
15 | dnl AC_SUBST(GETTEXT_PACKAGE) | |
16 | dnl AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.]) | |
17 | ||
18 | dnl ALL_LINGUAS="zh_TW hu es sk pl" | |
19 | dnl AM_GLIB_GNU_GETTEXT | |
20 | ||
c9052001 FC |
21 | # xsessions data of path for GDM |
22 | AC_ARG_WITH([xsession-path], | |
23 | AS_HELP_STRING( | |
24 | [--with-xsession-path=PATH], | |
25 | [set the install path of xsession data (default=/usr/share/xsessions)]), | |
26 | [test x$withval != x && xsesspath="$withval"], | |
27 | [xsesspath=/usr/share/xsessions]) | |
28 | AC_SUBST(xsesspath) | |
29 | ||
2c453b37 HJYP |
30 | AC_OUTPUT([ |
31 | Makefile | |
32 | startlxde | |
b8af2bb2 | 33 | default |
e559e0dd | 34 | lxde-logout |
2c453b37 | 35 | LXDE.desktop |
b8af2bb2 | 36 | lxpanel/config |
9b8d9fdb | 37 | openbox/rc.xml |
16d76acb | 38 | pcmanfm/main.lxde |
2c453b37 HJYP |
39 | ]) |
40 |