Abdelrazak Younes a écrit :
Bennett Helm a écrit :
This should solve your problem until the makefile is fixed.
Thanks, Abdel. I now run into a new problem; any new suggestions?
try to include scoped_ptr at the top of QLMenubar.h:
#include <boost/scoped_ptr.hpp>
The attached patch will do so.
Abdel.
Index: D:/msys/home/yns/src/lyx-svn/trunk/src/frontends/qt4/QLMenubar.h
===================================================================
--- D:/msys/home/yns/src/lyx-svn/trunk/src/frontends/qt4/QLMenubar.h
(revision 13312)
+++ D:/msys/home/yns/src/lyx-svn/trunk/src/frontends/qt4/QLMenubar.h
(working copy)
@@ -15,7 +15,11 @@
#include "frontends/Menubar.h"
-#include <map>
+#include <map>
+
+#ifdef Q_WS_MACX
+#include <boost/scoped_ptr.hpp>
+#endif
#include <QObject>