]> git.lyx.org Git - features.git/commitdiff
Two configuration fixes. Bugfree configure is coming soon (do you really believe...
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 18 Nov 1999 11:42:36 +0000 (11:42 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 18 Nov 1999 11:42:36 +0000 (11:42 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@323 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
lib/reLyX/configure.in
src/insets/Makefile.am
src/mathed/Makefile.am

index 1d579207023677b5641aaa58359b107d88049aa3..016a6535630265a645cd7047fb5f109435d111fb 100644 (file)
--- a/ChangeLog
+++ b/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.
 
index 293151a79004df1f4cc1b225d5b0855da8f4c996..b90fb676ff5dcd1394e24cf94c2506cc487104c9 100644 (file)
@@ -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
index 722214985ed9faf7de9b6b878b4fa2d98e94a8aa..4a89d9164fd6494861d7b9bbe7bb449683531e16 100644 (file)
@@ -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)
index f6c1483f5f33ef8731bec2f7b8464139a1ceb444..e623732aa447052a8522cdabab9bcdc9186685af 100644 (file)
@@ -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)