Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Use silent rules by default if supported by Automake | Pavel Roskin | 2016-02-12 | 1 | -0/+3 | |
| | | | Silent rules make warnings stand out, so they are fixed early. | |||||
* | Use AC_CONFIG_MACRO_DIR, not AC_CONFIG_MACRO_DIRS | Pavel Roskin | 2016-02-10 | 1 | -1/+1 | |
| | | | | | | AC_CONFIG_MACRO_DIRS requires a very recent Automake, much newer than the declared version 1.6 (even 1.11 doesn't work). AC_CONFIG_MACRO_DIR is defined by Autoconf starting with version 2.58, so it's within the currently declared constraints. | |||||
* | Merge pull request #254 from metalefty/freebsd/ipv6 | Itamar Reis Peixoto | 2016-02-08 | 1 | -5/+9 | |
|\ | | | | | Unbreak IPv6 on FreeBSD and add IPv6-only option | |||||
| * | common: add --enable-ipv6only option | Koichiro IWAO | 2015-07-02 | 1 | -0/+9 | |
| | | ||||||
| * | common: drop ipv6 autodetection only valid for linux | Koichiro IWAO | 2015-07-02 | 1 | -5/+0 | |
| | | ||||||
* | | Use standard autotools means to detect X11 | Pavel Roskin | 2016-01-30 | 1 | -3/+13 | |
| | | | | | | | | | | | | | | | | Use AC_PATH_XTRA to search for X11 in configure.ac. In Makefiles, add X_CFLAGS to AM_CFLAGS for the source compilation. Add X_LIBS to LDFLAGS. Add X_PRE_LIBS and X_EXTRA_LIBS to LDADD. With this patch, X Windows system is correctly detected on Mac OS X. | |||||
* | | Create the m4 directory for Autoconf macro files | Pavel Roskin | 2016-01-29 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | Keeping separate files is more maintainable than merging them into a single aclocal.m4 file. It is easier for users to understand where those files come from. Automake knows how to distribute files in the m4 directory. | |||||
* | | Remove GOT_PREFIX, it's a broken hack of limited utility | Pavel Roskin | 2016-01-26 | 1 | -2/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To add flags to the compiler, CFLAGS, CPPFLAGS or LDFLAGS can be used on the configure command line. The need to add flags depends on the location of the headers and libraries of the dependencies, which is orthogonal to the directory where xrdp will be installed. The implementation in configure.ac has a stray closing bracket, making GOT_PREFIX true even if --prefix is not passed. The implementation is inconsistent - the only affected makefiles are for xrdp and libxrdp. Changing rpath manually is wrong in most cases. Libtool should be able to set rpath correctly on its own. Using $(prefix)/lib ignores the libdir setting. For many 64-bit systems, /usr/lib is used for 32-bit libraries. Adding 32-bit libraries to the rpath slows down 64-bit executables, as the dynamic loader searches for libraries in a wrong directory. There is no way to disable GOT_PREFIX if --prefix has to be passed. Fedora RPM patches configure.ac and needs to rerun autoconf and automake after that. | |||||
* | | Update mailing list address | Koichiro IWAO | 2015-12-22 | 1 | -1/+1 | |
| | | ||||||
* | | instfiles: merge rc script from FreeBSD | Koichiro IWAO | 2015-06-18 | 1 | -0/+22 | |
|/ | | | | | - merge rc script from FreeBSD - modify Makefile.am to detect OS and install suitable files | |||||
* | Merge pull request #226 from metalefty/freebsd/openpam | jsorg71 | 2015-04-01 | 1 | -0/+9 | |
|\ | | | | | xrdp: xrdp_mm.c detect and use OpenPAM | |||||
| * | xrdp: xrdp_mm.c detect and use OpenPAM | Koichiro IWAO | 2015-03-16 | 1 | -0/+9 | |
| | | | | | | | | | | | | OpenPAM is used in FreeBSD, NetBSD, DragonFly BSD and Mac OS X. On the Linux system, Linux-PAM is used. Detect PAM during configure and use which the system has. | |||||
* | | configure: use PKG_CHECK_MODULES to check fuse | Koichiro IWAO | 2015-03-18 | 1 | -3/+2 | |
|/ | | | | fuse has fuse.pc file for pkg-config. this is more reliable. | |||||
* | common: add experimental --enable-ipv6 option | Koichiro IWAO | 2015-03-10 | 1 | -0/+8 | |
| | ||||||
* | chansrv: added opus audio compression for playback | Jay Sorg | 2015-01-09 | 1 | -0/+11 | |
| | ||||||
* | Some fixes to compile properly since this version has change a lot from 0.6.1 | Renaud Allard | 2014-11-21 | 1 | -1/+1 | |
| | ||||||
* | Enable authenticate user using BSD password system | Renaud Allard | 2014-11-21 | 1 | -2/+9 | |
| | ||||||
* | configure: Ensure PKG_CONFIG before querying systemd unit path | Michał Górny | 2014-10-28 | 1 | -0/+1 | |
| | | | | | Use PKG_PROG_PKG_CONFIG to ensure that $PKG_CONFIG is set before it is used to query the systemd unit install path. | |||||
* | configure: Add --disable-pam and deprecate --enable-nopam | Michał Górny | 2014-10-28 | 1 | -5/+14 | |
| | | | | | Use simple logic for PAM control to avoid confusion and double negations. Keep --enable-nopam deprecated for backwards compatibility. | |||||
* | configure: Correct the use of AC_ARG_ENABLE() macro | Michał Górny | 2014-10-27 | 1 | -26/+26 | |
| | | | | | | | | | | | | | | | | Fix the use of AC_ARG_ENABLE() so that --disable-foo configure options are respected. The third and fourth arguments of AC_ARG_ENABLE are respectively ACTION-IF-GIVEN and ACTION-IF-NOT-GIVEN. The former is executed if either --enable-foo or --disable-foo is specified on command line, the latter if neither is. Additionally, the specified value is stored in $enable_foo variable. Therefore, the common practice is to provide null ACTION-IF-GIVEN (and use the value of $enable_foo), and to set a default for $enable_foo in ACTION-IF-NOT-GIVEN. The commit does that, and adjusts the further conditionals to test $enable_foo properly. | |||||
* | added --enable-rfxcodec | Jay Sorg | 2014-07-10 | 1 | -0/+4 | |
| | ||||||
* | chansrv: remove simple sound and load pulse modules | Jay Sorg | 2014-06-07 | 1 | -26/+0 | |
| | ||||||
* | added defautl.pa | Jay Sorg | 2014-05-20 | 1 | -0/+1 | |
| | ||||||
* | changed turbojpeg help message in configure.ac | Laxmikant Rashinkar | 2014-03-24 | 1 | -1/+1 | |
| | ||||||
* | opps, it's enable_tjpeg, not enable_tpeg | Jay Sorg | 2014-03-24 | 1 | -1/+1 | |
| | ||||||
* | only check for tjpeg if --enable-tjpeg is passed | Jay Sorg | 2014-03-24 | 1 | -0/+3 | |
| | ||||||
* | addec checks for TurboJPEG in autoconf | Laxmikant Rashinkar | 2014-03-23 | 1 | -0/+27 | |
| | ||||||
* | added a check for xrandr devel files | Jay Sorg | 2014-03-17 | 1 | -2/+5 | |
| | ||||||
* | update version | Jay Sorg | 2014-03-01 | 1 | -2/+2 | |
| | ||||||
* | o --enable-load_pulse_modules changed to --enable-loadpulsemodules | Laxmikant Rashinkar | 2014-02-23 | 1 | -4/+4 | |
| | | | | | o color entries in xrdp.ini file are now specfied using RGB format only o login screen now works with pixel depth of 8, 15, 16 and 24 bits | |||||
* | we now load module-xrdp-sink/source automatically so user's dont have to ↵ | Laxmikant Rashinkar | 2014-01-12 | 1 | -0/+15 | |
| | | | | mess around with configuring /etc/pulse/default.pa config file | |||||
* | when using --enable-xrdpdebug turn off compiler optimazations | Jay Sorg | 2013-10-24 | 1 | -0/+5 | |
| | ||||||
* | added a --enable-tjpeg option for turbo jpeg | Jay Sorg | 2013-09-16 | 1 | -0/+4 | |
| | ||||||
* | neutirnordp: purge old freerdp modules from autoconf | speidy | 2013-08-24 | 1 | -10/+3 | |
| | ||||||
* | replace macro AM_CONFIG_HEADER with AC_CONFIG_HEADERS | Jay Sorg | 2013-06-12 | 1 | -1/+1 | |
| | ||||||
* | got neutrinordp module building | Jay Sorg | 2013-05-03 | 1 | -0/+7 | |
| | ||||||
* | Merge branch 'master' of github.com:FreeRDP/xrdp | Jay Sorg | 2013-04-22 | 1 | -0/+2 | |
|\ | ||||||
| * | Changes related to integration | Gustavo Homem | 2013-03-18 | 1 | -0/+2 | |
| | | ||||||
* | | autodetect ipv6 | Jay Sorg | 2013-04-03 | 1 | -0/+5 | |
|/ | ||||||
* | Fix compilation error without PAM | Guan-Zhong Huang | 2013-03-09 | 1 | -0/+5 | |
| | ||||||
* | do not build xrdpvr unless --enable-xrdpvr is used | Jay Sorg | 2012-11-10 | 1 | -1/+5 | |
| | ||||||
* | o in login dialog set sesman-X11rdp as the default module | Laxmikant Rashinkar | 2012-11-09 | 1 | -0/+1 | |
| | | | | o added support for video redirection without using TSMF | |||||
* | chansrv: added --enable-fuse option | Jay Sorg | 2012-11-02 | 1 | -0/+12 | |
| | ||||||
* | xrdpapi: added library skel | Jay Sorg | 2012-08-02 | 1 | -1/+2 | |
| | ||||||
* | add systemd support into xrdp | Itamar Reis Peixoto | 2012-05-26 | 1 | -0/+8 | |
| | ||||||
* | chansrv: simple pulse audio support | Jay Sorg | 2012-05-25 | 1 | -0/+11 | |
| | ||||||
* | added non standard jpeg support off by default | Jay Sorg | 2012-04-07 | 1 | -0/+11 | |
| | ||||||
* | libxrdp: user freerdp mppc compressor | Jay Sorg | 2012-04-05 | 1 | -0/+2 | |
| | ||||||
* | remove old freerdp dir | Jay Sorg | 2012-02-13 | 1 | -6/+0 | |
| | ||||||
* | added freerdp1 module | Jay Sorg | 2012-02-07 | 1 | -0/+6 | |
| |