author | Michael Krelin <hacker@klever.net> | 2006-09-26 19:21:57 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-09-26 19:21:57 (UTC) |
commit | c5ea6ff7abd6e376ae151c9724d24f6fe156766e (patch) (unidiff) | |
tree | 0df2e4ecf02f89c4b85d1950b5c6f4fd2f67f9bd /configure.ac | |
parent | 5207247fdc837ae9de1d81db903f6cd92532595e (diff) | |
download | fireflix-c5ea6ff7abd6e376ae151c9724d24f6fe156766e.zip fireflix-c5ea6ff7abd6e376ae151c9724d24f6fe156766e.tar.gz fireflix-c5ea6ff7abd6e376ae151c9724d24f6fe156766e.tar.bz2 |
Initial import into public repository0.0
git-svn-id: http://svn.klever.net/kin/fireflix/trunk@159 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | configure.ac | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..b76ae0f --- a/dev/null +++ b/configure.ac | |||
@@ -0,0 +1,28 @@ | |||
1 | AC_INIT([fireflix], [0.0], [fireflix-bugs@klever.net]) | ||
2 | AC_CONFIG_SRCDIR([install.rdf.in]) | ||
3 | AM_INIT_AUTOMAKE([dist-bzip2]) | ||
4 | AC_SUBST([MOZ_EXT_ID],[{4269f719-86de-4668-b8ad-04752c23a69e}]) | ||
5 | |||
6 | AC_PATH_PROG([ZIP],[zip],[false]) | ||
7 | if test "${ZIP}" = "false" ; then | ||
8 | AC_MSG_ERROR([zip is required to produce packaged extension]) | ||
9 | fi | ||
10 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) | ||
11 | |||
12 | AC_SUBST([xpidir],[\${top_builddir}/xpi]) | ||
13 | AC_SUBST([xpichromedir],[\${xpidir}/chrome]) | ||
14 | AC_SUBST([xpichromecontentdir],[\${xpichromedir}/content]) | ||
15 | AC_SUBST([xpichromelocaledir],[\${xpichromedir}/locale]) | ||
16 | |||
17 | COPYING="`sed -e 's/\\"/\\"/g' -e 's,$,<br/>,g' COPYING|tr '\n' ' '`" | ||
18 | AC_SUBST([COPYING]) | ||
19 | |||
20 | AC_CONFIG_FILES([ | ||
21 | Makefile | ||
22 | install.rdf | ||
23 | update.rdf | ||
24 | content/Makefile | ||
25 | content/autoconf.dtd | ||
26 | locale/Makefile | ||
27 | ]) | ||
28 | AC_OUTPUT | ||