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

[debian-users:08254] Bug#JP/520: marked as done (afterstep-i18n: Can't compile at Alpha architecture)



NABETANI Hidenobu <nabetani@xxxxxxxxxxxxxxxxxxxxxxxxxxx>さんの Tue, 08 Sep 1998 16:48:29 +0900付けの
message-id <19980908164829G.nhide@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
subject Bug#JP/520: (afterstep-i18n: Can't compile at Alpha architecture) 
のメッセージにより以下のバグ報告は「処理済」とされました。

もし、間違ったバグ報告を「処理済」にしてしまった場合は
必要に応じてバグ報告を再発行し、そして/または、ただちに問題を修正してください。

(注: これは Debian JP Bug Tracking System が発行している
自動応答メッセージで、debian-users メイリングリストにも送られています。
あなたがシステム管理者で、このメッセージが何について書かれている
かよくわからないのでしたら、どこかに深刻なメールシステムの誤設定がある
ことを示しています。すぐに私まで連絡をいただけないでしょうか)
(NB: If you are a system administrator and have no idea what I'm
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

-- 
Debian JP Bug Tracking System / owner@bugs.debian.or.jp


Received: from th30.phys.sci.osaka-u.ac.jp (th30.phys.sci.osaka-u.ac.jp [133.1.129.90])
	by master.debian.or.jp (8.9.1a+3.0W/3.6W-Debian-JP-980308) with ESMTP id QAA04259
	for <520-done@bugs.debian.or.jp>; Tue, 8 Sep 1998 16:48:35 +0900
Subject: Re: Bug#JP/520: (afterstep-i18n: Can't compile at Alpha architecture)
From: NABETANI Hidenobu <nabetani@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
In-Reply-To: Your message of "Thu, 27 Aug 1998 17:36:08 +0900"
        <debbugs-jp.520.B.90420666121585.ack@bugs.debian.or.jp>
References: <debbugs-jp.520.B.90420666121585.ack@bugs.debian.or.jp>
Mime-Version: 1.0
Content-Type: Text/Plain; charset=iso-2022-jp
Content-Transfer-Encoding: 7bit
Message-Id: <19980908164829G.nhide@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 08 Sep 1998 16:48:29 +0900
Sender: Hidenobu Nabetani <nhide@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
X-Dispatcher: imput version 980506
Lines: 4

鍋谷です。

version 1.0.98Feb27-6 で対応しました。
Alpha arch でもコンパイル可になりました。

Return-Path: <nhide@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
From: nabetani@xxxxxxxxxxxxxxxxxxxxxxxxxxx
Subject: afterstep-i18n: Can't compile at Alpha architecture
To: submit@bugs.debian.or.jp
X-Mailer: bug-ja 3.1.0.4
Message-Id: <19980827173037G.nhide@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 27 Aug 1998 17:30:37 +0900
Sender: Hidenobu Nabetani <nhide@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
X-Dispatcher: imput version 980506
Mime-Version: 1.0
Content-Type: Text/plain; charset=iso-2022-jp (auto-converted from EUC)
Lines: 84

Package: afterstep-i18n
Version: 1:1.0.98Feb27-5

Alphaアーキテクチャでコンパイルできません。以下 patch です。

--- afterstep-i18n-1.0.98Feb27.orig/modules/Audio/Imakefile
+++ afterstep-i18n-1.0.98Feb27/modules/Audio/Imakefile
@@ -29,7 +29,7 @@
 
 DEPLIBS = $(DEPXLIB)  ../../lib/libafterstep.a
 
-#ifdef AlphaArchitecture
+#if defined( AlphaArchitecture ) && !defined( __linux__ )
 LOCAL_LIBRARIES = -ldnet_stub -L../../lib -lafterstep
 #else
 LOCAL_LIBRARIES = -L../../lib -lafterstep
--- afterstep-i18n-1.0.98Feb27.orig/modules/Auto/Imakefile
+++ afterstep-i18n-1.0.98Feb27/modules/Auto/Imakefile
@@ -7,7 +7,7 @@
 
 DEPLIBS = $(DEPXLIB)  ../../lib/libafterstep.a
 
-#ifdef AlphaArchitecture
+#if defined( AlphaArchitecture ) && !defined( __linux__ )
 LOCAL_LIBRARIES = -ldnet_stub -L../../lib -lafterstep  
 #else
 LOCAL_LIBRARIES = -L../../lib -lafterstep
--- afterstep-i18n-1.0.98Feb27.orig/modules/Wharf/Imakefile
+++ afterstep-i18n-1.0.98Feb27/modules/Wharf/Imakefile
@@ -15,7 +15,7 @@
 
 DEPLIBS = $(DEPXLIB)  ../../lib/libafterstep.a   
 
-#ifdef AlphaArchitecture
+#if defined( AlphaArchitecture ) && !defined( __linux__ )
 LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -ldnet_stub -L../../lib -lafterstep     
 #else
 LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -L../../lib -lafterstep
--- afterstep-i18n-1.0.98Feb27.orig/modules/Banner/Imakefile
+++ afterstep-i18n-1.0.98Feb27/modules/Banner/Imakefile
@@ -15,7 +15,7 @@
 
 DEPLIBS = $(DEPXLIB) 
 
-#ifdef AlphaArchitecture
+#if defined( AlphaArchitecture ) && !defined( __linux__ )
 LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -ldnet_stub -L../../lib -lafterstep  
 #else
 LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -L../../lib -lafterstep  
--- afterstep-i18n-1.0.98Feb27.orig/modules/Pager/Imakefile
+++ afterstep-i18n-1.0.98Feb27/modules/Pager/Imakefile
@@ -13,7 +13,7 @@
 
 DEPLIBS = $(DEPXLIB)  ../../lib/libafterstep.a   
 
-#ifdef AlphaArchitecture
+#if defined( AlphaArchitecture ) && !defined( __linux__ )
 LOCAL_LIBRARIES = $(XLIB) -ldnet_stub -L../../lib -lafterstep
 #else
 LOCAL_LIBRARIES = $(XLIB) -L../../lib -lafterstep
--- afterstep-i18n-1.0.98Feb27.orig/modules/Animate/Imakefile
+++ afterstep-i18n-1.0.98Feb27/modules/Animate/Imakefile
@@ -4,7 +4,7 @@
 
 DEPLIBS = $(DEPXLIB)  ../../lib/libafterstep.a   
 
-#ifdef AlphaArchitecture
+#if defined( AlphaArchitecture ) && !defined( __linux__ )
 LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -ldnet_stub -L../../lib -lafterstep     
 #else
 LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -L../../lib -lafterstep -lm
--- afterstep-i18n-1.0.98Feb27.orig/afterstep/Imakefile
+++ afterstep-i18n-1.0.98Feb27/afterstep/Imakefile
@@ -15,7 +15,7 @@
 
 DEPLIBS = $(DEPXLIB) ../lib/libafterstep.a
 
-#ifdef AlphaArchitecture
+#if defined( AlphaArchitecture ) && !defined( __linux__ )
 LOCAL_LIBRARIES = $(XPMLIB) $(XLIB) -ldnet_stub -lm -L../lib -lafterstep
 #else 
 #ifdef HPArchitecture