missing file in 2.3.2 tarball

2019-02-10 Thread Uwe Stöhr

I compiled LyX 2.3.2 from the tarball and get one CMake error that the
file lyx.ico is missing.

I could fix it by putting it into the folder ~\development\cmake.

Either the file is missing or Cmake needs to be adapted that there is no
longer this file.

regards Uwe


Re: [LyX/master] Missing file format bis from 0c3b88e3

2014-07-11 Thread Jürgen Spitzmüller
Am Donnerstag 10 Juli 2014, 21:59:59 schrieb Georg Baum:
 commit 1a073ea416674ed37b65a333126a65369a2882be
 Author: Georg Baum b...@lyx.org
 Date:   Thu Jul 10 21:59:17 2014 +0200
 
 Missing file format bis from 0c3b88e3

Sorry. And thanks.

Jürgen


Re: [LyX/master] Missing file format bis from 0c3b88e3

2014-07-11 Thread Jürgen Spitzmüller
Am Donnerstag 10 Juli 2014, 21:59:59 schrieb Georg Baum:
> commit 1a073ea416674ed37b65a333126a65369a2882be
> Author: Georg Baum <b...@lyx.org>
> Date:   Thu Jul 10 21:59:17 2014 +0200
> 
> Missing file format bis from 0c3b88e3

Sorry. And thanks.

Jürgen


Missing file src/LayoutModuleList.cpp

2009-02-21 Thread Kornel Benko

Since last commit r28574

Kornel
-- 
Kornel Benko
kornel.be...@berlin.de


signature.asc
Description: This is a digitally signed message part.


Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread rgheck

Kornel Benko wrote:

Since last commit r28574

Kornel
  

Sorry!

rh



Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread Kornel Benko
Am Samstag 21 Februar 2009 schrieb rgheck:
 Kornel Benko wrote:
  Since last commit r28574
 
  Kornel

 Sorry!

Ok, but now there is:
cd /usr/BUILD/BuildLyx/src  /usr/bin/c++   -DQT_NO_STL -DQT_NO_KEYWORDS -
DHAVE_GETTEXT -DENABLE_NLS=1 -DUSE_ASPELL=1 -DHAVE_ICONV=1 -Wall -Wall -O3 -
DNDEBUG -I/usr/src/lyx/lyx-devel/po -I/usr/BUILD/BuildLyx -I/usr/src/lyx/lyx-
devel/src -I/usr/src/lyx/lyx-devel/boost -I/usr/BUILD/BuildLyx/src   -
DBOOST_USER_CONFIG=config.h -o CMakeFiles/lyx.dir/usr/src/lyx/lyx-
devel/src/LayoutModuleList.o -c /usr/src/lyx/lyx-
devel/src/LayoutModuleList.cpp
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp: In member function ‘bool 
lyx::LayoutModuleList::moduleCanBeAdded(const std::string, const 
lyx::LayoutFile*) const’:
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:72: error: ‘find’ was not 
declared in this scope
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:78: error: ‘find’ was not 
declared in this scope
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:105: error: ‘find’ was not 
declared in this scope
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp: In member function ‘void 
lyx::LayoutModuleList::addDefaultModules(const lyx::LayoutFile*, 
std::liststd::basic_stringchar, std::char_traitschar, std::allocatorchar 
, std::allocatorstd::basic_stringchar, std::char_traitschar, 
std::allocatorchar   )’:
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:136: error: ‘find’ was not 
declared in this scope
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp: In member function ‘bool 
lyx::LayoutModuleList::removeBadModules(const lyx::LayoutFile*)’:
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:176: error: ‘find’ was not 
declared in this scope
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:182: error: ‘find’ was not 
declared in this scope
...

Kornel
-- 
Kornel Benko
kornel.be...@berlin.de


signature.asc
Description: This is a digitally signed message part.


Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread Uwe Stöhr

 Ok, but now there is:

I added the missing include so it should compile now.

regards Uwe


Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread Kornel Benko
Am Samstag 21 Februar 2009 schrieb Uwe Stöhr:
   Ok, but now there is:

 I added the missing include so it should compile now.

 regards Uwe

Thanks Uwe.
I tried to commit, but failed.
svn ci  -mfix cmake after r28575 
development/cmake/src/tex2lyx/CMakeLists.txt
svn: Commit failed (details follow):
svn: Authorization failed

So, here is the diff

Kornel
-- 
Kornel Benko
kornel.be...@berlin.de
Index: development/cmake/src/tex2lyx/CMakeLists.txt
===
--- development/cmake/src/tex2lyx/CMakeLists.txt	(revision 28577)
+++ development/cmake/src/tex2lyx/CMakeLists.txt	(working copy)
@@ -14,6 +14,7 @@
 	${TOP_SRC_DIR}/src/Floating.cpp
 	${TOP_SRC_DIR}/src/Counters.cpp
 	${TOP_SRC_DIR}/src/Layout.cpp
+	${TOP_SRC_DIR}/src/LayoutModuleList.cpp
 	${TOP_SRC_DIR}/src/TextClass.cpp
 	${TOP_SRC_DIR}/src/Lexer.cpp
 	${TOP_SRC_DIR}/src/lengthcommon.cpp
@@ -22,6 +23,7 @@
 
 set(LINKED_headers
 	${TOP_SRC_DIR}/src/Layout.h
+	${TOP_SRC_DIR}/src/LayoutModuleList.h
 	${TOP_SRC_DIR}/src/TextClass.h)
 
 set(tex2lyx_sources


signature.asc
Description: This is a digitally signed message part.


Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread rgheck

Uwe Stöhr wrote:

 Ok, but now there is:

I added the missing include so it should compile now.


Must be needed on some platforms, not on others.

rh



Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread Kornel Benko
Am Samstag 21 Februar 2009 schrieb rgheck:
 Uwe Stöhr wrote:
   Ok, but now there is:
 
  I added the missing include so it should compile now.

 Must be needed on some platforms, not on others.

On my platform it was needed when compiling with cmake, not needed compiling 
with autoconf.

I am not sure, but it seems to depend on enabling concept-checks.

Kornel

-- 
Kornel Benko
kornel.be...@berlin.de


signature.asc
Description: This is a digitally signed message part.


Missing file src/LayoutModuleList.cpp

2009-02-21 Thread Kornel Benko

Since last commit r28574

Kornel
-- 
Kornel Benko
kornel.be...@berlin.de


signature.asc
Description: This is a digitally signed message part.


Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread rgheck

Kornel Benko wrote:

Since last commit r28574

Kornel
  

Sorry!

rh



Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread Kornel Benko
Am Samstag 21 Februar 2009 schrieb rgheck:
> Kornel Benko wrote:
> > Since last commit r28574
> >
> > Kornel
>
> Sorry!

Ok, but now there is:
cd /usr/BUILD/BuildLyx/src && /usr/bin/c++   -DQT_NO_STL -DQT_NO_KEYWORDS -
DHAVE_GETTEXT -DENABLE_NLS=1 -DUSE_ASPELL=1 -DHAVE_ICONV=1 -Wall -Wall -O3 -
DNDEBUG -I/usr/src/lyx/lyx-devel/po -I/usr/BUILD/BuildLyx -I/usr/src/lyx/lyx-
devel/src -I/usr/src/lyx/lyx-devel/boost -I/usr/BUILD/BuildLyx/src   -
DBOOST_USER_CONFIG="" -o CMakeFiles/lyx.dir/usr/src/lyx/lyx-
devel/src/LayoutModuleList.o -c /usr/src/lyx/lyx-
devel/src/LayoutModuleList.cpp
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp: In member function ‘bool 
lyx::LayoutModuleList::moduleCanBeAdded(const std::string&, const 
lyx::LayoutFile*) const’:
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:72: error: ‘find’ was not 
declared in this scope
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:78: error: ‘find’ was not 
declared in this scope
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:105: error: ‘find’ was not 
declared in this scope
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp: In member function ‘void 
lyx::LayoutModuleList::addDefaultModules(const lyx::LayoutFile*, 
std::list, std::allocator > >)’:
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:136: error: ‘find’ was not 
declared in this scope
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp: In member function ‘bool 
lyx::LayoutModuleList::removeBadModules(const lyx::LayoutFile*)’:
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:176: error: ‘find’ was not 
declared in this scope
/usr/src/lyx/lyx-devel/src/LayoutModuleList.cpp:182: error: ‘find’ was not 
declared in this scope
...

Kornel
-- 
Kornel Benko
kornel.be...@berlin.de


signature.asc
Description: This is a digitally signed message part.


Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread Uwe Stöhr

> Ok, but now there is:

I added the missing include so it should compile now.

regards Uwe


Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread Kornel Benko
Am Samstag 21 Februar 2009 schrieb Uwe Stöhr:
>  > Ok, but now there is:
>
> I added the missing include so it should compile now.
>
> regards Uwe

Thanks Uwe.
I tried to commit, but failed.
svn ci  -m"fix cmake after r28575" 
development/cmake/src/tex2lyx/CMakeLists.txt
svn: Commit failed (details follow):
svn: Authorization failed

So, here is the diff

Kornel
-- 
Kornel Benko
kornel.be...@berlin.de
Index: development/cmake/src/tex2lyx/CMakeLists.txt
===
--- development/cmake/src/tex2lyx/CMakeLists.txt	(revision 28577)
+++ development/cmake/src/tex2lyx/CMakeLists.txt	(working copy)
@@ -14,6 +14,7 @@
 	${TOP_SRC_DIR}/src/Floating.cpp
 	${TOP_SRC_DIR}/src/Counters.cpp
 	${TOP_SRC_DIR}/src/Layout.cpp
+	${TOP_SRC_DIR}/src/LayoutModuleList.cpp
 	${TOP_SRC_DIR}/src/TextClass.cpp
 	${TOP_SRC_DIR}/src/Lexer.cpp
 	${TOP_SRC_DIR}/src/lengthcommon.cpp
@@ -22,6 +23,7 @@
 
 set(LINKED_headers
 	${TOP_SRC_DIR}/src/Layout.h
+	${TOP_SRC_DIR}/src/LayoutModuleList.h
 	${TOP_SRC_DIR}/src/TextClass.h)
 
 set(tex2lyx_sources


signature.asc
Description: This is a digitally signed message part.


Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread rgheck

Uwe Stöhr wrote:

> Ok, but now there is:

I added the missing include so it should compile now.


Must be needed on some platforms, not on others.

rh



Re: Missing file src/LayoutModuleList.cpp

2009-02-21 Thread Kornel Benko
Am Samstag 21 Februar 2009 schrieb rgheck:
> Uwe Stöhr wrote:
> > > Ok, but now there is:
> >
> > I added the missing include so it should compile now.
>
> Must be needed on some platforms, not on others.

On my platform it was needed when compiling with cmake, not needed compiling 
with autoconf.

I am not sure, but it seems to depend on enabling concept-checks.

Kornel

-- 
Kornel Benko
kornel.be...@berlin.de


signature.asc
Description: This is a digitally signed message part.


Re: configure failure... (latest CVS) missing file?

2006-03-24 Thread Kayvan A. Sylvan
On Thu, Mar 23, 2006 at 10:56:49PM +0100, Lars Gullik Bjønnes wrote:
 Kayvan A. Sylvan [EMAIL PROTECTED] writes:
 
 | Yes. This gets me past the initial problem. Now there is a link issue (see
 | my other email).
 
 I am unable to find your other mail, can you repost?

I just did.


Re: configure failure... (latest CVS) missing file?

2006-03-24 Thread Kayvan A. Sylvan
On Thu, Mar 23, 2006 at 10:56:49PM +0100, Lars Gullik Bjønnes wrote:
> "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes:
> 
> | Yes. This gets me past the initial problem. Now there is a link issue (see
> | my other email).
> 
> I am unable to find your other mail, can you repost?

I just did.


Re: configure failure... (latest CVS) missing file?

2006-03-23 Thread Jean-Marc Lasgouttes
 Lars == Lars Gullik Bjønnes [EMAIL PROTECTED] writes:


Lars This is the correct fix.


I applied it.

JMarc


Re: configure failure... (latest CVS) missing file?

2006-03-23 Thread Lars Gullik Bjønnes
Kayvan A. Sylvan [EMAIL PROTECTED] writes:

| Yes. This gets me past the initial problem. Now there is a link issue (see
| my other email).

I am unable to find your other mail, can you repost?

-- 
Lgb


Re: configure failure... (latest CVS) missing file?

2006-03-23 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes:


Lars> This is the correct fix.


I applied it.

JMarc


Re: configure failure... (latest CVS) missing file?

2006-03-23 Thread Lars Gullik Bjønnes
"Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes:

| Yes. This gets me past the initial problem. Now there is a link issue (see
| my other email).

I am unable to find your other mail, can you repost?

-- 
Lgb


Re: configure failure... (latest CVS) missing file?

2006-03-22 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes [EMAIL PROTECTED] writes:

| One of these two fixes should work. The reason nobody noticed is that
| we already have tests/Makefile.in from earlier runs, I guess.
| 
| Index: src/frontends/controllers/Makefile.am
| ===
| --- src/frontends/controllers/Makefile.am (revision 13444)
| +++ src/frontends/controllers/Makefile.am (working copy)
| @@ -1,5 +1,7 @@
|  include $(top_srcdir)/config/common.am
|  
| +SUBDIRS = tests
| +
|  EXTRA_DIST = pch.h BCView.tmpl
|  
|  BUILT_SOURCES = $(PCH_FILE)

This is the correct fix.


-- 
Lgb



Re: configure failure... (latest CVS) missing file?

2006-03-22 Thread Kayvan A. Sylvan
On Wed, Mar 22, 2006 at 09:35:16PM +0100, Lars Gullik Bjønnes wrote:
 Jean-Marc Lasgouttes [EMAIL PROTECTED] writes:
 
 | One of these two fixes should work. The reason nobody noticed is that
 | we already have tests/Makefile.in from earlier runs, I guess.
 | 
 | Index: src/frontends/controllers/Makefile.am
 | ===
 | --- src/frontends/controllers/Makefile.am   (revision 13444)
 | +++ src/frontends/controllers/Makefile.am   (working copy)
 | @@ -1,5 +1,7 @@
 |  include $(top_srcdir)/config/common.am
 |  
 | +SUBDIRS = tests
 | +
 |  EXTRA_DIST = pch.h BCView.tmpl
 |  
 |  BUILT_SOURCES = $(PCH_FILE)
 
 This is the correct fix.

Yes. This gets me past the initial problem. Now there is a link issue (see
my other email).

Thanks.
-- 
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 | my beautiful Queen.| Robin Gregory (2/28/92)


Re: configure failure... (latest CVS) missing file?

2006-03-22 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:

| One of these two fixes should work. The reason nobody noticed is that
| we already have tests/Makefile.in from earlier runs, I guess.
| 
| Index: src/frontends/controllers/Makefile.am
| ===
| --- src/frontends/controllers/Makefile.am (revision 13444)
| +++ src/frontends/controllers/Makefile.am (working copy)
| @@ -1,5 +1,7 @@
|  include $(top_srcdir)/config/common.am
|  
| +SUBDIRS = tests
| +
|  EXTRA_DIST = pch.h BCView.tmpl
|  
|  BUILT_SOURCES = $(PCH_FILE)

This is the correct fix.


-- 
Lgb



Re: configure failure... (latest CVS) missing file?

2006-03-22 Thread Kayvan A. Sylvan
On Wed, Mar 22, 2006 at 09:35:16PM +0100, Lars Gullik Bjønnes wrote:
> Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:
> 
> | One of these two fixes should work. The reason nobody noticed is that
> | we already have tests/Makefile.in from earlier runs, I guess.
> | 
> | Index: src/frontends/controllers/Makefile.am
> | ===
> | --- src/frontends/controllers/Makefile.am   (revision 13444)
> | +++ src/frontends/controllers/Makefile.am   (working copy)
> | @@ -1,5 +1,7 @@
> |  include $(top_srcdir)/config/common.am
> |  
> | +SUBDIRS = tests
> | +
> |  EXTRA_DIST = pch.h BCView.tmpl
> |  
> |  BUILT_SOURCES = $(PCH_FILE)
> 
> This is the correct fix.

Yes. This gets me past the initial problem. Now there is a link issue (see
my other email).

Thanks.
-- 
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 | my beautiful Queen.| Robin Gregory (2/28/92)


Re: configure failure... (latest CVS) missing file?

2006-03-21 Thread Jean-Marc Lasgouttes
 Kayvan == Kayvan A Sylvan [EMAIL PROTECTED] writes:

Kayvan[...] config.status: creating
Kayvan src/frontends/controllers/Makefile config.status: creating
Kayvan src/frontends/controllers/tests/Makefile config.status: error:
Kayvan cannot find input file:
Kayvan src/frontends/controllers/tests/Makefile.in

Lars, you have to make up your mind, since it is you who added
frontends/tests/ to configure.ac.

One of these two fixes should work. The reason nobody noticed is that
we already have tests/Makefile.in from earlier runs, I guess.

JMarc

Index: configure.ac
===
--- configure.ac	(revision 13444)
+++ configure.ac	(working copy)
@@ -457,7 +457,6 @@
src/support/tests/Makefile \
src/frontends/Makefile \
src/frontends/controllers/Makefile \
-   src/frontends/controllers/tests/Makefile \
src/frontends/xforms/Makefile \
src/frontends/xforms/lyx_forms.h-tmp:src/frontends/xforms/lyx_forms.h.in \
src/frontends/xforms/lyx_xpm.h-tmp:src/frontends/xforms/lyx_xpm.h.in \
Index: src/frontends/controllers/Makefile.am
===
--- src/frontends/controllers/Makefile.am	(revision 13444)
+++ src/frontends/controllers/Makefile.am	(working copy)
@@ -1,5 +1,7 @@
 include $(top_srcdir)/config/common.am
 
+SUBDIRS = tests
+
 EXTRA_DIST = pch.h BCView.tmpl
 
 BUILT_SOURCES = $(PCH_FILE)


Re: configure failure... (latest CVS) missing file?

2006-03-21 Thread Jean-Marc Lasgouttes
> "Kayvan" == Kayvan A Sylvan <[EMAIL PROTECTED]> writes:

Kayvan>[...] config.status: creating
Kayvan> src/frontends/controllers/Makefile config.status: creating
Kayvan> src/frontends/controllers/tests/Makefile config.status: error:
Kayvan> cannot find input file:
Kayvan> src/frontends/controllers/tests/Makefile.in

Lars, you have to make up your mind, since it is you who added
frontends/tests/ to configure.ac.

One of these two fixes should work. The reason nobody noticed is that
we already have tests/Makefile.in from earlier runs, I guess.

JMarc

Index: configure.ac
===
--- configure.ac	(revision 13444)
+++ configure.ac	(working copy)
@@ -457,7 +457,6 @@
src/support/tests/Makefile \
src/frontends/Makefile \
src/frontends/controllers/Makefile \
-   src/frontends/controllers/tests/Makefile \
src/frontends/xforms/Makefile \
src/frontends/xforms/lyx_forms.h-tmp:src/frontends/xforms/lyx_forms.h.in \
src/frontends/xforms/lyx_xpm.h-tmp:src/frontends/xforms/lyx_xpm.h.in \
Index: src/frontends/controllers/Makefile.am
===
--- src/frontends/controllers/Makefile.am	(revision 13444)
+++ src/frontends/controllers/Makefile.am	(working copy)
@@ -1,5 +1,7 @@
 include $(top_srcdir)/config/common.am
 
+SUBDIRS = tests
+
 EXTRA_DIST = pch.h BCView.tmpl
 
 BUILT_SOURCES = $(PCH_FILE)


Re: configure failure... (latest CVS) missing file?

2006-03-20 Thread Kayvan A. Sylvan
On Thu, Mar 16, 2006 at 10:39:24PM -0800, Kayvan A. Sylvan wrote:
 On Tue, Mar 14, 2006 at 12:18:43AM +0100, Lars Gullik Bjønnes wrote:
  Kayvan A. Sylvan [EMAIL PROTECTED] writes:
  
  | config.status: creating src/insets/Makefile
  | config.status: creating src/support/Makefile
  | config.status: creating src/support/tests/Makefile
  | config.status: creating src/frontends/Makefile
  | config.status: creating src/frontends/controllers/Makefile
  | config.status: creating src/frontends/controllers/tests/Makefile
  | config.status: error: cannot find input file:
  |   src/frontends/controllers/tests/Makefile.in
  | 

I am still having this problem. To reproduce, do this:

1) Run autogen.sh and configure to create Makefiles...
2) Do: make dist

3) Use the generated tar ball:

   tar xvjf lyx-1.5.0svn.tar.bz2
   cd lyx-1.5.0svn
   ./configure --with-frontend=qt

   [...]
   config.status: creating src/frontends/controllers/Makefile
   config.status: creating src/frontends/controllers/tests/Makefile
   config.status: error: cannot find input file: 
src/frontends/controllers/tests/Makefile.in


Lars or someone familiar with the packaging stuff, help me fix this.

Thanks!
---Kayvan
-- 
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 | my beautiful Queen.| Robin Gregory (2/28/92)


Re: configure failure... (latest CVS) missing file?

2006-03-20 Thread Kayvan A. Sylvan
On Thu, Mar 16, 2006 at 10:39:24PM -0800, Kayvan A. Sylvan wrote:
> On Tue, Mar 14, 2006 at 12:18:43AM +0100, Lars Gullik Bjønnes wrote:
> > "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes:
> > 
> > | config.status: creating src/insets/Makefile
> > | config.status: creating src/support/Makefile
> > | config.status: creating src/support/tests/Makefile
> > | config.status: creating src/frontends/Makefile
> > | config.status: creating src/frontends/controllers/Makefile
> > | config.status: creating src/frontends/controllers/tests/Makefile
> > | config.status: error: cannot find input file:
> > |   src/frontends/controllers/tests/Makefile.in
> > | 

I am still having this problem. To reproduce, do this:

1) Run autogen.sh and configure to create Makefiles...
2) Do: "make dist"

3) Use the generated tar ball:

   tar xvjf lyx-1.5.0svn.tar.bz2
   cd lyx-1.5.0svn
   ./configure --with-frontend=qt

   [...]
   config.status: creating src/frontends/controllers/Makefile
   config.status: creating src/frontends/controllers/tests/Makefile
   config.status: error: cannot find input file: 
src/frontends/controllers/tests/Makefile.in


Lars or someone familiar with the packaging stuff, help me fix this.

Thanks!
---Kayvan
-- 
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 | my beautiful Queen.| Robin Gregory (2/28/92)


Re: configure failure... (latest CVS) missing file?

2006-03-16 Thread Kayvan A. Sylvan
On Tue, Mar 14, 2006 at 12:18:43AM +0100, Lars Gullik Bjønnes wrote:
 Kayvan A. Sylvan [EMAIL PROTECTED] writes:
 
 | config.status: creating src/insets/Makefile
 | config.status: creating src/support/Makefile
 | config.status: creating src/support/tests/Makefile
 | config.status: creating src/frontends/Makefile
 | config.status: creating src/frontends/controllers/Makefile
 | config.status: creating src/frontends/controllers/tests/Makefile
 | config.status: error: cannot find input file:
 |   src/frontends/controllers/tests/Makefile.in
 | 
 | Is there a missing file?
 
 Hmm... you do have the Makefile.am in that dir?
 
 Or are you missing a ./autogen.sh to create the Makefile.in in the
 first place?

It looks like another packaging issue. If I do a ./autogen.sh and then
do configure it works correctly.

However, in my daily builds I use make rpmdist which builds the dist
tarball and then tries to do the RPM build from what's in the tarball.

It looks like that particular Makefile.in did not make it in the tarball.

Any help would be much appreciated.

---Kayvan
-- 
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 | my beautiful Queen.| Robin Gregory (2/28/92)


Re: configure failure... (latest CVS) missing file?

2006-03-16 Thread Kayvan A. Sylvan
On Tue, Mar 14, 2006 at 12:18:43AM +0100, Lars Gullik Bjønnes wrote:
> "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes:
> 
> | config.status: creating src/insets/Makefile
> | config.status: creating src/support/Makefile
> | config.status: creating src/support/tests/Makefile
> | config.status: creating src/frontends/Makefile
> | config.status: creating src/frontends/controllers/Makefile
> | config.status: creating src/frontends/controllers/tests/Makefile
> | config.status: error: cannot find input file:
> |   src/frontends/controllers/tests/Makefile.in
> | 
> | Is there a missing file?
> 
> Hmm... you do have the Makefile.am in that dir?
> 
> Or are you missing a ./autogen.sh to create the Makefile.in in the
> first place?

It looks like another packaging issue. If I do a ./autogen.sh and then
do "configure" it works correctly.

However, in my daily builds I use "make rpmdist" which builds the dist
tarball and then tries to do the RPM build from what's in the tarball.

It looks like that particular Makefile.in did not make it in the tarball.

Any help would be much appreciated.

---Kayvan
-- 
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 | my beautiful Queen.| Robin Gregory (2/28/92)


configure failure... (latest CVS) missing file?

2006-03-13 Thread Kayvan A. Sylvan
config.status: creating src/insets/Makefile
config.status: creating src/support/Makefile
config.status: creating src/support/tests/Makefile
config.status: creating src/frontends/Makefile
config.status: creating src/frontends/controllers/Makefile
config.status: creating src/frontends/controllers/tests/Makefile
config.status: error: cannot find input file:
  src/frontends/controllers/tests/Makefile.in

Is there a missing file?

-- 
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 | my beautiful Queen.| Robin Gregory (2/28/92)


Re: configure failure... (latest CVS) missing file?

2006-03-13 Thread Lars Gullik Bjønnes
Kayvan A. Sylvan [EMAIL PROTECTED] writes:

| config.status: creating src/insets/Makefile
| config.status: creating src/support/Makefile
| config.status: creating src/support/tests/Makefile
| config.status: creating src/frontends/Makefile
| config.status: creating src/frontends/controllers/Makefile
| config.status: creating src/frontends/controllers/tests/Makefile
| config.status: error: cannot find input file:
|   src/frontends/controllers/tests/Makefile.in
| 
| Is there a missing file?

Hmm... you do have the Makefile.am in that dir?

Or are you missing a ./autogen.sh to create the Makefile.in in the
first place?

-- 
Lgb



configure failure... (latest CVS) missing file?

2006-03-13 Thread Kayvan A. Sylvan
config.status: creating src/insets/Makefile
config.status: creating src/support/Makefile
config.status: creating src/support/tests/Makefile
config.status: creating src/frontends/Makefile
config.status: creating src/frontends/controllers/Makefile
config.status: creating src/frontends/controllers/tests/Makefile
config.status: error: cannot find input file:
  src/frontends/controllers/tests/Makefile.in

Is there a missing file?

-- 
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 | my beautiful Queen.| Robin Gregory (2/28/92)


Re: configure failure... (latest CVS) missing file?

2006-03-13 Thread Lars Gullik Bjønnes
"Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes:

| config.status: creating src/insets/Makefile
| config.status: creating src/support/Makefile
| config.status: creating src/support/tests/Makefile
| config.status: creating src/frontends/Makefile
| config.status: creating src/frontends/controllers/Makefile
| config.status: creating src/frontends/controllers/tests/Makefile
| config.status: error: cannot find input file:
|   src/frontends/controllers/tests/Makefile.in
| 
| Is there a missing file?

Hmm... you do have the Makefile.am in that dir?

Or are you missing a ./autogen.sh to create the Makefile.in in the
first place?

-- 
Lgb



Re: Missing file?

2003-10-15 Thread Jean-Marc Lasgouttes
 Angus == Angus Leeming [EMAIL PROTECTED] writes:

Angus Kayvan A. Sylvan wrote:
 Thanks. ./autogen.sh and ./configure and make fixed it.

Angus If you ./configure --enable-maintainer-mode then all will
Angus happen auto-magically when you type make...

Note that we could have --enable-maintainer-mode default to true for
development versions.

JMarc



Re: Missing file?

2003-10-15 Thread Jose' Matos
On Wednesday 15 October 2003 09:39, Jean-Marc Lasgouttes wrote:

 Note that we could have --enable-maintainer-mode default to true for
 development versions.

  That would be good, is there any drawback for this approach?

 JMarc

-- 
José Abílio

LyX and docbook, a perfect match. :-)



Re: Missing file?

2003-10-15 Thread Jean-Marc Lasgouttes
 Jose' == Jose' Matos [EMAIL PROTECTED] writes:

Jose' On Wednesday 15 October 2003 09:39, Jean-Marc Lasgouttes wrote:
  Note that we could have --enable-maintainer-mode default to true
 for development versions.

Jose'   That would be good, is there any drawback for this approach?

I do not think so. I will personally continue to disable maintainer
mode, since I get problems related to bad clock synchronization
between my machine and the fileserver...

JMarc 



Re: Missing file?

2003-10-15 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes [EMAIL PROTECTED] writes:

 Jose' == Jose' Matos [EMAIL PROTECTED] writes:

| Jose' On Wednesday 15 October 2003 09:39, Jean-Marc Lasgouttes wrote:
  Note that we could have --enable-maintainer-mode default to true
 for development versions.

| Jose'   That would be good, is there any drawback for this approach?

| I do not think so. I will personally continue to disable maintainer
| mode, since I get problems related to bad clock synchronization
| between my machine and the fileserver...

ntp?

-- 
Lgb



Re: Missing file?

2003-10-15 Thread Jean-Marc Lasgouttes
> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes:

Angus> Kayvan A. Sylvan wrote:
>> Thanks. ./autogen.sh and ./configure and make fixed it.

Angus> If you ./configure --enable-maintainer-mode then all will
Angus> happen auto-magically when you type make...

Note that we could have --enable-maintainer-mode default to true for
development versions.

JMarc



Re: Missing file?

2003-10-15 Thread Jose' Matos
On Wednesday 15 October 2003 09:39, Jean-Marc Lasgouttes wrote:
>
> Note that we could have --enable-maintainer-mode default to true for
> development versions.

  That would be good, is there any drawback for this approach?

> JMarc

-- 
José Abílio

LyX and docbook, a perfect match. :-)



Re: Missing file?

2003-10-15 Thread Jean-Marc Lasgouttes
> "Jose'" == Jose' Matos <[EMAIL PROTECTED]> writes:

Jose'> On Wednesday 15 October 2003 09:39, Jean-Marc Lasgouttes wrote:
>>  Note that we could have --enable-maintainer-mode default to true
>> for development versions.

Jose'>   That would be good, is there any drawback for this approach?

I do not think so. I will personally continue to disable maintainer
mode, since I get problems related to bad clock synchronization
between my machine and the fileserver...

JMarc 



Re: Missing file?

2003-10-15 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:

>> "Jose'" == Jose' Matos <[EMAIL PROTECTED]> writes:
>
| Jose'> On Wednesday 15 October 2003 09:39, Jean-Marc Lasgouttes wrote:
>>>  Note that we could have --enable-maintainer-mode default to true
>>> for development versions.
>
| Jose'>   That would be good, is there any drawback for this approach?
>
| I do not think so. I will personally continue to disable maintainer
| mode, since I get problems related to bad clock synchronization
| between my machine and the fileserver...

ntp?

-- 
Lgb



Missing file?

2003-10-14 Thread Kayvan A. Sylvan
make[3]: Entering directory `/home/ksylvan/src/lyx-build/src'
make[3]: *** No rule to make target `../../lyx/src/undo_funcs.C', needed by `und
o_funcs.o'.  Stop.

-- 
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)


Re: Missing file?

2003-10-14 Thread Angus Leeming
Kayvan A. Sylvan wrote:
 make[3]: Entering directory `/home/ksylvan/src/lyx-build/src'
 make[3]: *** No rule to make target `../../lyx/src/undo_funcs.C',
 needed by `undo_funcs.o'.  Stop.

Your dependencies are hosed. André killed undo_funcs.[Ch] this 
afternoon.
$ grep -r undo_funcs src | grep -v ChangeLog
$

-- 
Angus



Re: Missing file?

2003-10-14 Thread Kayvan A. Sylvan
On Tue, Oct 14, 2003 at 08:24:38PM +, Angus Leeming wrote:
 Kayvan A. Sylvan wrote:
  make[3]: Entering directory `/home/ksylvan/src/lyx-build/src'
  make[3]: *** No rule to make target `../../lyx/src/undo_funcs.C',
  needed by `undo_funcs.o'.  Stop.
 
 Your dependencies are hosed. André killed undo_funcs.[Ch] this 
 afternoon.
 $ grep -r undo_funcs src | grep -v ChangeLog
 $

Thanks.

./autogen.sh and ./configure and make fixed it.

-- 
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)


Re: Missing file?

2003-10-14 Thread Angus Leeming
Kayvan A. Sylvan wrote:
 Thanks.
 ./autogen.sh and ./configure and make fixed it.

If you ./configure --enable-maintainer-mode
then all will happen auto-magically when you type make...

-- 
Angus



Missing file?

2003-10-14 Thread Kayvan A. Sylvan
make[3]: Entering directory `/home/ksylvan/src/lyx-build/src'
make[3]: *** No rule to make target `../../lyx/src/undo_funcs.C', needed by `und
o_funcs.o'.  Stop.

-- 
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)


Re: Missing file?

2003-10-14 Thread Angus Leeming
Kayvan A. Sylvan wrote:
> make[3]: Entering directory `/home/ksylvan/src/lyx-build/src'
> make[3]: *** No rule to make target `../../lyx/src/undo_funcs.C',
> needed by `undo_funcs.o'.  Stop.

Your dependencies are hosed. André killed undo_funcs.[Ch] this 
afternoon.
$ grep -r undo_funcs src | grep -v ChangeLog
$

-- 
Angus



Re: Missing file?

2003-10-14 Thread Kayvan A. Sylvan
On Tue, Oct 14, 2003 at 08:24:38PM +, Angus Leeming wrote:
> Kayvan A. Sylvan wrote:
> > make[3]: Entering directory `/home/ksylvan/src/lyx-build/src'
> > make[3]: *** No rule to make target `../../lyx/src/undo_funcs.C',
> > needed by `undo_funcs.o'.  Stop.
> 
> Your dependencies are hosed. André killed undo_funcs.[Ch] this 
> afternoon.
> $ grep -r undo_funcs src | grep -v ChangeLog
> $

Thanks.

./autogen.sh and ./configure and make fixed it.

-- 
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)


Re: Missing file?

2003-10-14 Thread Angus Leeming
Kayvan A. Sylvan wrote:
> Thanks.
> ./autogen.sh and ./configure and make fixed it.

If you ./configure --enable-maintainer-mode
then all will happen auto-magically when you type make...

-- 
Angus



{Add] missing file in CVS

2002-01-09 Thread Martin Vermeer

FuncStatus.h seems not in CVS. Attached.

...and thx for doing the rest :-)

-- Martin



// -*- C++ -*-
#ifndef FUNC_STATUS_H
#define FUNC_STATUS_H

/// The status of a function.

class FuncStatus
{
private:

enum StatusCodes {
///
OK = 0,
///
UNKNOWN = 1,
///
DISABLED = 2,  // Command cannot be executed
///
ON = 4,
///
OFF = 8
};

unsigned int v_;

public:
  FuncStatus ();
  FuncStatus  unknown (bool b);
  FuncStatus  disabled (bool b);
  void setOnOff (bool b);
  FuncStatus  clear ();
  void operator |= (FuncStatus f);
  bool unknown ();
  bool disabled ();
  bool onoff (bool b);
};

#endif



msg31179/pgp0.pgp
Description: PGP signature


Re: {Add] missing file in CVS

2002-01-09 Thread Jean-Marc Lasgouttes

 Martin == Martin Vermeer [EMAIL PROTECTED] writes:

Martin FuncStatus.h seems not in CVS. Attached. ...and thx for doing
Martin the rest :-)

It is in:
http://www.lyx.org/cgi-bin/cvsweb.cgi/lyx-devel/src/FuncStatus.h

Maybe you had a problem because you had your own version in.

JMarc




Re: {Add] missing file in CVS

2002-01-09 Thread Martin Vermeer

On Wed, Jan 09, 2002 at 01:14:31PM +0100, Jean-Marc Lasgouttes wrote:

 Maybe you had a problem because you had your own version in.
 
 JMarc

Yeah, that was it. (functionally equivalent to yours btw ;-)

Martin




msg31203/pgp0.pgp
Description: PGP signature


{Add] missing file in CVS

2002-01-09 Thread Martin Vermeer

FuncStatus.h seems not in CVS. Attached.

...and thx for doing the rest :-)

-- Martin



// -*- C++ -*-
#ifndef FUNC_STATUS_H
#define FUNC_STATUS_H

/// The status of a function.

class FuncStatus
{
private:

enum StatusCodes {
///
OK = 0,
///
UNKNOWN = 1,
///
DISABLED = 2,  // Command cannot be executed
///
ON = 4,
///
OFF = 8
};

unsigned int v_;

public:
  FuncStatus ();
  FuncStatus & unknown (bool b);
  FuncStatus & disabled (bool b);
  void setOnOff (bool b);
  FuncStatus & clear ();
  void operator |= (FuncStatus f);
  bool unknown ();
  bool disabled ();
  bool onoff (bool b);
};

#endif



msg31179/pgp0.pgp
Description: PGP signature


Re: {Add] missing file in CVS

2002-01-09 Thread Jean-Marc Lasgouttes

> "Martin" == Martin Vermeer <[EMAIL PROTECTED]> writes:

Martin> FuncStatus.h seems not in CVS. Attached. ...and thx for doing
Martin> the rest :-)

It is in:
http://www.lyx.org/cgi-bin/cvsweb.cgi/lyx-devel/src/FuncStatus.h

Maybe you had a problem because you had your own version in.

JMarc




Re: {Add] missing file in CVS

2002-01-09 Thread Martin Vermeer

On Wed, Jan 09, 2002 at 01:14:31PM +0100, Jean-Marc Lasgouttes wrote:

> Maybe you had a problem because you had your own version in.
> 
> JMarc

Yeah, that was it. (functionally equivalent to yours btw ;-)

Martin




msg31203/pgp0.pgp
Description: PGP signature


Latest CVS: missing file lexlength.h

2001-12-03 Thread Kayvan A. Sylvan

Looks like a forgotten cvs add:

[...]

make[1]: Entering directory `/home/kayvan/src/lyx/src'
make[1]: *** No rule to make target `lexlength.h', needed by `distdir'.  Stop.
make[1]: Leaving directory `/home/kayvan/src/lyx/src'
make: *** [distdir] Error 1

-- 
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)



Latest CVS: missing file lexlength.h

2001-12-03 Thread Kayvan A. Sylvan

Looks like a forgotten cvs add:

[...]

make[1]: Entering directory `/home/kayvan/src/lyx/src'
make[1]: *** No rule to make target `lexlength.h', needed by `distdir'.  Stop.
make[1]: Leaving directory `/home/kayvan/src/lyx/src'
make: *** [distdir] Error 1

-- 
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)



cannot compile in mathed/ (missing file?)

2001-11-09 Thread Jean-Marc Lasgouttes


I get:

../../lyx-devel/src/mathed/../ -I../.. -I../../../lyx-devel -I../../../lyx-devel/boost 
-I../../../lyx-devel/src/cheaders -I/afs/rocq/home/meval/common/include/ 
-I/usr/local/include/ -g -c -MD ../../../lyx-devel/src/mathed/math_deliminset.C
cxx: Error: ../../../lyx-devel/src/mathed/math_deliminset.C, line 11: could
  not open source file math_extern.h
#include math_extern.h
^
cxx: Info: 1 error detected in the compilation of 
../../../lyx-devel/src/mathed/math_deliminset.C.

So, where/what is math_extern.h?

JMarc



Re: cannot compile in mathed/ (missing file?)

2001-11-09 Thread Andre Poenitz

On Fri, Nov 09, 2001 at 11:26:48AM +0100, Jean-Marc Lasgouttes wrote:
 So, where/what is math_extern.h?


The 'math-extern' related stuff from 'math_data.C'. I split the latter
because it was getting too large for my taste, but forgot to 'cvs add' the
files...

Andre'

-- 
André Pönitz .. [EMAIL PROTECTED]



cannot compile in mathed/ (missing file?)

2001-11-09 Thread Jean-Marc Lasgouttes


I get:

../../lyx-devel/src/mathed/../ -I../.. -I../../../lyx-devel -I../../../lyx-devel/boost 
-I../../../lyx-devel/src/cheaders -I/afs/rocq/home/meval/common/include/ 
-I/usr/local/include/ -g -c -MD ../../../lyx-devel/src/mathed/math_deliminset.C
cxx: Error: ../../../lyx-devel/src/mathed/math_deliminset.C, line 11: could
  not open source file "math_extern.h"
#include "math_extern.h"
^
cxx: Info: 1 error detected in the compilation of 
"../../../lyx-devel/src/mathed/math_deliminset.C".

So, where/what is math_extern.h?

JMarc



Re: cannot compile in mathed/ (missing file?)

2001-11-09 Thread Andre Poenitz

On Fri, Nov 09, 2001 at 11:26:48AM +0100, Jean-Marc Lasgouttes wrote:
> So, where/what is math_extern.h?


The 'math-extern' related stuff from 'math_data.C'. I split the latter
because it was getting too large for my taste, but forgot to 'cvs add' the
files...

Andre'

-- 
André Pönitz .. [EMAIL PROTECTED]