Erik Grinaker is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this againRevelation / configure.ac
- commit
- cdaef80a065f
- parent
- 1e8d1627dc15
- branch
- default
- tags
- revelation-0.4.9
don't include built config.py during make dist
1 |
1c96b7e48232
|
dnl |
2 |
1c96b7e48232
|
dnl configure.ac |
3 |
1c96b7e48232
|
dnl |
4 |
1c96b7e48232
|
dnl $Id$ |
5 |
1c96b7e48232
|
dnl |
6 |
1c96b7e48232
|
|
7 |
94cc26e5e65d
|
dnl initialize autoconf/automake |
8 |
a207757f8451
|
AC_PREREQ(2.53) |
9 |
a207757f8451
|
AC_INIT(src/revelation.in) |
10 |
b5fc6590ef34
|
AM_INIT_AUTOMAKE(revelation, 0.4.8) |
11 |
35e27bc78f73
|
ALL_LINGUAS="de fr sv zh" |
12 |
94cc26e5e65d
|
|
13 |
a207757f8451
|
dnl check for dependencies |
14 |
5d99fc2aa75a
|
AC_PROG_CC() |
15 |
ca2af4e02c4c
|
|
16 |
13a32d3a5428
|
RVL_PYTHON_PATH(2.3) |
17 |
ca2af4e02c4c
|
RVL_PYGTK() |
18 |
f7e311e828af
|
RVL_GETTEXT() |
19 |
bffe619c6cec
|
RVL_CRACKLIB() |
20 |
29289dada9c3
|
RVL_MMAN() |
21 |
ab267e8bc63d
|
RVL_GCONF() |
22 |
ab267e8bc63d
|
RVL_FDO_MIME() |
23 |
9be42a38f988
|
|
24 |
2714cd3c4492
|
RVL_PYTHON_MODULE(Crypto, yes) |
25 |
2714cd3c4492
|
RVL_PYTHON_MODULE(bonobo, yes) |
26 |
2714cd3c4492
|
RVL_PYTHON_MODULE(gconf, yes) |
27 |
2714cd3c4492
|
RVL_PYTHON_MODULE(gtk, yes) |
28 |
2714cd3c4492
|
RVL_PYTHON_MODULE(gnome, yes) |
29 |
bd6721231fe8
|
RVL_PYTHON_MODULE(gnomeapplet, yes) |
30 |
bd6721231fe8
|
RVL_PYTHON_MODULE(gnomevfs, yes) |
31 |
2714cd3c4492
|
RVL_PYTHON_MODULE(gobject, yes) |
32 |
2714cd3c4492
|
RVL_PYTHON_MODULE(pango, yes) |
33 |
2714cd3c4492
|
|
34 |
a207757f8451
|
|
35 |
a207757f8451
|
dnl output files |
36 |
a207757f8451
|
AC_OUTPUT([ |
37 |
a207757f8451
|
Makefile |
38 |
a207757f8451
|
data/Makefile |
39 |
e5681e842641
|
data/bonobo/Makefile |
40 |
1c96b7e48232
|
data/cracklib/Makefile |
41 |
1c96b7e48232
|
data/gconf/Makefile |
42 |
a09619f1f68c
|
data/icons/Makefile |
43 |
3dcf95408d8d
|
data/icons/16x16/Makefile |
44 |
67d9e9983ed8
|
data/icons/24x24/Makefile |
45 |
67d9e9983ed8
|
data/icons/32x32/Makefile |
46 |
3dcf95408d8d
|
data/icons/48x48/Makefile |
47 |
5d85e4e10813
|
data/mime/Makefile |
48 |
086abbb6fc3c
|
data/ui/Makefile |
49 |
f7e311e828af
|
po/Makefile.in |
50 |
a207757f8451
|
src/Makefile |
51 |
b0d11bf9eca4
|
src/bundle/Makefile |
52 |
a207757f8451
|
src/lib/Makefile |
53 |
a207757f8451
|
src/lib/datahandler/Makefile |
54 |
1c56d7845099
|
src/wrap/Makefile |
55 |
1c56d7845099
|
src/wrap/crack/Makefile |
56 |
a207757f8451
|
]) |
57 |
a207757f8451
|