You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
2.6 KiB

  1. --- a/configure.ac
  2. +++ b/configure.ac
  3. @@ -123,17 +123,6 @@ AC_MSG_RESULT($UINT32_TYPE)
  4. AC_DEFINE_UNQUOTED(UINT32_TYPE,$UINT32_TYPE,unsigned 32 bit integer type)
  5. dnl ----------------------------------------------------------------------
  6. -dnl Internationalization
  7. -
  8. -GETTEXT_PACKAGE=ccrypt
  9. -AC_SUBST(GETTEXT_PACKAGE)
  10. -AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Package name for gettext])
  11. -
  12. -AM_GNU_GETTEXT
  13. -AM_GNU_GETTEXT_VERSION([0.14.3])
  14. -IT_PO_SUBDIR(po)
  15. -
  16. -dnl ----------------------------------------------------------------------
  17. dnl Libtool (needed by intl/)
  18. LT_INIT
  19. @@ -153,9 +142,7 @@ AC_SUBST(TAR)
  20. dnl ----------------------------------------------------------------------
  21. AC_CONFIG_FILES([doc/ccrypt.1
  22. doc/ccguess.1
  23. - po/Makefile.in
  24. m4/Makefile
  25. - intl/Makefile
  26. Makefile
  27. src/Makefile
  28. emacs/Makefile
  29. --- a/Makefile.am
  30. +++ b/Makefile.am
  31. @@ -4,7 +4,7 @@
  32. ## Process this file with automake to produce Makefile.in
  33. -SUBDIRS = m4 po intl src emacs doc check
  34. +SUBDIRS = m4 src emacs doc check
  35. EXTRA_DIST = m4/ChangeLog config.rpath README-WIN
  36. --- a/Makefile.in
  37. +++ b/Makefile.in
  38. @@ -36,7 +36,7 @@ host_triplet = @host@
  39. subdir = .
  40. DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
  41. $(srcdir)/Makefile.in $(srcdir)/config.h.in \
  42. - $(top_srcdir)/configure $(top_srcdir)/intl/Makefile.in \
  43. + $(top_srcdir)/configure \
  44. ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS config.guess \
  45. config.rpath config.sub depcomp elisp-comp install-sh \
  46. ltmain.sh missing mkinstalldirs
  47. @@ -66,7 +66,7 @@ am__CONFIG_DISTCLEAN_FILES = config.stat
  48. configure.lineno config.status.lineno
  49. mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  50. CONFIG_HEADER = config.h
  51. -CONFIG_CLEAN_FILES = intl/Makefile
  52. +CONFIG_CLEAN_FILES =
  53. CONFIG_CLEAN_VPATH_FILES =
  54. SOURCES =
  55. DIST_SOURCES =
  56. @@ -277,7 +277,7 @@ target_alias = @target_alias@
  57. top_build_prefix = @top_build_prefix@
  58. top_builddir = @top_builddir@
  59. top_srcdir = @top_srcdir@
  60. -SUBDIRS = m4 po intl src emacs doc check
  61. +SUBDIRS = m4 src emacs doc check
  62. EXTRA_DIST = m4/ChangeLog config.rpath README-WIN
  63. ACLOCAL_AMFLAGS = -I m4
  64. all: config.h
  65. --- a/src/Makefile.am
  66. +++ b/src/Makefile.am
  67. @@ -56,4 +56,4 @@ uninstall-local:
  68. # internationalization stuff
  69. localedir = $(datadir)/locale
  70. INCLUDES = -I../intl -I$(top_srcdir)/intl -DLOCALEDIR=\"$(localedir)\"
  71. -LIBS = @LIBINTL@ @LIBS@
  72. +LIBS = @LIBS@
  73. --- a/src/Makefile.in
  74. +++ b/src/Makefile.in
  75. @@ -159,7 +159,7 @@ LDFLAGS = @LDFLAGS@
  76. LIBICONV = @LIBICONV@
  77. LIBINTL = @LIBINTL@
  78. LIBOBJS = @LIBOBJS@
  79. -LIBS = @LIBINTL@ @LIBS@
  80. +LIBS = @LIBS@
  81. LIBTOOL = @LIBTOOL@
  82. LIPO = @LIPO@
  83. LN_S = @LN_S@