Mercurial > geeqie
annotate configure.in @ 78:b192a0efe080
Sun Oct 15 12:36:06 2006 John Ellis <johne@verizon.net>
* pan-view.c: For now, also display the full size image under the
thumbnail's information bubble. Make clicking the info box close it.
author | gqview |
---|---|
date | Sun, 15 Oct 2006 16:39:19 +0000 |
parents | 56f62cdde8e0 |
children | d063f97503b7 |
rev | line source |
---|---|
1 | 1 AC_INIT(src/main.c) |
8 | 2 AC_CONFIG_HEADER(config.h) |
7 | 3 |
74
c9d553df8d25
Sat Oct 14 09:38:08 2006 John Ellis <johne@verizon.net>
gqview
parents:
67
diff
changeset
|
4 AM_INIT_AUTOMAKE(gqview, 2.1.2) |
1 | 5 |
6 AM_MAINTAINER_MODE | |
7 | |
8 AC_ISC_POSIX | |
9 AC_PROG_CC | |
10 AC_STDC_HEADERS | |
11 AC_ARG_PROGRAM | |
12 | |
13 dnl reasonable guesses for where stuff is installed | |
14 if test "x$prefix" = "xNONE"; then | |
15 prefix="/usr/local" | |
16 else | |
17 prefix=$prefix | |
18 fi | |
19 | |
8 | 20 AM_PATH_GTK_2_0(2.4.0,,AC_MSG_ERROR(GTK+ >= 2.4.0 not installed.)) |
1 | 21 |
10 | 22 AC_DEFINE_UNQUOTED(GQVIEW_HELPDIR, "$prefix/share/doc/gqview-$VERSION", [Location of documentation files]) |
8 | 23 AC_DEFINE_UNQUOTED(GQVIEW_HTMLDIR, "$prefix/share/doc/gqview-$VERSION/html", [Location of html documentation]) |
1 | 24 |
8 | 25 dnl checks for functions |
26 AC_CHECK_FUNCS(strverscmp) | |
1 | 27 |
75
56f62cdde8e0
Sun Oct 15 02:50:22 2006 John Ellis <johne@verizon.net>
gqview
parents:
74
diff
changeset
|
28 ALL_LINGUAS="ar be bg ca cs da de es et eu fi fr hu id it ja ko nl no pl pt_BR ro ru sk sl sv th tr uk vi zh_CN.GB2312 zh_TW" |
8 | 29 GETTEXT_PACKAGE=$PACKAGE |
30 AC_SUBST(GETTEXT_PACKAGE) | |
31 AM_GLIB_GNU_GETTEXT | |
10 | 32 AM_GLIB_DEFINE_LOCALEDIR(GQVIEW_LOCALEDIR) |
1 | 33 |
34 AC_SUBST(CFLAGS) | |
35 AC_SUBST(CPPFLAGS) | |
36 AC_SUBST(LDFLAGS) | |
37 | |
38 AC_OUTPUT([ | |
39 Makefile | |
40 src/Makefile | |
41 src/icons/Makefile | |
8 | 42 po/Makefile.in |
43 doc/Makefile | |
44 gqview.spec | |
1 | 45 ]) |
8 | 46 |