File tree 3 files changed +8
-8
lines changed 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -67,4 +67,4 @@ SUBDIRS = \
67
67
$(XRDPVRDIR )
68
68
69
69
distclean-local :
70
- -rm -f configure_params .h
70
+ -rm -f xrdp_configure_options .h
Original file line number Diff line number Diff line change @@ -398,8 +398,8 @@ echo " libdir $libdir"
398
398
echo " bindir $bindir"
399
399
echo " sysconfdir $sysconfdir"
400
400
401
- # configure_params .h will be written to the build directory, not the source directory
402
- echo '# define CONFIGURE_STRING \' > ./configure_params .h
403
- ./config.status --config | xargs -n 1 | sed -e 's/^/" /' -e 's/$/\\n" \\/' >> ./configure_params .h
404
- echo '""' >> ./configure_params .h
401
+ # xrdp_configure_options .h will be written to the build directory, not the source directory
402
+ echo '# define XRDP_CONFIGURE_OPTIONS \' > ./xrdp_configure_options .h
403
+ ./config.status --config | xargs -n 1 | sed -e 's/^/" /' -e 's/$/\\n" \\/' >> ./xrdp_configure_options .h
404
+ echo '""' >> ./xrdp_configure_options .h
405
405
Original file line number Diff line number Diff line change 24
24
25
25
#include "xrdp.h"
26
26
#include "log.h"
27
- #include "configure_params .h"
27
+ #include "xrdp_configure_options .h"
28
28
29
29
#if !defined(PACKAGE_VERSION )
30
30
#define PACKAGE_VERSION "???"
@@ -57,9 +57,9 @@ print_version(void)
57
57
g_writeln (" See https://github.com/neutrinolabs/xrdp for more information." );
58
58
g_writeln ("%s" , "" );
59
59
60
- #if defined(CONFIGURE_STRING )
60
+ #if defined(XRDP_CONFIGURE_OPTIONS )
61
61
g_writeln (" Configure options:" );
62
- g_writeln ("%s" , CONFIGURE_STRING );
62
+ g_writeln ("%s" , XRDP_CONFIGURE_OPTIONS );
63
63
#endif
64
64
65
65
g_writeln (" Compiled with %s" , get_openssl_version ());
You can’t perform that action at this time.
0 commit comments