mirror of https://github.com/neutrinolabs/xrdp
Moved bin/xrdp-waitforx to libexec/xrdp/waitforx
This commit is contained in:
parent
eeaa803948
commit
3681ecdf23
|
@ -5,7 +5,7 @@ AM_CPPFLAGS = \
|
|||
-DXRDP_SYSCONF_PATH=\"${sysconfdir}\" \
|
||||
-DXRDP_CFG_PATH=\"${sysconfdir}/xrdp\" \
|
||||
-DXRDP_SBIN_PATH=\"${sbindir}\" \
|
||||
-DXRDP_BIN_PATH=\"${bindir}\" \
|
||||
-DXRDP_LIBEXEC_PATH=\"${libexecdir}/xrdp\" \
|
||||
-DXRDP_SHARE_PATH=\"${datadir}/xrdp\" \
|
||||
-DXRDP_PID_PATH=\"${localstatedir}/run\" \
|
||||
-DXRDP_SOCKET_PATH=\"${socketdir}\" \
|
||||
|
|
|
@ -21,11 +21,11 @@ wait_for_xserver(int display)
|
|||
|
||||
LOG(LOG_LEVEL_DEBUG, "Waiting for X server to start on display %d", display);
|
||||
|
||||
g_snprintf(exe_cmd, sizeof(exe_cmd), "%s/xrdp-waitforx", XRDP_BIN_PATH);
|
||||
g_snprintf(exe_cmd, sizeof(exe_cmd), "%s/waitforx", XRDP_LIBEXEC_PATH);
|
||||
dp = popen(exe_cmd, "r");
|
||||
if (dp == NULL)
|
||||
{
|
||||
LOG(LOG_LEVEL_ERROR, "Unable to launch xrdp-waitforx");
|
||||
LOG(LOG_LEVEL_ERROR, "Unable to launch waitforx");
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -38,7 +38,7 @@ wait_for_xserver(int display)
|
|||
ret = pclose(dp);
|
||||
if (ret != 0)
|
||||
{
|
||||
LOG(LOG_LEVEL_ERROR, "An error occurred while running xrdp-waitforx");
|
||||
LOG(LOG_LEVEL_ERROR, "An error occurred while running waitforx");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
bin_PROGRAMS = \
|
||||
xrdp-waitforx
|
||||
pkglibexec_PROGRAMS = \
|
||||
waitforx
|
||||
|
||||
AM_LDFLAGS = -lX11 -lXrandr
|
||||
|
||||
|
@ -7,7 +7,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/common
|
|||
|
||||
AM_CFLAGS = $(X_CFLAGS)
|
||||
|
||||
xrdp_waitforx_SOURCES = waitforx.c
|
||||
waitforx_SOURCES = waitforx.c
|
||||
|
||||
xrdp_waitforx_LDADD = \
|
||||
waitforx_LDADD = \
|
||||
$(top_builddir)/common/libcommon.la
|
||||
|
|
Loading…
Reference in New Issue