Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ texmacs.1
*.o
*.kdev4
.kdev4
*~
4 changes: 3 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ endif (USE_IMLIB2)

option (USE_SPARKLE "use Sparkle" OFF)

option(PDFHUMMUS_NO_TIFF "Disable TIFF in PDF Hummus" ON)
option (PDFHUMMUS_NO_TIFF "Disable TIFF in PDF Hummus" ON)

option (USE_SIDE_TOOLS "use side tools" ON)

if (APPLE)
set(MACOSX_EXTENSIONS 1)
Expand Down
4 changes: 2 additions & 2 deletions src/src/Graphics/Gui/widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ get_default_styled_font (int style) {
return get_default_font (tt, mini, bold);
}

#ifdef QTTEXMACS
bool use_side_tools= false;
#ifdef USE_SIDE_TOOLS
bool use_side_tools= true;
#else
bool use_side_tools= false;
#endif
Expand Down
2 changes: 2 additions & 0 deletions src/src/System/config.h.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@

#cmakedefine USE_STACK_TRACE 1

#cmakedefine USE_SIDE_TOOLS 1

/* Define to 1 if the X Window System is missing or not being used. */
#cmakedefine X_DISPLAY_MISSING 1

Expand Down
3 changes: 3 additions & 0 deletions src/src/System/config.in
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,9 @@
/* Use C++ stack backtraces */
#undef USE_STACK_TRACE

/* Use side tools */
#undef USE_SIDE_TOOLS

/* Use standard X11 port */
#undef X11TEXMACS

Expand Down