Corrected Motif build,

Updated testconf


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3342 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-08-11 13:36:47 +00:00
parent 92afa2b150
commit c0854a089c
3 changed files with 11 additions and 6 deletions

View File

@@ -891,10 +891,6 @@ dnl disable static libs by default, this takes too much time...
dnl libtool doesn't work on anything but Linux and maybe dnl libtool doesn't work on anything but Linux and maybe
dnl ***BSD dnl ***BSD
SHLIB_LINKER=
SHLIB_LINKER_FLAG=
SHLIB_CFLAG=
case "${host}" in case "${host}" in
*-hp-hpux* ) *-hp-hpux* )
AM_DISABLE_SHARED AM_DISABLE_SHARED
@@ -941,6 +937,14 @@ esac
AM_PROG_LIBTOOL AM_PROG_LIBTOOL
dnl ---------------------------------------------------------------------------
dnl things for shared libraries without libtool
dnl ---------------------------------------------------------------------------
SHARED_LINKER=gcc -shared
SHARED_LINKER_FLAG=
SHARED_CFLAG=
dnl --------------------------------------------------------------------------- dnl ---------------------------------------------------------------------------
dnl Define search path for includes and libraries: all headers and libs will be dnl Define search path for includes and libraries: all headers and libs will be
dnl looked for in all directories of this path dnl looked for in all directories of this path

View File

@@ -97,6 +97,7 @@ libwx_motif_la_SOURCES = \
sckipc.cpp \ sckipc.cpp \
sckstrm.cpp \ sckstrm.cpp \
serbase.cpp \ serbase.cpp \
sizer.cpp \
socket.cpp \ socket.cpp \
stream.cpp \ stream.cpp \
tbarbase.cpp \ tbarbase.cpp \

View File

@@ -64,7 +64,7 @@ extern wxList wxPendingDelete;
static bool wxTopLevelUsed = FALSE; static bool wxTopLevelUsed = FALSE;
#if !USE_SHARED_LIBRARY #if !USE_SHARED_LIBRARY
BEGIN_EVENT_TABLE(wxFrame, wxWindowBase) BEGIN_EVENT_TABLE(wxFrame, wxWindow)
EVT_SIZE(wxFrame::OnSize) EVT_SIZE(wxFrame::OnSize)
EVT_ACTIVATE(wxFrame::OnActivate) EVT_ACTIVATE(wxFrame::OnActivate)
EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight) EVT_MENU_HIGHLIGHT_ALL(wxFrame::OnMenuHighlight)
@@ -73,7 +73,7 @@ BEGIN_EVENT_TABLE(wxFrame, wxWindowBase)
EVT_CLOSE(wxFrame::OnCloseWindow) EVT_CLOSE(wxFrame::OnCloseWindow)
END_EVENT_TABLE() END_EVENT_TABLE()
IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindowBase) IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
#endif #endif
#if wxUSE_NATIVE_STATUSBAR #if wxUSE_NATIVE_STATUSBAR