Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
32a87293
Commit
32a87293
authored
Apr 20, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
manual merge
parents
4156f9fa
b26d29a0
Changes
31
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
60 additions
and
90 deletions
+60
-90
cmd-line-utils/readline/bind.c
cmd-line-utils/readline/bind.c
+1
-3
cmd-line-utils/readline/callback.c
cmd-line-utils/readline/callback.c
+1
-3
cmd-line-utils/readline/complete.c
cmd-line-utils/readline/complete.c
+1
-3
cmd-line-utils/readline/config_readline.h
cmd-line-utils/readline/config_readline.h
+30
-0
cmd-line-utils/readline/display.c
cmd-line-utils/readline/display.c
+1
-3
cmd-line-utils/readline/funmap.c
cmd-line-utils/readline/funmap.c
+1
-3
cmd-line-utils/readline/histexpand.c
cmd-line-utils/readline/histexpand.c
+1
-3
cmd-line-utils/readline/histfile.c
cmd-line-utils/readline/histfile.c
+1
-3
cmd-line-utils/readline/history.c
cmd-line-utils/readline/history.c
+1
-3
cmd-line-utils/readline/histsearch.c
cmd-line-utils/readline/histsearch.c
+1
-3
cmd-line-utils/readline/input.c
cmd-line-utils/readline/input.c
+1
-3
cmd-line-utils/readline/isearch.c
cmd-line-utils/readline/isearch.c
+1
-3
cmd-line-utils/readline/keymaps.c
cmd-line-utils/readline/keymaps.c
+1
-3
cmd-line-utils/readline/kill.c
cmd-line-utils/readline/kill.c
+1
-3
cmd-line-utils/readline/macro.c
cmd-line-utils/readline/macro.c
+1
-3
cmd-line-utils/readline/mbutil.c
cmd-line-utils/readline/mbutil.c
+1
-3
cmd-line-utils/readline/misc.c
cmd-line-utils/readline/misc.c
+1
-3
cmd-line-utils/readline/nls.c
cmd-line-utils/readline/nls.c
+1
-3
cmd-line-utils/readline/parens.c
cmd-line-utils/readline/parens.c
+1
-3
cmd-line-utils/readline/readline.c
cmd-line-utils/readline/readline.c
+1
-3
cmd-line-utils/readline/rltty.c
cmd-line-utils/readline/rltty.c
+1
-3
cmd-line-utils/readline/search.c
cmd-line-utils/readline/search.c
+1
-3
cmd-line-utils/readline/shell.c
cmd-line-utils/readline/shell.c
+1
-3
cmd-line-utils/readline/signals.c
cmd-line-utils/readline/signals.c
+1
-3
cmd-line-utils/readline/terminal.c
cmd-line-utils/readline/terminal.c
+1
-3
cmd-line-utils/readline/text.c
cmd-line-utils/readline/text.c
+1
-3
cmd-line-utils/readline/tilde.c
cmd-line-utils/readline/tilde.c
+1
-3
cmd-line-utils/readline/undo.c
cmd-line-utils/readline/undo.c
+1
-3
cmd-line-utils/readline/util.c
cmd-line-utils/readline/util.c
+1
-3
cmd-line-utils/readline/vi_mode.c
cmd-line-utils/readline/vi_mode.c
+1
-3
cmd-line-utils/readline/xmalloc.c
cmd-line-utils/readline/xmalloc.c
+1
-3
No files found.
cmd-line-utils/readline/bind.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <stdio.h>
#include <sys/types.h>
...
...
cmd-line-utils/readline/callback.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include "rlconf.h"
...
...
cmd-line-utils/readline/complete.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
#include <fcntl.h>
...
...
cmd-line-utils/readline/config_readline.h
0 → 100644
View file @
32a87293
/*
config-readline.h Maintained by hand. Contains the readline specific
parts from config.h.in in readline 4.3
*/
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
/*
Ultrix botches type-ahead when switching from canonical to
non-canonical mode, at least through version 4.3
*/
#if !defined (HAVE_TERMIOS_H) || !defined (HAVE_TCGETATTR) || defined (ultrix)
# define TERMIOS_MISSING
#endif
#if defined (STRCOLL_BROKEN)
# undef HAVE_STRCOLL
#endif
#if defined (__STDC__) && defined (HAVE_STDARG_H)
# define PREFER_STDARG
# define USE_VARARGS
#else
# if defined (HAVE_VARARGS_H)
# define PREFER_VARARGS
# define USE_VARARGS
# endif
#endif
cmd-line-utils/readline/display.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
...
...
cmd-line-utils/readline/funmap.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#if !defined (BUFSIZ)
#include <stdio.h>
...
...
cmd-line-utils/readline/histexpand.c
View file @
32a87293
...
...
@@ -22,9 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <stdio.h>
...
...
cmd-line-utils/readline/histfile.c
View file @
32a87293
...
...
@@ -25,9 +25,7 @@
you can call. I think I have done that. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <stdio.h>
...
...
cmd-line-utils/readline/history.c
View file @
32a87293
...
...
@@ -25,9 +25,7 @@
you can call. I think I have done that. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <stdio.h>
...
...
cmd-line-utils/readline/histsearch.c
View file @
32a87293
...
...
@@ -22,9 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <stdio.h>
#if defined (HAVE_STDLIB_H)
...
...
cmd-line-utils/readline/input.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
#include <fcntl.h>
...
...
cmd-line-utils/readline/isearch.c
View file @
32a87293
...
...
@@ -26,9 +26,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
...
...
cmd-line-utils/readline/keymaps.c
View file @
32a87293
...
...
@@ -20,9 +20,7 @@
Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#if defined (HAVE_STDLIB_H)
# include <stdlib.h>
...
...
cmd-line-utils/readline/kill.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
...
...
cmd-line-utils/readline/macro.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
...
...
cmd-line-utils/readline/mbutil.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
#include <fcntl.h>
...
...
cmd-line-utils/readline/misc.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#if defined (HAVE_UNISTD_H)
# include <unistd.h>
...
...
cmd-line-utils/readline/nls.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
...
...
cmd-line-utils/readline/parens.c
View file @
32a87293
...
...
@@ -23,9 +23,7 @@
#include "rlconf.h"
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <stdio.h>
#include <sys/types.h>
...
...
cmd-line-utils/readline/readline.c
View file @
32a87293
...
...
@@ -22,9 +22,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
#include "posixstat.h"
...
...
cmd-line-utils/readline/rltty.c
View file @
32a87293
...
...
@@ -22,9 +22,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
#include <signal.h>
...
...
cmd-line-utils/readline/search.c
View file @
32a87293
...
...
@@ -22,9 +22,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
#include <stdio.h>
...
...
cmd-line-utils/readline/shell.c
View file @
32a87293
...
...
@@ -22,9 +22,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
...
...
cmd-line-utils/readline/signals.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <stdio.h>
/* Just for NULL. Yuck. */
#include <sys/types.h>
...
...
cmd-line-utils/readline/terminal.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
#include "posixstat.h"
...
...
cmd-line-utils/readline/text.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#if defined (HAVE_UNISTD_H)
# include <unistd.h>
...
...
cmd-line-utils/readline/tilde.c
View file @
32a87293
...
...
@@ -19,9 +19,7 @@
along with Readline; see the file COPYING. If not, write to the Free
Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#if defined (HAVE_UNISTD_H)
# ifdef _MINIX
...
...
cmd-line-utils/readline/undo.c
View file @
32a87293
...
...
@@ -22,9 +22,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
...
...
cmd-line-utils/readline/util.c
View file @
32a87293
...
...
@@ -21,9 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
#include <fcntl.h>
...
...
cmd-line-utils/readline/vi_mode.c
View file @
32a87293
...
...
@@ -31,9 +31,7 @@
#if defined (VI_MODE)
#if defined (HAVE_CONFIG_H)
# include <config.h>
#endif
#include "config_readline.h"
#include <sys/types.h>
...
...
cmd-line-utils/readline/xmalloc.c
View file @
32a87293
...
...
@@ -20,9 +20,7 @@
Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
#include <config.h>
#endif
#include "config_readline.h"
#include <stdio.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment