Check-in Number:
|
5610 | |
Date: |
2006-Jul-31 13:37:56 (local)
2006-Jul-31 11:37:56 (UTC) |
User: | rse |
Branch: | |
Comment: |
Use Autoconf macros AC_CANONICAL_BUILD and AC_CANONICAL_HOST to
make sure that the host identification is really available.
Submitted by: Alfred Reibenschuh <alfred.reibenschuh@it-austria.com> |
Tickets: |
#115 | |
configure test for windows host always fails |
|
Inspections: |
|
Files: |
|
ossp-pkg/js/ChangeLog 1.18 -> 1.19
--- ChangeLog 2006/07/30 08:05:17 1.18
+++ ChangeLog 2006/07/31 11:37:56 1.19
@@ -11,6 +11,12 @@
This is a list of all changes to OSSP js.
+ Changes between 1.6.20060730 and 1.6.20060801 (2006-07-30 to 2006-08-01)
+
+ o Use Autoconf macros AC_CANONICAL_BUILD and AC_CANONICAL_HOST to
+ make sure that the host identification is really available.
+ [Alfred Reibenschuh <alfred.reibenschuh@it-austria.com>]
+
Changes between 1.6.20060729 and 1.6.20060730 (2006-07-29 to 2006-07-30)
o Add support for Windows CygWin and MinGW environments.
|
|
ossp-pkg/js/configure.ac 1.16 -> 1.17
--- configure.ac 2006/07/30 08:00:44 1.16
+++ configure.ac 2006/07/31 11:37:56 1.17
@@ -33,6 +33,9 @@
"Configuring %BOSSP js%b (Mozilla JavaScript Engine), version %B${JS_VERSION}%b"
AC_SUBST(JS_VERSION)
+AC_CANONICAL_BUILD
+AC_CANONICAL_HOST
+
AC_PROG_MAKE_SET
AC_PROG_CC
AC_CHECK_DEBUGGING
|
|