|
From: Marcel T. <te...@us...> - 2005-06-27 10:46:50
|
Update of /cvsroot/openwince/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1377 Modified Files: ChangeLog NEWS autogen.sh configure.ac Log Message: 2005-06-27 Marcel Telka <ma...@te...> * autogen.sh: Used autoreconf call for initial configuration. * configure.ac: Added initial support for Hitachi Workbench. Index: NEWS =================================================================== RCS file: /cvsroot/openwince/include/NEWS,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- NEWS 1 Jun 2005 14:15:39 -0000 1.46 +++ NEWS 27 Jun 2005 10:46:41 -0000 1.47 @@ -10,6 +10,7 @@ * Ported uintptr_t type in win32/stdint.h to old Windows SDK. * Changes in brux common headers: - Added new parameter (adr) for detectflash function + * Added support for Hitachi Workbench. include-0.3.2 (2003-10-11): Index: configure.ac =================================================================== RCS file: /cvsroot/openwince/include/configure.ac,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- configure.ac 19 Nov 2003 21:28:57 -0000 1.9 +++ configure.ac 27 Jun 2005 10:46:41 -0000 1.10 @@ -2,6 +2,7 @@ # $Id$ # # Copyright (C) 2002 ETC s.r.o. +# Copyright (C) 2005 Elcom s.r.o. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -27,7 +28,7 @@ # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# Written by Marcel Telka <ma...@te...>, 2002. +# Written by Marcel Telka <ma...@te...>, 2002, 2005. # AC_INIT(include,0.3.3) @@ -45,8 +46,28 @@ AM_MAINTAINER_MODE -AX_CREATE_STDINT_H( owce-stdint.h ) -AC_CHECK_HEADERS( stdint.h ) -AM_CONDITIONAL( GENERATE_STDINT_H, test x$ac_cv_header_stdint_h = xno ) +AC_ARG_WITH(hwbench, + AC_HELP_STRING([--with-hwbench=PATH], [Absolute path to the hwbench installation]), + with_hwbench="$withval") + +AC_CACHE_CHECK([for hwbench installation], hwbench_path, [ + hwbench_path="no" + for hwb_path in "$with_hwbench"; do + if test -f "$hwb_path/IAR/EXE/ICCH83.EXE"; then + hwbench_path="$hwb_path" + export CC="$hwb_path/IAR/EXE/ICCH83.EXE" + break + fi + done +]) + +generate_stdint_h="no" +AC_CHECK_HEADERS( stdint.h, [], [ + if test "$hwbench_path" = "no"; then + AX_CREATE_STDINT_H( owce-stdint.h ) + generate_stdint_h="yes" + fi +]) +AM_CONDITIONAL( GENERATE_STDINT_H, test "$generate_stdint_h" = "yes" ) AC_OUTPUT Index: autogen.sh =================================================================== RCS file: /cvsroot/openwince/include/autogen.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- autogen.sh 11 Oct 2002 16:42:07 -0000 1.1 +++ autogen.sh 27 Jun 2005 10:46:41 -0000 1.2 @@ -28,21 +28,20 @@ # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# Written by Marcel Telka <ma...@te...>, 2002. +# Written by Marcel Telka <ma...@te...>, 2002, 2005. # -echo "Running aclocal ..." -aclocal - -echo "Running automake ..." -automake --add-missing --foreign +export AUTOMAKE="/usr/bin/automake --foreign" -echo "Running autoconf ..." -autoconf +if autoreconf -i -s -v ; then + echo + echo "autoreconf done." + echo +else + echo + echo "autoreconf failed." + echo + exit 1 +fi -echo -echo "Now running ./configure script..." ./configure --enable-maintainer-mode - -echo -echo "Type \`make\` to build include..." Index: ChangeLog =================================================================== RCS file: /cvsroot/openwince/include/ChangeLog,v retrieving revision 1.74 retrieving revision 1.75 diff -u -d -r1.74 -r1.75 --- ChangeLog 16 Jun 2005 13:14:41 -0000 1.74 +++ ChangeLog 27 Jun 2005 10:46:40 -0000 1.75 @@ -1,3 +1,8 @@ +2005-06-27 Marcel Telka <ma...@te...> + + * autogen.sh: Used autoreconf call for initial configuration. + * configure.ac: Added initial support for Hitachi Workbench. + 2005-06-16 Branislav Petrovsky <bra...@sz...> * h8/h8s2357/mcu.h (SBYCR, SYSCR, SCKCR, MDCR, MSTPCRH, MSTPCRL) |