15 |
|
|
16 |
# Version number: Remember to change it immediately *after* a release. |
# Version number: Remember to change it immediately *after* a release. |
17 |
# Add a "-cvs" prefix for non-released code. |
# Add a "-cvs" prefix for non-released code. |
18 |
AC_INIT(WinPT, 0.11.0-cvs, http://www.winpt.org) |
AC_INIT(WinPT, 0.11.5-cvs, http://www.winpt.org) |
|
|
|
19 |
NEED_GPGME_API=1 |
NEED_GPGME_API=1 |
20 |
NEED_GPGME_VERSION=1.1.0 |
NEED_GPGME_VERSION=1.1.1 |
21 |
NEED_GPG_ERROR_VERSION=1.2 |
NEED_GPG_ERROR_VERSION=1.2 |
22 |
|
|
23 |
PACKAGE=$PACKAGE_NAME |
PACKAGE=$PACKAGE_NAME |
24 |
PACKAGE_GT=${PACKAGE_NAME} |
PACKAGE_GT=${PACKAGE_NAME} |
25 |
VERSION=$PACKAGE_VERSION |
VERSION=$PACKAGE_VERSION |
26 |
|
|
27 |
AC_CONFIG_SRCDIR(src/WinPT.cpp) |
AC_CONFIG_SRCDIR(Src/WinPT.cpp) |
28 |
AM_CONFIG_HEADER(config.h) |
AM_CONFIG_HEADER(config.h) |
29 |
AC_CANONICAL_TARGET() |
AC_CANONICAL_TARGET() |
30 |
AM_INIT_AUTOMAKE($PACKAGE, $VERSION) |
AM_INIT_AUTOMAKE |
31 |
|
AM_MKINSTALLDIRS |
32 |
|
|
33 |
AC_GNU_SOURCE |
AC_GNU_SOURCE |
34 |
|
|
51 |
changequote([,])dnl |
changequote([,])dnl |
52 |
AC_SUBST(BUILD_FILEVERSION) |
AC_SUBST(BUILD_FILEVERSION) |
53 |
|
|
54 |
|
# For the distcheck target of make we need to set a few options for |
55 |
|
# the cross compiling environment. We assume the same conevtion as |
56 |
|
# used in autogen.sh; i.e. we take the root from the $w32root variable |
57 |
|
# or default to ~/w32root. |
58 |
|
if test -n "$w32root"; then |
59 |
|
W32ROOT="$w32root" |
60 |
|
else |
61 |
|
W32ROOT="$HOME/w32root" |
62 |
|
fi |
63 |
|
AC_SUBST(W32ROOT) |
64 |
|
|
65 |
|
|
66 |
AH_BOTTOM([ |
AH_BOTTOM([ |
67 |
/* Some global constants. */ |
/* Some global constants. */ |
68 |
|
|
69 |
/* Set to distinguish between the old custom Makefile based build |
/* Set to distinguish between the old custom Makefile based build |
70 |
system and our new automake based one. */ |
system and our new automake based one. This is only required in |
71 |
|
Include/wptVersion.h. Fixme: See whether we may define the constants |
72 |
|
there by means of command line apssed args or similar. */ |
73 |
#define WINPT_MODERN_BUILD 1 |
#define WINPT_MODERN_BUILD 1 |
74 |
|
|
75 |
|
/* We need to include this header to be able to include specific parts |
76 |
|
of the header files. For now we require at least Internet Exploder |
77 |
|
4.01 to be installed. */ |
78 |
|
#include <w32api.h> |
79 |
|
#define _WIN32_IE IE401 |
80 |
|
|
81 |
]) |
]) |
82 |
|
|
83 |
AM_MAINTAINER_MODE |
AM_MAINTAINER_MODE |
133 |
;; |
;; |
134 |
esac |
esac |
135 |
|
|
136 |
|
|
137 |
|
AH_BOTTOM([ |
138 |
|
/* Force using of NLS for W32 even if no libintl has been found. This is |
139 |
|
okay because we have our own gettext implementation for W32. */ |
140 |
|
#if defined(HAVE_W32_SYSTEM) && !defined(ENABLE_NLS) |
141 |
|
#define ENABLE_NLS 1 |
142 |
|
#endif |
143 |
|
]) |
144 |
|
|
145 |
|
# Note, that autogen.sh greps for the next line. |
146 |
|
AM_GNU_GETTEXT_VERSION(0.12.1) |
147 |
|
AM_GNU_GETTEXT([external]) |
148 |
|
# There is something wrong with the NLS checking here. We force using it. |
149 |
|
USE_NLS=yes |
150 |
|
|
151 |
if test "$have_dosish_system" = yes; then |
if test "$have_dosish_system" = yes; then |
152 |
AC_DEFINE(HAVE_DOSISH_SYSTEM,1, |
AC_DEFINE(HAVE_DOSISH_SYSTEM,1, |
153 |
[Defined if we run on some of the PCDOS like systems |
[Defined if we run on some of the PCDOS like systems |
248 |
Src/Makefile |
Src/Makefile |
249 |
Src/versioninfo.rc |
Src/versioninfo.rc |
250 |
Include/Makefile |
Include/Makefile |
251 |
Ico/Makefile |
icons/Makefile |
252 |
m4/Makefile |
m4/Makefile |
|
w32gpgme/Makefile |
|
253 |
Gnupg/Makefile |
Gnupg/Makefile |
254 |
|
Po/Makefile.in |
255 |
]) |
]) |
256 |
AC_OUTPUT |
AC_OUTPUT |