mirror of https://github.com/neutrinolabs/xrdp
Create the m4 directory for Autoconf macro files
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.
This commit is contained in:
parent
a452d8d36a
commit
2694fa9dac
|
@ -1,3 +1,5 @@
|
|||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
EXTRA_DIST = bootstrap COPYING design.txt faq-compile.txt faq-general.txt file-loc.txt install.txt prog_std.txt readme.txt
|
||||
|
||||
if XRDP_NEUTRINORDP
|
||||
|
|
|
@ -4,6 +4,7 @@ AC_PREREQ(2.59)
|
|||
AC_INIT([xrdp], [0.9.0], [xrdp-devel@googlegroups.com])
|
||||
AC_CONFIG_HEADERS(config_ac.h:config_ac-h.in)
|
||||
AM_INIT_AUTOMAKE([1.6 foreign])
|
||||
AC_CONFIG_MACRO_DIRS([m4])
|
||||
AC_PROG_CC
|
||||
AC_C_CONST
|
||||
AC_PROG_LIBTOOL
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
*.m4
|
Loading…
Reference in New Issue