Merging again and again
This commit is contained in:
commit
a6aca5dccd
|
@ -11018,6 +11018,11 @@ cat >>confdefs.h <<\_ACEOF
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
|
|
||||||
|
cat >>confdefs.h <<\_ACEOF
|
||||||
|
#define FD_HEAP_SIZE 128
|
||||||
|
_ACEOF
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
cat >>confdefs.h <<\_ACEOF
|
||||||
#define AWAY_HEAP_SIZE 128
|
#define AWAY_HEAP_SIZE 128
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
@ -11094,6 +11099,11 @@ cat >>confdefs.h <<\_ACEOF
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
|
|
||||||
|
cat >>confdefs.h <<\_ACEOF
|
||||||
|
#define FD_HEAP_SIZE 1024
|
||||||
|
_ACEOF
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<\_ACEOF
|
cat >>confdefs.h <<\_ACEOF
|
||||||
#define AWAY_HEAP_SIZE 512
|
#define AWAY_HEAP_SIZE 512
|
||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
|
@ -32,6 +32,9 @@
|
||||||
/* Prefix where config files are installed. */
|
/* Prefix where config files are installed. */
|
||||||
#undef ETC_DIR
|
#undef ETC_DIR
|
||||||
|
|
||||||
|
/* Size of fd heap. */
|
||||||
|
#undef FD_HEAP_SIZE
|
||||||
|
|
||||||
/* Define to 1 if you have `alloca', as a function or macro. */
|
/* Define to 1 if you have `alloca', as a function or macro. */
|
||||||
#undef HAVE_ALLOCA
|
#undef HAVE_ALLOCA
|
||||||
|
|
||||||
|
|
|
@ -111,7 +111,7 @@ ircd_log_cb(const char *str)
|
||||||
static void
|
static void
|
||||||
ircd_restart_cb(const char *str)
|
ircd_restart_cb(const char *str)
|
||||||
{
|
{
|
||||||
restart(buf);
|
restart(str);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue