瀏覽代碼

* archtable: sparc64 and ia64 edits
* dselect/main.cc: gcc 2.96 fixups

Ben Collins 26 年之前
父節點
當前提交
f31a2661f7
共有 4 個文件被更改,包括 14 次插入3 次删除
  1. 6 0
      ChangeLog
  2. 3 1
      archtable
  3. 3 0
      debian/changelog
  4. 2 2
      dselect/main.cc

+ 6 - 0
ChangeLog

@@ -1,3 +1,9 @@
+Mon Jul 31 23:38:56 EDT 2000 Ben Collins <bcollins@debian.org>
+
+  * archtable: add ia64; revert sparc64 so that it turns into sparc. There
+    wont be a full binary-sparc64 port.
+  * dselect/main.cc: small fixups to get it to compile with gcc-2.96
+
 Wed Jul 26 21:27:30 CEST 2000 peter karlsson <peterk@debian.org>
 
   * po/sv.po: Updated translation.

+ 3 - 1
archtable

@@ -13,7 +13,7 @@ i586-linux-gnu		i386		i486
 i686-linux-gnu		i386		i486
 pentium-linux-gnu	i386		i486
 sparc-linux-gnu		sparc		sparc
-sparc64-linux-gnu	sparc64		sparc64
+sparc64-linux-gnu	sparc		sparc
 alpha-linux-gnu		alpha		alpha
 alphaev4-linux-gnu	alpha		alpha
 alphaev5-linux-gnu	alpha		alpha
@@ -29,3 +29,5 @@ mips-linux-gnu		mips		mips
 mipsel-linux-gnu	mipsel		mipsel
 mipseb-linux-gnu	mips		mips
 i386-gnu		hurd-i386	undefined
+ia64-linux-gnu		ia64		ia64
+ia64-unknown-linux	ia64		ia64

+ 3 - 0
debian/changelog

@@ -16,6 +16,9 @@ dpkg (1.7.0) unstable; urgency=low
   * Check COLUMNS environment for dpkg -l output. Closes: Bug#65536
   * Add Origin, Bugs-Submit-To, Bugs-Submit-Style
   * Corrections and updates to Swedish translation.
+  * archtable: add ia64; revert sparc64 so that it turns into sparc. There
+    wont be a full binary-sparc64 port.
+  * dselect/main.cc: small fixups to get it to compile with gcc-2.96
 
  -- Wichert Akkerman <wakkerma@debian.org>  UNRELEASED
 

+ 2 - 2
dselect/main.cc

@@ -117,7 +117,7 @@ extern "C" {
     setvbuf(debug,0,_IONBF,0);
   }
 
-  static void setexpert() {
+  static void setexpert(const struct cmdinfo*, const char *v) {
     expertmode = 1;
   }
 
@@ -131,7 +131,7 @@ static const struct cmdinfo cmdinfos[]= {
   { "version",    0,   0,  0,  0,          versiononly            },
   { "licence",    0,   0,  0,  0,          showcopyright          }, /* UK spelling */
   { "license",    0,   0,  0,  0,          showcopyright          }, /* US spelling */
-  {  0,           0                                               }
+  {  0,           0,   0,  0,  0,          0                      }
 };
 
 static int cursesareon= 0;