1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT([poedit], [1.3.5], [vslavik@fastmail.fm])
AC_CONFIG_AUX_DIR([admin])
AC_CONFIG_SRCDIR([README])
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
dnl cross-compiling support: we're cross compiling if the build system is
dnl different from the target one (assume host and target be always the same)
if test "$build" != "$host" ; then
CC=$host_alias-gcc
CXX=$host_alias-c++
AR=$host_alias-ar
RANLIB=$host_alias-ranlib
DLLTOOL=$host_alias-dlltool
RESCOMP=$host_alias-windres
LD=$host_alias-ld
NM=$host_alias-nm
STRIP=$host_alias-strip
else
RESCOMP=windres
fi
AM_INIT_AUTOMAKE(1.6)
AM_MAINTAINER_MODE
AM_OPTIONS_WXCONFIG
AC_ARG_ENABLE(transmem,
AS_HELP_STRING([--enable-transmem],
[Enable translation memory (default: yes)]),
USE_TRANSMEM="$enableval", USE_TRANSMEM="yes")
AC_ARG_ENABLE(spellchecking,
AS_HELP_STRING([--enable-spellchecking],
[Enable spell checking (default: yes)]),
USE_SPELLCHECKING="$enableval", USE_SPELLCHECKING="yes")
AC_ARG_ENABLE(debug,
AS_HELP_STRING([--enable-debug],
[Enable debugging information]),
USE_DEBUG="$enableval", USE_DEBUG="no")
AC_MSG_CHECKING(for install location)
case "$prefix" in
NONE) AC_CACHE_VAL(m_cv_prefix,m_cv_prefix=$ac_default_prefix);;
*) m_cv_prefix=$prefix ;;
esac
AC_MSG_RESULT($m_cv_prefix)
case "$m_cv_prefix" in /*) ;; *)
AC_MSG_WARN([--prefix=$prefix must be an absolute path name, using $ac_default_prefix])
m_cv_prefix=$ac_default_prefix
esac
prefix=$m_cv_prefix
dnl Checks for programs.
AC_PROG_AWK
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_RANLIB
AC_PROG_CC
AC_PROG_CXX
AC_PROG_CXXCPP
AC_LANG_CPLUSPLUS
case "$USE_DEBUG" in
yes) DEBUG_FLAGS="-g -Wall -O0"
;;
esac
AM_PATH_WXCONFIG([2.6.0],
[WXFOUND=1], [WXFOUND=0],
[xrc,html,xml,adv,core], [--unicode])
if test "$WXFOUND" != 1; then
AC_MSG_ERROR([
Please check that wx-config is in path, the directory
where wxWindows libraries are installed (returned by
'wx-config --libs' command) is in LD_LIBRARY_PATH or
equivalent variable and wxWindows is version 2.6.0 or above.
])
fi
dnl Check if wxWidgets includes XRC library and if it does, don't build it
dnl ourselves:
AC_MSG_CHECKING([if wxWidgets includes XRC])
saved_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS"
AC_TRY_COMPILE([#include <wx/defs.h>],
[
#if !defined(wxUSE_XRC) || !wxUSE_XRC
#error "XRC not compiled in"
#endif
],
[
AC_MSG_RESULT([yes])
],
[
AC_MSG_RESULT([no])
AC_MSG_ERROR([XRC is required to build poedit!])
])
CXXFLAGS="$saved_CXXFLAGS"
CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS"
AC_ARG_VAR(WXRC, Path to wxrc resource compiler)
AC_MSG_CHECKING([for wxrc])
if test "x$WXRC" = x ; then
WXRC=`$WX_CONFIG_WITH_ARGS --utility=wxrc`
if test "x$WXRC" = x ; then
AC_MSG_RESULT([not found])
AC_MSG_ERROR([wxrc is needed to compile poEdit.])
fi
fi
AC_MSG_RESULT([$WXRC])
if test "$USE_SPELLCHECKING" != "no" ; then
dnl we need GtkSpell and GTK+ 2.x for this, check if we're compatible
PKG_CHECK_MODULES([GTKSPELL], [gtkspell-2.0],
[
AC_MSG_CHECKING([if wxWidgets toolkit uses GTK+ 2])
AC_TRY_COMPILE([#include <wx/defs.h>],
[
#ifndef __WXGTK20__
#error "not GTK+ 2"
#endif
],
[
AC_MSG_RESULT([yes])
CXXFLAGS="$CXXFLAGS $GTKSPELL_CFLAGS"
LIBS="$LIBS $GTKSPELL_LIBS"
AC_DEFINE(USE_SPELLCHECKING)
],
[
AC_MSG_RESULT([no])
USE_SPELLCHECKING="no"
AC_MSG_WARN([disabling spellchecking because GTK+ 2 is required by it])
])
],
[
USE_SPELLCHECKING="no"
AC_MSG_WARN([disabling spellchecking because GtkSpell is missing])
])
fi
if $WX_CONFIG_WITH_ARGS --cxxflags | grep -q WXMSW; then
use_windows=yes
changequote(<<,>>)
RC_WX_INCLUDES=`echo " $WX_CPPFLAGS" | sed -e 's/ -[^I][^ ]*//g' | sed -e 's/ -I\([^ ]*\)/ --include-dir \1/g'`
changequote([,])
else
use_windows=no
fi
AM_CONDITIONAL(USE_WINDOWS, test $use_windows = yes)
if test x$USE_TRANSMEM != xno ; then
AX_BERKELEY_DB(3.1,
[
AC_DEFINE(USE_TRANSMEM)
AC_DEFINE_UNQUOTED(DB_HEADER, ["$DB_HEADER"])
LIBS="$LIBS $DB_LIBS"
AC_MSG_CHECKING([if db_open requires transaction argument])
AC_TRY_COMPILE([#include "$DB_HEADER"],
[
DB *db;
DBTYPE type;
db->open(db, "foo", NULL, type, DB_CREATE, 0);
],
[
AC_MSG_RESULT(no)
],
[
AC_MSG_RESULT(yes)
CXXFLAGS="$CXXFLAGS -DDB_OPEN_WITH_TRANSACTION"
])
],
[
USE_TRANSMEM=no
AC_MSG_WARN([cannot find Berkeley DB >= 3.1, poEdit will build w/o translation memory feature])
])
fi
CATALOGS_TO_INSTALL="install-poedit-catalogs"
CXXFLAGS="$CXXFLAGS $DEBUG_FLAGS \"-DPOEDIT_PREFIX=\\\"$prefix\\\"\""
AC_SUBST(LDFLAGS)
AC_SUBST(CFLAGS)
AC_SUBST(CXXFLAGS)
AC_SUBST(RESCOMP)
AC_SUBST(WX_CONFIG_WITH_ARGS)
AC_SUBST(WX_LIBS)
AC_SUBST(RC_WX_INCLUDES)
AC_SUBST(CATALOGS_TO_INSTALL)
AC_CONFIG_FILES([
Makefile
src/Makefile
src/icons/Makefile
locales/Makefile
docs/Makefile
docs/common/Makefile
docs/en/Makefile
docs/hr/Makefile
install/Makefile
macosx/Info.plist
])
AC_OUTPUT
echo "
Configured $PACKAGE-$VERSION for $host
debugging information: $USE_DEBUG
translation memory: $USE_TRANSMEM
spellchecking: $USE_SPELLCHECKING
"
|