[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#414096: closed by Patrick Winnertz <patrick.winnertz@skolelinux.org> (Bug#414096: fixed in italc 1:1.0.0-1)



reopen 414096
found 414096 1:1.0.0-1
thanks

Debian Bug Tracking System <owner@bugs.debian.org> (24/03/2007):
> This is an automatic notification regarding your Bug report
> #414096: italc: FTBFS on GNU/kFreeBSD: unsupported OS (yet),
> which was filed against the italc package.

Hi Patrick,

unfortunately, your package FTBFS again, since upstream introduced a
tiny error when rewriting configure.in:

 * before, --with-linux was setting compile_linux=yes and then it was
   later checked in:
      > if test `uname -s | tr -s 'LINUX' 'linux'` = "linux" \
      >      -o "x$compile_linux" = "xyes"; then

 * after, --with-linux is setting build_linux=true but checking it in:
      > if test `uname -s | tr -s 'LINUX' 'linux'` = "linux" \
      >      -o "x$build_linux" = "xyes" ; then

The attached patch fixes this, by checking "xtrue" instead of "xyes",
and your package builds then fine.

I hope you don't mind my reopening this bugreport, but it sound to me
that it is quite related, and not worthy of another bugreport.


Cheers,

-- 
Cyril Brulebois
--- italc-1.0.0/configure	2007-03-27 20:18:19.151187000 +0200
+++ italc-1.0.0/configure	2007-03-27 20:19:03.000000000 +0200
@@ -19569,7 +19569,7 @@
 	build_linux="false"
 	build_win32="true"
 else
-	if test `uname -s | tr -s 'LINUX' 'linux'` = "linux" -o "x$build_linux" = "xyes" ; then
+	if test `uname -s | tr -s 'LINUX' 'linux'` = "linux" -o "x$build_linux" = "xtrue" ; then
 		{ echo "$as_me:$LINENO: result: Linux, will enable support for it" >&5
 echo "${ECHO_T}Linux, will enable support for it" >&6; }
 		cat >>confdefs.h <<\_ACEOF
--- italc-1.0.0/configure.in	2007-03-27 20:18:19.062170000 +0200
+++ italc-1.0.0/configure.in	2007-03-27 20:18:46.000000000 +0200
@@ -73,7 +73,7 @@
 	build_linux="false"
 	build_win32="true"
 else
-	if test `uname -s | tr -s 'LINUX' 'linux'` = "linux" -o "x$build_linux" = "xyes" ; then
+	if test `uname -s | tr -s 'LINUX' 'linux'` = "linux" -o "x$build_linux" = "xtrue" ; then
 		AC_MSG_RESULT([Linux, will enable support for it])
 		AC_DEFINE(BUILD_LINUX)
 		build_linux="true"

Attachment: pgpAz5myfGl_K.pgp
Description: PGP signature


Reply to: