added the makefile for tex2rtf compilation using configure, fixed compilation

for wxUSE_HELP == 0


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4102 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-10-21 13:40:47 +00:00
parent d54598dd85
commit ffaaaacbca
2 changed files with 42 additions and 11 deletions

View File

@@ -0,0 +1,21 @@
#
# File: makefile.unx
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for Tex2RTF (Unix)
top_srcdir = @top_srcdir@
top_builddir = ../../..
program_dir = utils/tex2rtf/src
PROGRAM=tex2rtf
OBJECTS = tex2rtf.o tex2any.o texutils.o rtfutils.o xlputils.o htmlutil.o readshg.o table.o
include ../../../src/makeprog.env

View File

@@ -29,7 +29,7 @@
#include <wx/timer.h>
#endif
#ifdef NO_GUI
#if defined(NO_GUI) || defined(__UNIX__)
#if wxUSE_IOSTREAMH
#include <iostream.h>
#include <fstream.h>
@@ -59,7 +59,10 @@ bool OkToClose = TRUE;
int passNumber = 1;
#ifndef NO_GUI
#if wxUSE_HELP
wxHelpController *HelpInstance = NULL;
#endif // wxUSE_HELP
#ifdef __WXMSW__
static char *ipc_buffer = NULL;
@@ -330,8 +333,10 @@ bool MyApp::OnInit()
(*frame->textWindow) << "Welcome to Julian Smart's LaTeX to RTF converter.\n";
// ShowOptions();
#if wxUSE_HELP
HelpInstance = new wxHelpController();
HelpInstance->Initialize("tex2rtf");
#endif // wxUSE_HELP
/*
* Read macro/initialisation file
@@ -410,7 +415,10 @@ int MyApp::OnExit()
delete TheTex2RTFServer;
wxDDECleanUp();
#endif
#if wxUSE_HELP
delete HelpInstance;
#endif // wxUSE_HELP
// TODO: this simulates zero-memory leaks!
// Otherwise there are just too many...
@@ -610,8 +618,10 @@ void MyFrame::OnModeXLP(wxCommandEvent& event)
void MyFrame::OnHelp(wxCommandEvent& event)
{
#if wxUSE_HELP
HelpInstance->LoadFile();
HelpInstance->DisplayContents();
#endif // wxUSE_HELP
}
void MyFrame::OnAbout(wxCommandEvent& event)