Commit 5fb792ec authored by unknown's avatar unknown
Browse files

removed editline and replaced with mysql readline

    created new facade object for CommandInterpreter
    removed CPC #if 0 code
    removed editline from mgmtsrver, no replace with readline since interface is obsolete anyways


BitKeeper/deleted/.del-MANIFEST~e8c948c4a4413f8d:
  Delete: ndb/src/common/editline/MANIFEST
BitKeeper/deleted/.del-Makefile.am~dfbe493d6e2d25f4:
  Delete: ndb/src/common/editline/Makefile.am
BitKeeper/deleted/.del-Makefile_old~90ac19a1668ecdd5:
  Delete: ndb/src/common/editline/Makefile_old
BitKeeper/deleted/.del-README~3f39f9b8294466e8:
  Delete: ndb/src/common/editline/README
BitKeeper/deleted/.del-complete.c~a1bc3055fd90e27f:
  Delete: ndb/src/common/editline/complete.c
BitKeeper/deleted/.del-editline.3~1f9bb4274cf4381:
  Delete: ndb/src/common/editline/editline.3
BitKeeper/deleted/.del-editline.c~5b759f3e5fd3c196:
  Delete: ndb/src/common/editline/editline.c
BitKeeper/deleted/.del-editline_internal.h~96ca8d53fb758586:
  Delete: ndb/src/common/editline/editline_internal.h
BitKeeper/deleted/.del-editline_win32.c~45b257bec279826e:
  Delete: ndb/src/common/editline/editline_win32.c
BitKeeper/deleted/.del-sysunix.c~8e7a6901783efd17:
  Delete: ndb/src/common/editline/sysunix.c
BitKeeper/deleted/.del-unix.h~1c244c1d4ba6c6fb:
  Delete: ndb/src/common/editline/unix.h
BitKeeper/deleted/.del-Makefile~46cecfa6cd1a4e6b:
  Delete: ndb/src/common/editline/test/Makefile
BitKeeper/deleted/.del-testit.c~82837111b1876e44:
  Delete: ndb/src/common/editline/test/testit.c
BitKeeper/deleted/.del-Makefile_old~59409aa4debaeb90:
  Delete: ndb/src/common/Makefile_old
BitKeeper/deleted/.del-Makefile_old~92af3f5a7f24caf:
  Delete: ndb/src/mgmclient/Makefile_old
ndb/test/src/CpcClient.cpp:
  Rename: ndb/src/mgmclient/CpcClient.cpp -> ndb/test/src/CpcClient.cpp
ndb/test/include/CpcClient.hpp:
  Rename: ndb/src/mgmclient/CpcClient.hpp -> ndb/test/include/CpcClient.hpp
configure.in:
  removed editline
ndb/src/common/Makefile.am:
  removed editline
ndb/src/mgmclient/CommandInterpreter.cpp:
  removed editline and replaced with mysql readline
  created new facade object for CommandInterpreter
  removed CPC #if 0 code
ndb/src/mgmclient/Makefile.am:
  removed editline and replaced with mysql readline
  created new facade object for CommandInterpreter
  removed CPC #if 0 code
ndb/src/mgmclient/main.cpp:
  removed editline and replaced with mysql readline
  created new facade object for CommandInterpreter
  removed CPC #if 0 code
ndb/src/mgmclient/ndb_mgmclient.hpp:
  new facade object for CommandInterpreter
ndb/src/mgmsrv/CommandInterpreter.hpp:
  removed editline from mgmtsrver, no replace with readline since interface is obsolete anyways
ndb/src/mgmsrv/Makefile.am:
  removed editline from mgmtsrver, no replace with readline since interface is obsolete anyways
ndb/test/run-test/Makefile.am:
  moved cpc code to test
ndb/test/src/Makefile.am:
  moved cpc code to test
ndb/test/tools/Makefile.am:
  moved cpc code to test
parent d93ff572
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -3093,7 +3093,6 @@ AC_CONFIG_FILES(ndb/Makefile ndb/include/Makefile dnl
   ndb/src/common/logger/Makefile dnl
   ndb/src/common/transporter/Makefile dnl
   ndb/src/common/mgmcommon/Makefile dnl
   ndb/src/common/editline/Makefile dnl
   ndb/src/kernel/Makefile dnl
   ndb/src/kernel/error/Makefile dnl
   ndb/src/kernel/blocks/Makefile dnl
+1 −1
Original line number Diff line number Diff line
SUBDIRS =	portlib debugger util logger transporter mgmcommon editline
SUBDIRS =	portlib debugger util logger transporter mgmcommon

noinst_LTLIBRARIES = libcommon.la

ndb/src/common/Makefile_old

deleted100644 → 0
+0 −15
Original line number Diff line number Diff line
include .defs.mk

LIB_DIRS := \
        portlib		\
        debugger	\
        util		\
        logger

ifneq ($(USE_EDITLINE), N)
LIB_DIRS += editline
endif

DIRS := transporter mgmcommon

include $(NDB_TOP)/Epilogue.mk

ndb/src/common/editline/MANIFEST

deleted100644 → 0
+0 −15
Original line number Diff line number Diff line
File Name		Description
--------------------------------------------------------
README			Release notes and copyright
MANIFEST		This shipping list
Make.os9		OS-9 makefile
Makefile		Unix makefile
complete.c		Filename completion routines
editline.3		Manual page for editline library
editline.c		Line-editing routines
editline_internal.h	Internal library header file
os9.h			OS-9-specific declarations
sysos9.c		OS-9-specific routines
sysunix.c		Unix-specific routines
testit.c		Test driver
unix.h			Unix-specific declarations
+0 −10
Original line number Diff line number Diff line

noinst_LIBRARIES = libeditline.a

libeditline_a_SOURCES = complete.c editline.c sysunix.c

INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/ndb/include
DEFS = -DANSI_ARROWS -DHAVE_TCGETATTR -DSYS_UNIX

# Don't update the files from bitkeeper
%::SCCS/s.%
Loading