Added option --enable-translations to configure. I18N support is

disabled by default.
Henning Meier-Geinitz <henning@meier-geinitz.de>
DEVEL_2_0_BRANCH-1
Henning Geinitz 2002-01-07 22:21:22 +00:00
rodzic 24d1202364
commit bdb2579640
3 zmienionych plików z 223 dodań i 202 usunięć

Wyświetl plik

@ -33,7 +33,7 @@ INSTALL_DATA = @INSTALL_DATA@
INSTALLED_INCLUDES = $(addprefix $(top_srcdir)/include/sane/,sane.h \
saneopts.h)
SUBDIRS = lib sanei backend frontend doc tools
SUBDIRS = lib sanei backend frontend doc tools po
all: all-recursive

414
configure vendored

Plik diff jest za duży Load Diff

Wyświetl plik

@ -337,6 +337,13 @@ AC_ARG_ENABLE(parport-directio,
fi
])
AC_ARG_ENABLE(translations,
[ --enable-translations install translations of backend options [default=no]],
INSTALL_TRANSLATIONS=install-translations,
INSTALL_TRANSLATIONS=
)
AC_SUBST(INSTALL_TRANSLATIONS)
AC_PATH_PROG(SANE_CONFIG_PATH, sane-config, no)
AC_CHECK_LIB(sane, sane_init, LIBSANE_EXISTS="yes")
@ -347,7 +354,7 @@ AC_SUBST(DLL_PRELOAD)
AC_OUTPUT([Makefile lib/Makefile sanei/Makefile frontend/Makefile
japi/Makefile backend/Makefile include/Makefile doc/Makefile
testsuite/Makefile
po/Makefile testsuite/Makefile
tools/Makefile tools/sane-config],)
if test "$SANE_CONFIG_PATH" != "no" ; then