mirror of https://github.com/neutrinolabs/xrdp
fix build with --enable-xrdpdebug=yes
This commit is contained in:
parent
cd8b5f0030
commit
37b4a14b54
|
@ -18,6 +18,12 @@ AM_CPPFLAGS = \
|
|||
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
||||
-DXRDP_LOG_PATH=\"${localstatedir}/log\"
|
||||
|
||||
if XRDP_DEBUG
|
||||
AM_CPPFLAGS += -DXRDP_DEBUG
|
||||
else
|
||||
AM_CPPFLAGS += -DXRDP_NODEBUG
|
||||
endif
|
||||
|
||||
AM_CFLAGS = $(OPENSSL_CFLAGS)
|
||||
|
||||
module_LTLIBRARIES = \
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include <pthread.h>
|
||||
|
||||
#include "arch.h"
|
||||
#include "defines.h"
|
||||
|
||||
/* logging buffer size */
|
||||
#define LOG_BUFFER_SIZE 1024
|
||||
|
|
|
@ -5,6 +5,12 @@ AM_CPPFLAGS = \
|
|||
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
||||
-I$(top_srcdir)/common
|
||||
|
||||
if XRDP_DEBUG
|
||||
AM_CPPFLAGS += -DXRDP_DEBUG
|
||||
else
|
||||
AM_CPPFLAGS += -DXRDP_NODEBUG
|
||||
endif
|
||||
|
||||
module_LTLIBRARIES = \
|
||||
libmc.la
|
||||
|
||||
|
|
|
@ -9,6 +9,12 @@ AM_CPPFLAGS = \
|
|||
-I$(top_srcdir)/common \
|
||||
-I$(top_srcdir)/sesman/libscp
|
||||
|
||||
if XRDP_DEBUG
|
||||
AM_CPPFLAGS += -DXRDP_DEBUG
|
||||
else
|
||||
AM_CPPFLAGS += -DXRDP_NODEBUG
|
||||
endif
|
||||
|
||||
if SESMAN_NOPAM
|
||||
AUTH_C = verify_user.c
|
||||
AUTH_LIB = -lcrypt
|
||||
|
|
|
@ -11,6 +11,12 @@ AM_CPPFLAGS = \
|
|||
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
||||
-I$(top_srcdir)/common
|
||||
|
||||
if XRDP_DEBUG
|
||||
AM_CPPFLAGS += -DXRDP_DEBUG
|
||||
else
|
||||
AM_CPPFLAGS += -DXRDP_NODEBUG
|
||||
endif
|
||||
|
||||
CHANSRV_EXTRA_LIBS =
|
||||
|
||||
if XRDP_FUSE
|
||||
|
|
|
@ -5,6 +5,12 @@ AM_CPPFLAGS = \
|
|||
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
||||
-I$(top_srcdir)/common
|
||||
|
||||
if XRDP_DEBUG
|
||||
AM_CPPFLAGS += -DXRDP_DEBUG
|
||||
else
|
||||
AM_CPPFLAGS += -DXRDP_NODEBUG
|
||||
endif
|
||||
|
||||
module_LTLIBRARIES = \
|
||||
libscp.la
|
||||
|
||||
|
|
|
@ -54,12 +54,12 @@ scp_process_start(void *sck)
|
|||
if (sdata->version == 0)
|
||||
{
|
||||
/* starts processing an scp v0 connection */
|
||||
LOG_DBG("accept ok, go on with scp v0", 0);
|
||||
LOG_DBG("accept ok, go on with scp v0");
|
||||
scp_v0_process(&scon, sdata);
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG_DBG("accept ok, go on with scp v1", 0);
|
||||
LOG_DBG("accept ok, go on with scp v1");
|
||||
/*LOG_DBG("user: %s\npass: %s",sdata->username, sdata->password);*/
|
||||
scp_v1_process(&scon, sdata);
|
||||
}
|
||||
|
|
10
sesman/sig.c
10
sesman/sig.c
|
@ -167,7 +167,7 @@ sig_handler_thread(void *arg)
|
|||
|
||||
do
|
||||
{
|
||||
LOG_DBG(&(g_cfg->log), "calling sigwait()", 0);
|
||||
LOG_DBG("calling sigwait()");
|
||||
sigwait(&waitmask, &recv_signal);
|
||||
|
||||
switch (recv_signal)
|
||||
|
@ -175,22 +175,22 @@ sig_handler_thread(void *arg)
|
|||
case SIGHUP:
|
||||
//reload cfg
|
||||
//we must stop & restart logging, or copy logging cfg!!!!
|
||||
LOG_DBG("sesman received SIGHUP", 0);
|
||||
LOG_DBG("sesman received SIGHUP");
|
||||
//return 0;
|
||||
break;
|
||||
case SIGCHLD:
|
||||
/* a session died */
|
||||
LOG_DBG("sesman received SIGCHLD", 0);
|
||||
LOG_DBG("sesman received SIGCHLD");
|
||||
sig_sesman_session_end(SIGCHLD);
|
||||
break;
|
||||
case SIGINT:
|
||||
/* we die */
|
||||
LOG_DBG("sesman received SIGINT", 0);
|
||||
LOG_DBG("sesman received SIGINT");
|
||||
sig_sesman_shutdown(recv_signal);
|
||||
break;
|
||||
case SIGTERM:
|
||||
/* we die */
|
||||
LOG_DBG("sesman received SIGTERM", 0);
|
||||
LOG_DBG("sesman received SIGTERM");
|
||||
sig_sesman_shutdown(recv_signal);
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -7,6 +7,12 @@ AM_CPPFLAGS = \
|
|||
-I$(top_srcdir)/sesman/libscp \
|
||||
-I$(top_srcdir)/sesman
|
||||
|
||||
if XRDP_DEBUG
|
||||
AM_CPPFLAGS += -DXRDP_DEBUG
|
||||
else
|
||||
AM_CPPFLAGS += -DXRDP_NODEBUG
|
||||
endif
|
||||
|
||||
AM_CFLAGS = $(X_CFLAGS)
|
||||
|
||||
bin_PROGRAMS = \
|
||||
|
|
|
@ -5,6 +5,12 @@ AM_CPPFLAGS = \
|
|||
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
||||
-I$(top_srcdir)/common
|
||||
|
||||
if XRDP_DEBUG
|
||||
AM_CPPFLAGS += -DXRDP_DEBUG
|
||||
else
|
||||
AM_CPPFLAGS += -DXRDP_NODEBUG
|
||||
endif
|
||||
|
||||
module_LTLIBRARIES = \
|
||||
libvnc.la
|
||||
|
||||
|
|
|
@ -1388,7 +1388,6 @@ lib_mod_connect(struct vnc *v)
|
|||
trans_delete(v->trans);
|
||||
v->trans = 0;
|
||||
v->server_msg(v, "some problem", 0);
|
||||
LIB_DEBUG(mod, "out lib_mod_connect error");
|
||||
return 1;
|
||||
}
|
||||
else
|
||||
|
|
|
@ -5,6 +5,12 @@ AM_CPPFLAGS = \
|
|||
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
||||
-I$(top_srcdir)/common
|
||||
|
||||
if XRDP_DEBUG
|
||||
AM_CPPFLAGS += -DXRDP_DEBUG
|
||||
else
|
||||
AM_CPPFLAGS += -DXRDP_NODEBUG
|
||||
endif
|
||||
|
||||
module_LTLIBRARIES = \
|
||||
libxup.la
|
||||
|
||||
|
|
Loading…
Reference in New Issue