"Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes:
| On Fri, Aug 15, 2003 at 08:55:10AM +0200, Lars Gullik Bjønnes wrote:
>>
>> MOve the EXTRA_DIST back where it used to be and add the gz files
>> explicit to the var.
>>
>> --
>> Lgb
>
| Done.
A lot better :-)
Ok for commit.
--
Lgb
On Fri, Aug 15, 2003 at 08:55:10AM +0200, Lars Gullik Bjønnes wrote:
>
> MOve the EXTRA_DIST back where it used to be and add the gz files
> explicit to the var.
>
> --
> Lgb
Done.
--
Kayvan A. Sylvan | Proud husband of | Father to my kids:
Sylvan Associates, Inc. | Lau
"Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes:
| This makes "make dist" work again.
But it is wrong...
with your patch the gz files are only disted if compresson is turned
on.
MOve the EXTRA_DIST back where it used to be and add the gz files
explicit to the var.
--
Lgb
This makes "make dist" work again.
--
Kayvan A. Sylvan | Proud husband of | Father to my kids:
Sylvan Associates, Inc. | Laura Isabella Sylvan | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)
Index: ./src/Makefile.am
==
On Wed, Mar 20, 2002 at 01:45:14AM -0800, Kayvan A. Sylvan wrote:
> I think this is right...
No, it's not. ;-)
Sorry for the noise.
--
Kayvan A. Sylvan | Proud husband of | Father to my kids:
Sylvan Associates, Inc. | Laura Isabella Sylvan | Katherine Yelena (8/8/89)
http://s
I think this is right...
--
Kayvan A. Sylvan | Proud husband of | Father to my kids:
Sylvan Associates, Inc. | Laura Isabella Sylvan | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)
Index: lib/Makefile.am
===
>>>>> "Kayvan" == Kayvan A Sylvan <[EMAIL PROTECTED]> writes:
Kayvan> Here is a mini-patch to let lyx compile with gcc-3.x on Win32.
Applied.
JMarc
Here is a mini-patch to let lyx compile with gcc-3.x on Win32.
--
Kayvan A. Sylvan | Proud husband of | Father to my kids:
Sylvan Associates, Inc. | Laura Isabella Sylvan | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregor
Hi folks,
A mini-patch.
--
Kayvan A. Sylvan | Proud husband of | Father to my kids:
Sylvan Associates, Inc. | Laura Isabella Sylvan | Katherine Yelena (8/8/89)
http://sylvan.com/~kayvan | "crown of her husband" | Robin Gregory (2/28/92)
Index: lib/M
This fixes that symbols isssue:
Index: lib/Makefile.am
===
RCS file: /cvs/lyx/lyx-devel/lib/Makefile.am,v
retrieving revision 1.26
diff -u -r1.26 Makefile.am
--- Makefile.am 2001/09/02 13:35:30 1.26
+++ Makefile.am 2001/09/07 07:
Angus Leeming <[EMAIL PROTECTED]> writes:
| On Friday 02 March 2001 14:52, Lars Gullik Bjønnes wrote:
| > | Index: src/frontends/controllers/ViewBase.h
| > | ===
| > | RCS file:
| /usr/local/lyx/cvsroot/lyx-devel/src/frontends/contr
On Friday 02 March 2001 14:52, Lars Gullik Bjønnes wrote:
> | Index: src/frontends/controllers/ViewBase.h
> | ===
> | RCS file:
/usr/local/lyx/cvsroot/lyx-devel/src/frontends/controllers/Attic/ViewBase.h,v
> | retrieving revision 1.1
On Friday 02 March 2001 14:46, John Levon wrote:
> Well it builds now with mini-patch 1, and the patch below.
>
> There are some minor problems with the BC for FormCitation but this
> is expected still right Angus ?
>
> I haven't checked the KDE frontend, but that
John Levon <[EMAIL PROTECTED]> writes:
| Well it builds now with mini-patch 1, and the patch below.
|
| There are some minor problems with the BC for FormCitation but this
| is expected still right Angus ?
|
| I haven't checked the KDE frontend, but that's not important anyway
Well it builds now with mini-patch 1, and the patch below.
There are some minor problems with the BC for FormCitation but this
is expected still right Angus ?
I haven't checked the KDE frontend, but that's not important anyway
looks good !
thanks
john
Index: src/frontends/c
I needed this patch to compile MVC (actually it's not finished yet,
but it's finished frontends/)
Index: src/frontends/controllers/ControlConnections.C
===
RCS file:
/usr/local/lyx/cvsroot/lyx-devel/src/frontends/controllers/Attic
Andre Poenitz <[EMAIL PROTECTED]> writes:
| > Why not change the prototype for maxsize at the same time?
|
| Unless you'd let me define MathedArray::size_type as int (which I really
| do not want either) this would mean a lot of changes in calling code that
| is not cleaned up yet.
Ok, I'll le
> Why not change the prototype for maxsize at the same time?
Unless you'd let me define MathedArray::size_type as int (which I really
do not want either) this would mean a lot of changes in calling code that
is not cleaned up yet.
> | + void need_size(int needed);
>
> Can't this be private?
Andre Poenitz <[EMAIL PROTECTED]> writes:
| > I am trying to move more low-level functionality from math_iter to array.
|
| Uh... and before anybody complains or tries to interfere _now_: Positions
| in the array of course will be 'size_type' and not 'int' _in the end_. But
| I'd like to keep t
Andre Poenitz <[EMAIL PROTECTED]> writes:
| I am trying to move more low-level functionality from math_iter to array.
| In the end it should be possible to get rid of last_ as well and use
| standard std::vector semantics (allocated to capacity(), filled to size())
| entirely.
Good, that is my p
> I am trying to move more low-level functionality from math_iter to array.
Uh... and before anybody complains or tries to interfere _now_: Positions
in the array of course will be 'size_type' and not 'int' _in the end_. But
I'd like to keep them as 'int' for a while since (a) that's the way it
I am trying to move more low-level functionality from math_iter to array.
In the end it should be possible to get rid of last_ as well and use
standard std::vector semantics (allocated to capacity(), filled to size())
entirely.
Anybody noticed we've closed a memory leak already? ;-}
Andre'
--
> "Andre" == Andre Poenitz <[EMAIL PROTECTED]> writes:
Andre> A really tiny patch: http://mathematik.htwm.de/tmp/mathed4.diff
Andre> The function prototypes are not used anymore.
Applied. Note that having preexisting ChangeLog entries in patches
would make my life slightly easier (for next
A really tiny patch:
http://mathematik.htwm.de/tmp/mathed4.diff
The function prototypes are not used anymore.
Andre'
--
André Pönitz [EMAIL PROTECTED]
24 matches
Mail list logo