1999-10-05 09:17:15 +00:00
|
|
|
dnl Process with autoconf to generate configure script -*- sh -*-
|
2002-08-10 12:26:23 +00:00
|
|
|
AC_INIT
|
|
|
|
AC_CONFIG_SRCDIR(reLyX.in)
|
2002-09-10 15:00:40 +00:00
|
|
|
AC_PREREQ(2.52)
|
1999-10-12 14:08:52 +00:00
|
|
|
AC_CONFIG_AUX_DIR(../../config)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-01-10 16:28:29 +00:00
|
|
|
dnl PACKAGE=reLyX
|
|
|
|
dnl Do this to install in $datadir/lyx/reLyX instead of $datadir/reLyX/reLyX
|
|
|
|
|
2001-03-05 11:54:00 +00:00
|
|
|
AC_ARG_WITH(version-suffix,
|
|
|
|
[ --with-version-suffix[=<version>] install lyx files as lyx<version>],
|
|
|
|
[lyxname="lyx$withval"
|
|
|
|
program_suffix=$withval],
|
2001-01-24 13:52:04 +00:00
|
|
|
[lyxname=lyx])
|
2000-01-10 16:28:29 +00:00
|
|
|
|
|
|
|
dnl must make a macro that gets the reLyX version
|
|
|
|
VERSION=2.0
|
|
|
|
AM_INIT_AUTOMAKE($lyxname, $VERSION)
|
|
|
|
|
2000-06-08 13:55:33 +00:00
|
|
|
# if reLyX has already been generated in this directory, delete it first
|
|
|
|
test -x reLyX && rm -f reLyX
|
1999-11-18 11:42:36 +00:00
|
|
|
# fix the value of the prefixes.
|
|
|
|
test "x$prefix" = xNONE && prefix=$ac_default_prefix
|
|
|
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
|
|
|
|
2000-01-26 13:16:41 +00:00
|
|
|
# we need to expand ${datadir} to put it into the reLyX wrapper.
|
|
|
|
LYX_DIR=`eval "echo \`eval \"echo ${datadir}/${PACKAGE}\"\`"`
|
|
|
|
AC_SUBST(LYX_DIR)
|
|
|
|
|
2000-06-26 15:33:13 +00:00
|
|
|
# Work around a problem in automake 1.4: when invoking install-strip,
|
|
|
|
# INSTALL_PROGRAM is changed to 'install -s', and since
|
|
|
|
# INSTALL_SCRIPT==INSTALL_PROGRAM, we get errors with fileutils-4.0
|
|
|
|
# which returns an error condition when stripping fails.
|
|
|
|
INSTALL_SCRIPT='${INSTALL}'
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
dnl Checks for programs.
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
RELYX_CHECK_PERL
|
|
|
|
|
1999-10-05 09:17:15 +00:00
|
|
|
dnl Finish the work
|
2002-08-07 22:45:38 +00:00
|
|
|
AC_CONFIG_FILES(Makefile reLyX noweb2lyx, chmod 755 reLyX noweb2lyx)
|
|
|
|
AC_OUTPUT
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
RELYX_CHECK_ERRORS
|