mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Add automake support for dtl
This commit is contained in:
parent
c3bf053dd3
commit
2aff8937ec
6
3rdparty/Makefile.am
vendored
6
3rdparty/Makefile.am
vendored
@ -25,7 +25,11 @@ if USE_INCLUDED_ZLIB
|
|||||||
ZLIB = zlib
|
ZLIB = zlib
|
||||||
endif
|
endif
|
||||||
|
|
||||||
SUBDIRS = $(BOOST) $(HUNSPELL) $(MYTHES) $(ICONV) $(ZLIB)
|
if BUILD_INCLUDED_DTL
|
||||||
|
DTL=dtl
|
||||||
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = $(BOOST) $(DTL) $(HUNSPELL) $(MYTHES) $(ICONV) $(ZLIB)
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
scripts/evince_sync/evince_backward_search \
|
scripts/evince_sync/evince_backward_search \
|
||||||
|
24
3rdparty/dtl/Makefile.am
vendored
Normal file
24
3rdparty/dtl/Makefile.am
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
include $(top_srcdir)/config/common.am
|
||||||
|
|
||||||
|
man1_MANS = dt2dv.man dv2dt.man
|
||||||
|
|
||||||
|
bin_PROGRAMS = dt2dv dv2dt
|
||||||
|
|
||||||
|
EXTRA_DIST = \
|
||||||
|
ChangeLog-LyX \
|
||||||
|
CMakeLists.txt \
|
||||||
|
dtl.doc \
|
||||||
|
dvi.doc \
|
||||||
|
edited.txt \
|
||||||
|
example.tex \
|
||||||
|
hello.tex \
|
||||||
|
man2ps \
|
||||||
|
README \
|
||||||
|
tripvdu.tex
|
||||||
|
|
||||||
|
HEADERFILES = dtl.h
|
||||||
|
|
||||||
|
dt2dv_SOURCES = dt2dv.c $(HEADERFILES)
|
||||||
|
|
||||||
|
dv2dt_SOURCES = dv2dt.c $(HEADERFILES)
|
||||||
|
|
@ -607,6 +607,21 @@ dnl prevent clash with system zlib that might be dragged in by other libs
|
|||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
dnl Usage: LYX_BUILD_INCLUDED_DTL : select if the included dtl should
|
||||||
|
dnl be built and installed.
|
||||||
|
AC_DEFUN([LYX_BUILD_INCLUDED_DTL],[
|
||||||
|
AC_MSG_CHECKING([whether to build dv2dt and dt2dv])
|
||||||
|
AC_ARG_WITH(included-dtl,
|
||||||
|
[AS_HELP_STRING([--with-included-dtl], [build and install the dv2dt and dt2dv programs supplied with LyX])],
|
||||||
|
[lyx_cv_with_included_dtl=$withval],
|
||||||
|
[lyx_cv_with_included_dtl=no])
|
||||||
|
AM_CONDITIONAL(BUILD_INCLUDED_DTL, test x$lyx_cv_with_included_dtl = xyes)
|
||||||
|
AC_MSG_RESULT([$lyx_cv_with_included_dtl])
|
||||||
|
if test x$lyx_cv_with_included_dtl = xyes ; then
|
||||||
|
lyx_flags="$lyx_flags build-dtl"
|
||||||
|
fi])
|
||||||
|
|
||||||
|
|
||||||
dnl Usage: LYX_CHECK_CALLSTACK_PRINTING: define LYX_CALLSTACK_PRINTING if the
|
dnl Usage: LYX_CHECK_CALLSTACK_PRINTING: define LYX_CALLSTACK_PRINTING if the
|
||||||
dnl necessary APIs are available to print callstacks.
|
dnl necessary APIs are available to print callstacks.
|
||||||
AC_DEFUN([LYX_CHECK_CALLSTACK_PRINTING],
|
AC_DEFUN([LYX_CHECK_CALLSTACK_PRINTING],
|
||||||
|
@ -129,6 +129,9 @@ LYX_USE_INCLUDED_ICONV
|
|||||||
### check for compression support
|
### check for compression support
|
||||||
LYX_USE_INCLUDED_ZLIB
|
LYX_USE_INCLUDED_ZLIB
|
||||||
|
|
||||||
|
### check whether we build and install the supplied dtl programs
|
||||||
|
LYX_BUILD_INCLUDED_DTL
|
||||||
|
|
||||||
### check for file magic support (currently optional)
|
### check for file magic support (currently optional)
|
||||||
AC_CHECK_HEADERS(magic.h,
|
AC_CHECK_HEADERS(magic.h,
|
||||||
[AC_CHECK_LIB(magic, magic_open, [LIBS="$LIBS -lmagic"],
|
[AC_CHECK_LIB(magic, magic_open, [LIBS="$LIBS -lmagic"],
|
||||||
@ -331,6 +334,7 @@ AC_CONFIG_FILES([Makefile \
|
|||||||
lyx.1:lyx.1in \
|
lyx.1:lyx.1in \
|
||||||
3rdparty/Makefile \
|
3rdparty/Makefile \
|
||||||
3rdparty/boost/Makefile \
|
3rdparty/boost/Makefile \
|
||||||
|
3rdparty/dtl/Makefile \
|
||||||
3rdparty/hunspell/Makefile \
|
3rdparty/hunspell/Makefile \
|
||||||
3rdparty/mythes/Makefile \
|
3rdparty/mythes/Makefile \
|
||||||
3rdparty/libiconv/Makefile \
|
3rdparty/libiconv/Makefile \
|
||||||
|
Loading…
Reference in New Issue
Block a user