missing-macros: extend fake-gtk-doc-check.m4 (fixes autoreconf in orbit2), provide fake-intltool.m4
SVN-Revision: 24787
This commit is contained in:
parent
879e5891c1
commit
aac7b92284
4 changed files with 29 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=missing-macros
|
||||
PKG_VERSION:=5
|
||||
PKG_VERSION:=6
|
||||
|
||||
include $(INCLUDE_DIR)/host-build.mk
|
||||
|
||||
|
|
|
@ -65,3 +65,7 @@ From OpenWrt:
|
|||
Always disable GTK docs.
|
||||
|
||||
fake-gtk-doc-check.m4
|
||||
|
||||
Provide intltool.m4 stubs to allow for autoreconf.
|
||||
|
||||
fake-intltool.m4
|
||||
|
|
|
@ -2,4 +2,11 @@ dnl fake-gtk-doc-check.m4 serial 1 (OpenWrt)
|
|||
dnl Provide a fake GTK_DOC_CHECK macros which
|
||||
dnl always defines false.
|
||||
|
||||
AC_DEFUN([GTK_DOC_CHECK],[AM_CONDITIONAL(ENABLE_GTK_DOC,false)])
|
||||
AC_DEFUN([GTK_DOC_CHECK],
|
||||
[
|
||||
AM_CONDITIONAL([ENABLE_GTK_DOC], [false])
|
||||
AM_CONDITIONAL([GTK_DOC_BUILD_HTML], [false])
|
||||
AM_CONDITIONAL([GTK_DOC_BUILD_PDF], [false])
|
||||
AM_CONDITIONAL([GTK_DOC_USE_LIBTOOL], [false])
|
||||
AM_CONDITIONAL([GTK_DOC_USE_REBASE], [false])
|
||||
])
|
||||
|
|
16
tools/missing-macros/src/m4/fake-intltool.m4
Normal file
16
tools/missing-macros/src/m4/fake-intltool.m4
Normal file
|
@ -0,0 +1,16 @@
|
|||
# stripped intltool.m4 to make automake happy
|
||||
# serial 1
|
||||
AC_DEFUN([IT_PROG_INTLTOOL],
|
||||
[
|
||||
AC_SUBST(ALL_LINGUAS)
|
||||
|
||||
DATADIRNAME=share
|
||||
AC_SUBST(DATADIRNAME)
|
||||
])
|
||||
|
||||
# deprecated macros
|
||||
AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
|
||||
|
||||
# A hint is needed for aclocal from Automake <= 1.9.4:
|
||||
# AC_DEFUN([AC_PROG_INTLTOOL], ...)
|
||||
|
Loading…
Reference in a new issue