mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
93fb8bb235
Apart strict-aliasing warnings, fix the remaining warnings generated by GCC 4.4.4 -Wall and -Wextra flags. One major source of warnings was the in-house function my_bcmp which (unconventionally) took pointers to unsigned characters as the byte sequences to be compared. Since my_bcmp and bcmp are deprecated functions whose only difference with memcmp is the return value, every use of the function is replaced with memcmp as the special return value wasn't actually being used by any caller. There were also various other warnings, mostly due to type mismatches, missing return values, missing prototypes, dead code (unreachable) and ignored return values.
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
## Process this file with automake to create Makefile.in
|
|
# Makefile for the GNU readline library.
|
|
# Copyright (C) 1994,1996,1997 Free Software Foundation, Inc.
|
|
|
|
# Last -I$(top_srcdir) needed for RedHat!
|
|
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include \
|
|
-I$(top_srcdir)
|
|
|
|
noinst_LIBRARIES = libreadline.a
|
|
|
|
libreadline_a_SOURCES = readline.c funmap.c keymaps.c \
|
|
vi_mode.c parens.c rltty.c \
|
|
complete.c bind.c isearch.c \
|
|
display.c signals.c \
|
|
util.c kill.c \
|
|
undo.c macro.c input.c \
|
|
callback.c terminal.c xmalloc.c \
|
|
history.c histsearch.c histexpand.c \
|
|
histfile.c nls.c search.c \
|
|
shell.c tilde.c misc.c text.c mbutil.c \
|
|
compat.c savestring.c
|
|
|
|
noinst_HEADERS = readline.h chardefs.h keymaps.h \
|
|
history.h tilde.h rlmbutil.h rltypedefs.h rlprivate.h \
|
|
rlshell.h xmalloc.h \
|
|
\
|
|
config_readline.h rldefs.h histlib.h rlwinsize.h \
|
|
posixstat.h posixdir.h posixjmp.h \
|
|
tilde.h rlconf.h rltty.h ansi_stdlib.h \
|
|
tcap.h rlstdc.h
|
|
|
|
EXTRA_DIST= emacs_keymap.c vi_keymap.c
|
|
|
|
DEFS = -DMYSQL_CLIENT_NO_THREADS -DHAVE_CONFIG_H -DNO_KILL_INTR -D_GNU_SOURCE=1
|
|
|
|
# Don't update the files from bitkeeper
|
|
%::SCCS/s.%
|