mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add HAVE_VARARGS_H to CFLAGS
Add VISIBLE_STATS to CFLAGS, fix complete.c for successful compilation with VISIBLE_STATS
This commit is contained in:
parent
b276b1cd0d
commit
aec37cc797
2 changed files with 3 additions and 5 deletions
|
|
@ -1,11 +1,11 @@
|
|||
# $Id: Makefile,v 1.4 1994/05/09 23:23:40 ache Exp $
|
||||
# $Id: Makefile,v 1.5 1994/05/11 15:11:01 ache Exp $
|
||||
|
||||
SHLIB_MAJOR=1
|
||||
SHLIB_MINOR=0
|
||||
|
||||
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/readline -DVOID_SIGHANDLER \
|
||||
-DHAVE_UNISTD_H -DHAVE_STRING_H -DHAVE_STDLIB_H \
|
||||
-DVI_MODE -Dstricmp=strcasecmp -Dstrnicmp=strncasecmp
|
||||
-DHAVE_UNISTD_H -DHAVE_STRING_H -DHAVE_STDLIB_H -DHAVE_VARARGS_H \
|
||||
-DVISIBLE_STATS -DVI_MODE -Dstricmp=strcasecmp -Dstrnicmp=strncasecmp
|
||||
|
||||
LIB= readline
|
||||
SRCS+= readline.c funmap.c keymaps.c vi_mode.c parens.c \
|
||||
|
|
|
|||
|
|
@ -100,8 +100,6 @@ Function *rl_symbolic_link_hook = (Function *)NULL;
|
|||
/* Non-zero means readline completion functions perform tilde expansion. */
|
||||
int rl_complete_with_tilde_expansion = 0;
|
||||
|
||||
#define VISIBLE_STATS
|
||||
|
||||
#if defined (VISIBLE_STATS)
|
||||
# if !defined (X_OK)
|
||||
# define X_OK 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue