Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/xrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/m4
AgeCommit message (Collapse)Author
2022-11-07Update ax_type_socklen_t.m4 to latest versionmatt335672
Fixes warning about obsolete macro AC_TRY_COMPILE with autoconf 2.71
2017-02-03Update m4/ax_type_socklen_t.m4, it works with -Wall nowPavel Roskin
2016-11-21Use PKG_INSTALLDIR to determine pkg-config file install locationPavel Roskin
The PKG_INSTALLDIR macro also enables --with-pkgconfigdir for easy overrides. PKG_INSTALLDIR is relatively new, it appeared in pkg-config 0.27. To ensure we have a recent pkg.m4 copy, copy pkg.m4 to the m4 directory.
2016-09-09Add socklen_t check with substitution, use socklen_t as neededPavel Roskin
2016-07-08Use -Wwrite-strings compiler flag if supported, add required macrosPavel Roskin
String literals are const in C++. Using this warnings moves us closer to the stated goal of C++ compatibility, makes the code cleaner and lets compilers optimize the code better. Add m4/ax_append_compile_flags.m4 from Autoconf Archives for the AX_APPEND_COMPILE_FLAGS macro and m4/ax_check_compile_flag.m4 as its dependency.
2016-03-04Annotate printf-like functions if supported by the compilerPavel Roskin
Both GCC and Clang support it. Add a macro from Autoconf archive to check for format attribute support.
2016-03-04Enable -Wall flag for compilers that support itPavel Roskin
Add Autoconf archive macros to check for -Wall and its dependencies. Adjust m4/.gitignore to only ignore libtool macros. Require Autoconf 2.65 for compatibility with Autoconf archive macros.
2016-01-30Create the m4 directory for Autoconf macro filesPavel Roskin
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.