forked from devel-factory/xsane
- Rebase patches to include rh/gentoo/debian ones: A 001-xdg-open-as-default-browser.patch A 002-close-fds.patch A 004-ipv6-support.patch A 006-preview-selection.patch A 100-remove-non-working-help.patch A 101-xsane_fix_pdf_floats.patch A 200-fix_options_handling_fix.patch A 201-fix_pdf_xref.patch A 901-desktop-file.patch A 902-license-dialog.patch A 903-fix_broken_links.patch A 904-fix_message_typo.patch A 907-fix_spin_button_pagesize.patch A 908-no-file-selected.patch A 0005-m4.patch A 0010-fix_missing_sane-config.patch - Drop patches hanled in the above: D no-eula.patch D remove-non-working-help.patch D xdg-open-as-default-browser.patch D xsane_fix_pdf_floats.patch D xsane-desktop.patch - Add patch to build with lcms2 instead of lcms: * xsane-0.999-lcms2.patch OBS-URL: https://build.opensuse.org/request/show/511853 OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory/xsane?expand=0&rev=23
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
Description: add missing m4 tags
|
|
Author: Jörg Frings-Fürst <debian@jff-webhosting.net>
|
|
Last-Update: 2016-10-03
|
|
---
|
|
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
|
Index: trunk/configure.in
|
|
===================================================================
|
|
--- trunk.orig/configure.in
|
|
+++ trunk/configure.in
|
|
@@ -1,6 +1,7 @@
|
|
dnl Process this file with autoconf to produce a configure script. -*-sh-*-
|
|
AC_INIT(include/config.h.in)
|
|
AC_CONFIG_HEADER(include/config.h)
|
|
+AC_CONFIG_MACRO_DIRS([m4])
|
|
# AC_PREREQ(2.10)dnl dnl Minimum Autoconf version required.
|
|
# AC_ARG_PROGRAM
|
|
|
|
@@ -21,12 +22,15 @@ XSANE_PACKAGE_VERSION="$PACKAGE-$VERSION
|
|
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Define to the name of the distribution])
|
|
AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Define to the version of the distribution])
|
|
AC_DEFINE_UNQUOTED(XSANE_PACKAGE_VERSION, "$XSANE_PACKAGE_VERSION", [Define to name and version of distribution])
|
|
+AC_DEFINE([ENABLE_NLS], [], [Description])
|
|
+AC_DEFINE([HAVE_CATGETS], [], [Description])
|
|
+AC_DEFINE([HAVE_GETTEXT], [], [Description])
|
|
+AC_DEFINE([HAVE_LC_MESSAGES], [], [Description])
|
|
AC_SUBST(PACKAGE)
|
|
AC_SUBST(VERSION)
|
|
AC_SUBST(XSANE_PACKAGE_VERSION)
|
|
AC_SUBST(SANE_MAJOR)
|
|
|
|
-
|
|
dnl Check args
|
|
|
|
echo ""
|