mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-25 05:55:34 +00:00
Two configuration fixes. Bugfree configure is coming soon (do you really believe in that??)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@323 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
55ceca472b
commit
49b9dbdf10
29
ChangeLog
29
ChangeLog
@ -1,5 +1,34 @@
|
||||
1999-11-18 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* src/{insets,mathed}/Makefile.am: do not declare an empty
|
||||
LDFLAGS, so that it can be set at configure time (useful on Irix
|
||||
for -n32 flag).
|
||||
|
||||
* lib/reLyX/configure.in: make sure that the prefix is set
|
||||
correctly in LYX_DIR.
|
||||
|
||||
1999-11-18 Andre' Poenitz <poenitz@mathematik.tu-chemnitz.de>
|
||||
|
||||
* src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
|
||||
be used by 'command-sequence' this allows to bind a key to a
|
||||
sequence of LyX-commands
|
||||
(Example: 'command-sequence math-insert alpha; math-insert beta;")
|
||||
|
||||
* src/LyXAction.C: add "command-sequence"
|
||||
|
||||
* src/LyXFunction.C: handling of "command-sequence"
|
||||
|
||||
* src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
|
||||
&cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
|
||||
|
||||
* src/lyxserver.C, src/minibuffer.C: Use this new interface
|
||||
|
||||
1999-11-17 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* src/buffer.C (writeFile): Do not output a comment givinf user
|
||||
and date at the beginning of a .lyx file. This is useless and
|
||||
annoys cvs anyway; update version number to 1.1.
|
||||
|
||||
* src/Makefile.am (LYX_DIR): add this definition, so that a
|
||||
default path is hardcoded in LyX.
|
||||
|
||||
|
@ -1,9 +1,13 @@
|
||||
dnl Process with autoconf to generate configure script -*- sh -*-
|
||||
AC_INIT(reLyX.in)
|
||||
AC_PREREQ(2.13) dnl We want to use autoconf 2.13
|
||||
AC_PREFIX_PROGRAM(reLyX)
|
||||
AC_CONFIG_AUX_DIR(../../config)
|
||||
|
||||
AC_PREFIX_PROGRAM(reLyX)
|
||||
# fix the value of the prefixes.
|
||||
test "x$prefix" = xNONE && prefix=$ac_default_prefix
|
||||
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
||||
|
||||
dnl PACKAGE=reLyX
|
||||
dnl Do this to install in $datadir/lyx/reLyX instead of $datadir/reLyX/reLyX
|
||||
PACKAGE=lyx
|
||||
|
@ -2,7 +2,6 @@ AUTOMAKE_OPTIONS = foreign
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
noinst_PROGRAMS = insets.o
|
||||
LIBS=
|
||||
LDFLAGS=
|
||||
ETAGS_ARGS = --c++
|
||||
INCLUDES = -I${srcdir}/../
|
||||
CXXLINK = $(LD) $(LDFLAGS)-r -o $(noinst_PROGRAMS)
|
||||
|
@ -2,7 +2,6 @@ AUTOMAKE_OPTIONS = foreign
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
noinst_PROGRAMS = mathed.o
|
||||
LIBS=
|
||||
LDFLAGS=
|
||||
ETAGS_ARGS = --c++
|
||||
INCLUDES = -I${top_srcdir}/images -I${srcdir}/../
|
||||
CXXLINK = $(LD) $(LDFLAGS) -r -o $(noinst_PROGRAMS)
|
||||
|
Loading…
Reference in New Issue
Block a user