>  g++ -DHAVE_CONFIG_H -I. -I. -I../../src -Winvalid-pch --include=./pch.h 
> -I./.. -I../../boost -Wextra -Wall -I/usr/X11R6/include -O2 -MT 
> math_casesinset.lo -MD -MP -MF .deps/math_casesinset.Tpo -c math_casesinset.C 
> -o math_casesinset.o
> In file included from math_casesinset.C:23:
> ../../src/undo.h:20:27: error: ParagraphList.h: No such file or directory
> ../../src/undo.h:83: error: 'ParagraphList' does not name a type
> make[5]: *** [math_casesinset.lo] Error 1

The above was another "make dist" issue fixed by the following patch.

Please apply.

Index: src/Makefile.am
===================================================================
--- src/Makefile.am     (revision 13499)
+++ src/Makefile.am     (working copy)
@@ -11,6 +11,7 @@
 SUBDIRS = mathed insets graphics support frontends . $(CLIENT) tex2lyx
 
 EXTRA_DIST = config.h.in stamp-h.in version.C.in \
+       ParagraphList.h \
        Sectioning.h \
        Sectioning.C \
        Variables.C \
Index: src/support/Makefile.am
===================================================================
--- src/support/Makefile.am     (revision 13499)
+++ src/support/Makefile.am     (working copy)
@@ -5,7 +5,8 @@
 CLEANFILES += $(BUILT_SOURCES)
 
 EXTRA_DIST = package.C.in pch.h \
-       os_cygwin.C os_os2.C os_unix.C os_win32.C os_win32.h
+       os_cygwin.C os_os2.C os_unix.C os_win32.C os_win32.h \
+       RandomAccessList.h
 
 noinst_LTLIBRARIES = libsupport.la
 

Reply via email to