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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
0ac55dde
Commit
0ac55dde
authored
Jan 03, 2008
by
df@pippilotta.erinye.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use correct config_readline.h file
parent
f7527b78
Changes
35
Hide whitespace changes
Inline
Side-by-side
Showing
35 changed files
with
35 additions
and
35 deletions
+35
-35
cmd-line-utils/readline/bind.c
cmd-line-utils/readline/bind.c
+1
-1
cmd-line-utils/readline/callback.c
cmd-line-utils/readline/callback.c
+1
-1
cmd-line-utils/readline/compat.c
cmd-line-utils/readline/compat.c
+1
-1
cmd-line-utils/readline/complete.c
cmd-line-utils/readline/complete.c
+1
-1
cmd-line-utils/readline/display.c
cmd-line-utils/readline/display.c
+1
-1
cmd-line-utils/readline/funmap.c
cmd-line-utils/readline/funmap.c
+1
-1
cmd-line-utils/readline/histexpand.c
cmd-line-utils/readline/histexpand.c
+1
-1
cmd-line-utils/readline/histfile.c
cmd-line-utils/readline/histfile.c
+1
-1
cmd-line-utils/readline/history.c
cmd-line-utils/readline/history.c
+1
-1
cmd-line-utils/readline/histsearch.c
cmd-line-utils/readline/histsearch.c
+1
-1
cmd-line-utils/readline/input.c
cmd-line-utils/readline/input.c
+1
-1
cmd-line-utils/readline/isearch.c
cmd-line-utils/readline/isearch.c
+1
-1
cmd-line-utils/readline/keymaps.c
cmd-line-utils/readline/keymaps.c
+1
-1
cmd-line-utils/readline/kill.c
cmd-line-utils/readline/kill.c
+1
-1
cmd-line-utils/readline/macro.c
cmd-line-utils/readline/macro.c
+1
-1
cmd-line-utils/readline/mbutil.c
cmd-line-utils/readline/mbutil.c
+1
-1
cmd-line-utils/readline/misc.c
cmd-line-utils/readline/misc.c
+1
-1
cmd-line-utils/readline/nls.c
cmd-line-utils/readline/nls.c
+1
-1
cmd-line-utils/readline/parens.c
cmd-line-utils/readline/parens.c
+1
-1
cmd-line-utils/readline/readline.c
cmd-line-utils/readline/readline.c
+1
-1
cmd-line-utils/readline/rldefs.h
cmd-line-utils/readline/rldefs.h
+1
-1
cmd-line-utils/readline/rltty.c
cmd-line-utils/readline/rltty.c
+1
-1
cmd-line-utils/readline/rlwinsize.h
cmd-line-utils/readline/rlwinsize.h
+1
-1
cmd-line-utils/readline/savestring.c
cmd-line-utils/readline/savestring.c
+1
-1
cmd-line-utils/readline/search.c
cmd-line-utils/readline/search.c
+1
-1
cmd-line-utils/readline/shell.c
cmd-line-utils/readline/shell.c
+1
-1
cmd-line-utils/readline/signals.c
cmd-line-utils/readline/signals.c
+1
-1
cmd-line-utils/readline/tcap.h
cmd-line-utils/readline/tcap.h
+1
-1
cmd-line-utils/readline/terminal.c
cmd-line-utils/readline/terminal.c
+1
-1
cmd-line-utils/readline/text.c
cmd-line-utils/readline/text.c
+1
-1
cmd-line-utils/readline/tilde.c
cmd-line-utils/readline/tilde.c
+1
-1
cmd-line-utils/readline/undo.c
cmd-line-utils/readline/undo.c
+1
-1
cmd-line-utils/readline/util.c
cmd-line-utils/readline/util.c
+1
-1
cmd-line-utils/readline/vi_mode.c
cmd-line-utils/readline/vi_mode.c
+1
-1
cmd-line-utils/readline/xmalloc.c
cmd-line-utils/readline/xmalloc.c
+1
-1
No files found.
cmd-line-utils/readline/bind.c
View file @
0ac55dde
...
...
@@ -27,7 +27,7 @@
#endif
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <stdio.h>
...
...
cmd-line-utils/readline/callback.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include "rlconf.h"
...
...
cmd-line-utils/readline/compat.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <stdio.h>
...
...
cmd-line-utils/readline/complete.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/display.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/funmap.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#if !defined (BUFSIZ)
...
...
cmd-line-utils/readline/histexpand.c
View file @
0ac55dde
...
...
@@ -23,7 +23,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <stdio.h>
...
...
cmd-line-utils/readline/histfile.c
View file @
0ac55dde
...
...
@@ -31,7 +31,7 @@
#endif
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <stdio.h>
...
...
cmd-line-utils/readline/history.c
View file @
0ac55dde
...
...
@@ -26,7 +26,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <stdio.h>
...
...
cmd-line-utils/readline/histsearch.c
View file @
0ac55dde
...
...
@@ -23,7 +23,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <stdio.h>
...
...
cmd-line-utils/readline/input.c
View file @
0ac55dde
...
...
@@ -26,7 +26,7 @@
#endif
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/isearch.c
View file @
0ac55dde
...
...
@@ -27,7 +27,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/keymaps.c
View file @
0ac55dde
...
...
@@ -21,7 +21,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#if defined (HAVE_STDLIB_H)
...
...
cmd-line-utils/readline/kill.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/macro.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/mbutil.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/misc.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#if defined (HAVE_UNISTD_H)
...
...
cmd-line-utils/readline/nls.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/parens.c
View file @
0ac55dde
...
...
@@ -28,7 +28,7 @@
#include "rlconf.h"
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <stdio.h>
...
...
cmd-line-utils/readline/readline.c
View file @
0ac55dde
...
...
@@ -23,7 +23,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/rldefs.h
View file @
0ac55dde
...
...
@@ -27,7 +27,7 @@
#define _RLDEFS_H_
#if defined (HAVE_CONFIG_H)
# include "config.h"
# include "config
_readline
.h"
#endif
#include "rlstdc.h"
...
...
cmd-line-utils/readline/rltty.c
View file @
0ac55dde
...
...
@@ -23,7 +23,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/rlwinsize.h
View file @
0ac55dde
...
...
@@ -26,7 +26,7 @@
#define _RLWINSIZE_H_
#if defined (HAVE_CONFIG_H)
# include "config.h"
# include "config
_readline
.h"
#endif
/* Try to find the definitions of `struct winsize' and TIOGCWINSZ */
...
...
cmd-line-utils/readline/savestring.c
View file @
0ac55dde
...
...
@@ -21,7 +21,7 @@
59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#define READLINE_LIBRARY
#include
<config.h>
#include
"config_readline.h"
#ifdef HAVE_STRING_H
# include <string.h>
#endif
...
...
cmd-line-utils/readline/search.c
View file @
0ac55dde
...
...
@@ -23,7 +23,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/shell.c
View file @
0ac55dde
...
...
@@ -23,7 +23,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/signals.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <stdio.h>
/* Just for NULL. Yuck. */
...
...
cmd-line-utils/readline/tcap.h
View file @
0ac55dde
...
...
@@ -25,7 +25,7 @@
#define _RLTCAP_H_
#if defined (HAVE_CONFIG_H)
# include "config.h"
# include "config
_readline
.h"
#endif
#if defined (HAVE_TERMCAP_H)
...
...
cmd-line-utils/readline/terminal.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/text.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#if defined (HAVE_UNISTD_H)
...
...
cmd-line-utils/readline/tilde.c
View file @
0ac55dde
...
...
@@ -20,7 +20,7 @@
Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#if defined (HAVE_UNISTD_H)
...
...
cmd-line-utils/readline/undo.c
View file @
0ac55dde
...
...
@@ -23,7 +23,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/util.c
View file @
0ac55dde
...
...
@@ -22,7 +22,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/vi_mode.c
View file @
0ac55dde
...
...
@@ -32,7 +32,7 @@
#if defined (VI_MODE)
#if defined (HAVE_CONFIG_H)
# include
<config.h>
# include
"config_readline.h"
#endif
#include <sys/types.h>
...
...
cmd-line-utils/readline/xmalloc.c
View file @
0ac55dde
...
...
@@ -21,7 +21,7 @@
#define READLINE_LIBRARY
#if defined (HAVE_CONFIG_H)
#include
<config.h>
#include
"config_readline.h"
#endif
#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