[cairo-commit] libic ChangeLog,1.28,1.29 autogen.sh,1.3,1.4
Carl Worth
commit at pdx.freedesktop.org
Mon Dec 8 18:07:58 PST 2003
Committed by: cworth
Update of /cvs/cairo/libic
In directory pdx:/tmp/cvs-serv13628
Modified Files:
ChangeLog autogen.sh
Log Message:
* autogen.sh: Allow names of all autofoo programs to be
overridden via environment variables.
Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/libic/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** ChangeLog 25 Nov 2003 15:45:34 -0000 1.28
--- ChangeLog 9 Dec 2003 02:07:56 -0000 1.29
***************
*** 1,2 ****
--- 1,7 ----
+ 2003-12-08 Carl Worth <cworth at isi.edu>
+
+ * autogen.sh: Allow names of all autofoo programs to be
+ overridden via environment variables.
+
2003-11-25 Carl Worth <cworth at east.isi.edu>
Index: autogen.sh
===================================================================
RCS file: /cvs/cairo/libic/autogen.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** autogen.sh 19 Aug 2003 01:51:52 -0000 1.3
--- autogen.sh 9 Dec 2003 02:07:56 -0000 1.4
***************
*** 4,7 ****
--- 4,15 ----
set -e
+ LIBTOOLIZE=${LIBTOOLIZE-libtoolize}
+ LIBTOOLIZE_FLAGS="--copy --force"
+ ACLOCAL=${ACLOCAL-aclocal}
+ AUTOHEADER=${AUTOHEADER-autoheader}
+ AUTOMAKE=${AUTOMAKE-automake}
+ AUTOMAKE_FLAGS="--add-missing"
+ AUTOCONF=${AUTOCONF-autoconf}
+
ARGV0=$0
***************
*** 33,45 ****
}
! do_cmd libtoolize --force --copy
! do_cmd aclocal ${ACLOCAL_FLAGS}
! do_cmd autoheader
! do_cmd automake --add-missing
! do_cmd autoconf
do_cmd ./configure --enable-maintainer-mode ${1+"$@"} && echo "Now type \`make' to compile" || exit 1
--- 41,53 ----
}
! do_cmd $LIBTOOLIZE $LIBTOOLIZE_FLAGS
! do_cmd $ACLOCAL $ACLOCAL_FLAGS
! do_cmd $AUTOHEADER
! do_cmd $AUTOMAKE $AUTOMAKE_FLAGS
! do_cmd $AUTOCONF
do_cmd ./configure --enable-maintainer-mode ${1+"$@"} && echo "Now type \`make' to compile" || exit 1
More information about the cairo-commit
mailing list