[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug-gforth] [bugs #8467] BUILD_FROM_SCRATCH on debian fails
From: |
Stefan Schmiedl |
Subject: |
[Bug-gforth] [bugs #8467] BUILD_FROM_SCRATCH on debian fails |
Date: |
Tue, 06 Apr 2004 09:03:48 -0400 |
User-agent: |
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040207 Firefox/0.8 |
This mail is an automated notification from the bugs tracker
of the project: Gforth.
/**************************************************************************/
[bugs #8467] Full Item Snapshot:
URL: <http://savannah.gnu.org/bugs/?func=detailitem&item_id=8467>
Project: Gforth
Submitted by: Stefan Schmiedl
On: Tue 04/06/04 at 13:03
Category: None
Severity: 5 - Average
Item Group: None
Resolution: None
Assigned to: None
Status: Open
Summary: BUILD_FROM_SCRATCH on debian fails
Original Submission: There were two problems in configure.in with my autoconf
2.50.
Patch below.
--- configure.in 2003-08-25 10:03:13.000000000 +0200
+++ configure.in.xss 2004-04-06 14:56:05.000000000 +0200
@@ -198,7 +198,7 @@
power*|rs6000)
machine=power
$srcdir/mkinstalldirs arch/power
-
AC_CHECK_FUNC(_sync_cache_range,true,AC_LIBOBJ(../arch/power/_sync_cache_range))
+
AC_CHECK_FUNC(_sync_cache_range,[true],[AC_LIBOBJ(../arch/power/_sync_cache_range)])
#long long is broken on (at least) gcc-2.95.* for PPC
test x$ac_cv_sizeof_long_long = x && ac_cv_sizeof_long_long=0
;;
@@ -475,7 +475,7 @@
AC_CHECK_FUNCS(ftello dlopen sys_siglist getrusage)
AC_CHECK_TYPES(stack_t,,,[#include <signal.h>])
AC_DECL_SYS_SIGLIST
-AC_CHECK_FUNC(getopt_long,true,AC_LIBOBJ(getopt); AC_LIBOBJ(getopt1))
+AC_CHECK_FUNC(getopt_long,[true],[AC_LIBOBJ(getopt) AC_LIBOBJ(getopt1)])
AC_CHECK_FUNCS(expm1 log1p)
AC_REPLACE_FUNCS(rint ecvt)
dnl No check for select, because our replacement is no good under
CC List
-------
CC Address | Comment
------------------------------------+-----------------------------
swsch |
For detailed info, follow this link:
<http://savannah.gnu.org/bugs/?func=detailitem&item_id=8467>
_______________________________________________
Message sent via/by Savannah
http://savannah.gnu.org/
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Bug-gforth] [bugs #8467] BUILD_FROM_SCRATCH on debian fails,
Stefan Schmiedl <=