diff options
author | rbuj <robert.buj@gmail.com> | 2018-10-12 23:52:29 +0200 |
---|---|---|
committer | rbuj <robert.buj@gmail.com> | 2018-10-12 23:52:29 +0200 |
commit | 614e86da5d2fbfdf101fb490f49465e8572c479f (patch) | |
tree | cd8711d2035670de71aafa6b4685cd7631b39dd5 | |
parent | 331a95bbd1d9c30133028473c497d41cf6c04190 (diff) | |
download | librda-614e86da5d2fbfdf101fb490f49465e8572c479f.tar.gz librda-614e86da5d2fbfdf101fb490f49465e8572c479f.tar.bz2 librda-614e86da5d2fbfdf101fb490f49465e8572c479f.zip |
Fix defines: WITH_X2GO_AWARENESS, WITH_OGON_AWARENESS
They are always enabled:
- Edit debian/rules
- Remove --enable-x2go or --enable-ogon line
- Run $ debuild -b -uc -us
- Check config.log e.g.
$ cat config.log | grep WITH_X2GO_AWARENESS
| #define WITH_X2GO_AWARENESS /**/
| #define WITH_X2GO_AWARENESS /**/
$ cat config.log | grep WITH_OGON_AWARENESS
| #define WITH_OGON_AWARENESS /**/
| #define WITH_OGON_AWARENESS /**/
$ cat debian/rules
..
override_dh_auto_configure:
dh_auto_configure $(DHFLAGS) -- \
--disable-silent-rules \
--enable-x2go \
$(NULL)
-rw-r--r-- | configure.ac | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 8821ae8..16bec65 100644 --- a/configure.ac +++ b/configure.ac @@ -61,8 +61,7 @@ dnl enable/disable awarenesses AC_ARG_ENABLE([x2go], [AS_HELP_STRING([--enable-x2go], [enable awareness of X2Go sessions])], - [enable_x2go=yes], - [enable_x2go=no]) + [enable_x2go=yes]) if test "x$enable_x2go" != "x"; then AC_DEFINE([WITH_X2GO_AWARENESS],,[Build with X2Go awareness]) fi @@ -70,8 +69,7 @@ fi AC_ARG_ENABLE([ogon], [AS_HELP_STRING([--enable-ogon], [enable awareness of Ogon sessions])], - [enable_ogon=yes], - [enable_ogon=no]) + [enable_ogon=yes]) if test "x$enable_ogon" != "x"; then AC_DEFINE([WITH_OGON_AWARENESS],,[Build with Ogon awareness]) fi |