Skip to content

Commit

Permalink
More notes and fixes - all .cpp files build ok
Browse files Browse the repository at this point in the history
  • Loading branch information
rlisagor committed Apr 7, 2009
1 parent c187527 commit 2e1e09b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 290 deletions.
20 changes: 9 additions & 11 deletions linux-notes.txt
Expand Up @@ -11,18 +11,16 @@ Ubuntu packages required before building:

These files do not compile, probably due to Windows dependencies:

- CygwinDlg.cpp
- ExceptionHandler.cpp
- ExceptionAttacher.cpp
- GetWinVer.cpp
- IEHtmlWin.cpp
- MiniVersion.cpp
- ShellContextMenu.cpp
- wxactivex.cpp
- CygwinDlg.cpp - not needed, all uses are commented out
- ExceptionHandler.cpp - never used?
- ExceptionAttacher.cpp - never used?
- GetWinVer.cpp - only used by ExceptionHandler
- IEHtmlWin.cpp - cannot be compiled, replaced by MozillaHtmlWnd? all use is commented out
- MiniVersion.cpp - only used by ExceptionHandler
- ShellContextMenu.cpp - cannot be compiled, should be replaced with Gnome/KDE equivalent
- wxactivex.cpp - only used by IEHtmlWin, cannot be compiled

These files do not compile for other reasons:

- styler-users.cpp
- MozillaHtmlWnd.cpp
- Utf.cpp
- MozillaHtmlWnd.cpp - incomplete?

2 changes: 1 addition & 1 deletion src/Makefile
Expand Up @@ -5,7 +5,7 @@ LIBINCLUDES = -I../external/out/include -I../external/out/usr/include -I/usr/inc
INCLUDES = $(WXINCLUDES) $(GTKINCLUDES) $(LIBINCLUDES) -I../ecore -I.

CMPOPTS = -Wno-write-strings -DHAVE_CONFIG_H
EXCEPT = CygwinDlg.cpp ExceptionHandler.cpp ExceptionAttacher.cpp GetWinVer.cpp IEHtmlWin.cpp MiniVersion.cpp ShellContextMenu.cpp wxactivex.cpp
EXCEPT = CygwinDlg.cpp ExceptionHandler.cpp ExceptionAttacher.cpp GetWinVer.cpp IEHtmlWin.cpp MiniVersion.cpp MozillaHtmlWnd.cpp ShellContextMenu.cpp wxactivex.cpp
SRCS = $(filter-out $(EXCEPT), $(wildcard *.cpp))
OBJS = $(SRCS:.cpp=.o)

Expand Down
3 changes: 2 additions & 1 deletion src/Utf.h
Expand Up @@ -15,6 +15,7 @@
#define __UTF_H__

#include "wx/wxprec.h" // For compilers that support precompilation, includes "wx/wx.h".
#include <wx/sstream.h>

// UTF-8 Support functions

Expand All @@ -26,4 +27,4 @@ size_t ConvertToUTF8(const char* source, const size_t source_len, const wxMBConv
size_t ConvertFromUTF8(const wxCharBuffer& utf8_buff, const wxMBConv& conv, wxWCharBuffer& wchar_buff,
size_t& wchar_buff_len, wxCharBuffer& dest_buff, size_t& dest_buff_len, size_t char_len);

#endif // __UTF_H__
#endif // __UTF_H__
277 changes: 0 additions & 277 deletions src/stdint.h

This file was deleted.

1 change: 1 addition & 0 deletions src/styler_users.h
Expand Up @@ -3,6 +3,7 @@

#include "wx/wxprec.h" // For compilers that support precompilation, includes "wx/wx.h".
#include "Catalyst.h"
#include "Document.h"
#include "StyleRun.h"
#include "styler.h"

Expand Down

0 comments on commit 2e1e09b

Please sign in to comment.