ソースを参照

Apply patch from Robert Millan to fix #211566; update support for
Debian FreeBSD.

Scott James Remnant 22 年 前
コミット
be599376b9
共有6 個のファイルを変更した11 個の追加1 個の削除を含む
  1. 5 0
      ChangeLog
  2. 1 0
      THANKS
  3. 1 0
      archtable
  4. 2 0
      configure.in
  5. 1 0
      debian/changelog
  6. 1 1
      scripts/dpkg-architecture.pl

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+Mon Mar  8 18:28:07 GMT 2004 Robert Millan <rmh@debian.org>
+
+  * archtable, configure.in, scripts/dpkg-architecture.pl: Update
+  support for Debian FreeBSD.
+
 Mon Mar  8 18:20:38 GMT 2004 Javier Fernandez-Sanguino Pena <jfs@computer.org>
 
   * scripts/dpkg-buildpackage.sh: Add blank line to .dsc before

+ 1 - 0
THANKS

@@ -53,6 +53,7 @@ Philippe Batailler <pbatailler@teaser.fr>
 Piotr Roszatycki <dexter@fnet.pl>
 Raphael Hertzog <rhertzog@hrnet.fr>
 Richard Kettlewell <rjk@sfere.greenend.org.uk>
+Robert Millan <rmh@debian.org>
 Roderick Schertler <roderick@argon.org>
 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>
 Scott Barker <scott@mostlylinux.ab.ca>

+ 1 - 0
archtable

@@ -49,6 +49,7 @@ hppa1.1-linux-gnu	hppa		hppa
 hppa2.0-linux-gnu	hppa		hppa
 hppa64-linux-gnu	hppa		hppa
 i386-freebsd		freebsd-i386	freebsd-i386
+i386-kfreebsd-gnu	freebsd-i386	freebsd-i386
 i386-netbsdelf-gnu	netbsd-i386	netbsd-i386
 s390-linux-gnu		s390		s390
 s390-ibm-linux-gnu	s390		s390

+ 2 - 0
configure.in

@@ -107,6 +107,8 @@ case $target_os in
           os_type="openbsd";;
         *netbsd* )
           os_type="netbsd";;
+        *kfreebsd*-gnu* )
+          os_type="kfreebsd-gnu";;
         *freebsd* )
           os_type="freebsd";;
         gnu )

+ 1 - 0
debian/changelog

@@ -8,6 +8,7 @@ dpkg (1.10.19) unstable; urgency=low
     space.  Closes: #213038, #217286, #213543, #213846.
   * Remove duplicated entries from ChangeLog.  Closes: #157437.
   * Fix dpkg-buildpackage when used with PGP.  Closes: #232916.
+  * Update support for Debian FreeBSD.  Closes: #211566.
 
  -- Scott James Remnant <scott@netsplit.com>  UNRELEASED
 

+ 1 - 1
scripts/dpkg-architecture.pl

@@ -66,7 +66,7 @@ require 'controllib.pl';
 	    's390x',		's390x-linux',
 	    'ia64',		'ia64-linux',
 	    'openbsd-i386',	'i386-openbsd',
-	    'freebsd-i386',	'i386-freebsd',
+	    'freebsd-i386',	'i386-kfreebsd-gnu',
 	    'netbsd-i386',	'i386-netbsdelf-gnu',
 	    'darwin-powerpc',	'powerpc-darwin',
 	    'darwin-i386',	'i386-darwin');