mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-27 03:10:23 -06:00
2b3a4ff53f
Add and use gnome autoconf macros. Fix lots of new compiler warnings. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2842 57a11ea4-9604-0410-9ed3-97b8803252fd
17 lines
372 B
Plaintext
17 lines
372 B
Plaintext
# aclocal-include.m4
|
|
#
|
|
# This macro adds the name macrodir to the set of directories
|
|
# that `aclocal' searches for macros.
|
|
|
|
# serial 1
|
|
|
|
dnl AM_ACLOCAL_INCLUDE(macrodir)
|
|
AC_DEFUN([AM_ACLOCAL_INCLUDE],
|
|
[
|
|
AM_CONDITIONAL(INSIDE_GNOME_COMMON, test x = y)
|
|
|
|
test -n "$ACLOCAL_FLAGS" && ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
|
|
|
|
for k in $1 ; do ACLOCAL="$ACLOCAL -I $k" ; done
|
|
])
|