]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
* Patch from pnelson@ANDREW.CMU.EDU to add x86_64 support to sysname scripts
authorSam Hartman <hartmans@debian.org>
Sun, 24 Oct 2004 18:45:41 +0000 (18:45 +0000)
committerSam Hartman <hartmans@debian.org>
Sun, 24 Oct 2004 18:45:41 +0000 (18:45 +0000)
debian/changelog
debian/control
debian/kern-sysname
debian/sysname

index 22da3adbba0debe9fa77b362357fbc0ad5de0398..62198c8764c636f3b194e6c6dcdcb53af16703ec 100644 (file)
@@ -3,8 +3,9 @@ openafs (1.3.73-1) UNRELEASED; urgency=low
   * New upstream version
   * Remove call to dh_suidregister
   * Update sysname to prefer 2.4 on more arches for largefile issues
+  * Patch from pnelson@ANDREW.CMU.EDU to add x86_64 support to sysname scripts
 
- -- Sam Hartman <hartmans@mit.edu>  Sun, 24 Oct 2004 12:39:02 -0400
+ -- Sam Hartman <hartmans@mit.edu>  Sun, 24 Oct 2004 14:45:22 -0400
 
 openafs (1.3.71-1) experimental; urgency=low
 
index 2c34949e47ac872064c31c8fb3a0d9a962a79c1a..5ffa592f070d56f6774f50d4b2d2b4a593e70e81 100644 (file)
@@ -6,7 +6,7 @@ Build-Depends: debhelper (>= 4.1.16), libncurses5-dev, libpam0g-dev, bison, docb
 Standards-Version: 3.5.0
 
 Package: openafs-client
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
 Depends: ${shlibs:Depends}, debconf,  openafs-modules-source (>= 1.2.9)|openafs-modules2
 Conflicts: arla, openafs-modules1
 Description: The AFS distributed filesystem- client support
@@ -19,7 +19,7 @@ Description: The AFS distributed filesystem- client support
 
 Package: openafs-kpasswd
 Priority: extra
-Architecture: i386 powerpc sparc alpha  s390 ia64 hppa
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
 Depends: ${shlibs:Depends}, openafs-client (= ${Source-Version})
 Conflicts: krb5-user, heimdal-clients
 Description: The AFS distributed filesystem- old password changing
@@ -33,7 +33,7 @@ Description: The AFS distributed filesystem- old password changing
  not install this package for new cells or for cells using Kerberos5.
 
 Package: openafs-fileserver
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
 Depends: ${shlibs:Depends}, debconf, openafs-client (= ${Source-Version})
 Recommends: ntp
 Description: The AFS distributed filesystem- file server
@@ -45,7 +45,7 @@ Description: The AFS distributed filesystem- file server
  installed on any machine that will export files into AFS.
 
 Package: openafs-dbserver
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
 Depends: ${shlibs:Depends}, debconf, openafs-fileserver (= ${Source-Version}), openafs-client (= ${Source-Version}), perl5
 Conflicts: openafs-ptutil
 Replaces: openafs-ptutil
@@ -61,7 +61,7 @@ Description: The AFS distributed filesystem- database server
 
 Package: libopenafs-dev
 Section: libdevel
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
 Priority: extra
 Description: The AFS distributed filesystem- development libraries
  AFS is a distributed filesystem allowing cross-platform sharing of
@@ -86,7 +86,7 @@ Package: libpam-openafs-kaserver
 Priority: extra
 Depends: ${shlibs:Depends}
 Recommends: openafs-client
-Architecture: i386 powerpc sparc alpha s390 ia64 hppa
+Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64
 Description: The AFS distributed filesystem- kaserver PAM module
  AFS is a distributed filesystem allowing cross-platform sharing of
  files among multiple computers.  Facilities are provided for access
index c8f7f248b034c484cfd978ae347949eeaaf08259..a33cd7237ea10c35e498746c836a95a93bcce7df 100644 (file)
@@ -12,6 +12,16 @@ i[3456]86)
                echo i386_linux26
                ;;
            esac
+;;
+x86_64)
+       case $KVERS in
+           2.4*)
+               echo amd64_linux24
+               ;;
+           2.6*)
+               echo amd64_linux26
+               ;;
+           esac
 ;;
     ia64)
     echo ia64_linux24
index d5b1d398c45fde0bd264458877581f52feb0d864..1216aa6fb54277c312dd4b72a4628e09372cd89a 100755 (executable)
@@ -21,6 +21,9 @@ i[3456]86)
     s390)
     echo s390_linux24
     ;;
+    x86_64)
+       echo amd64_linux24
+       ;;
        *)
        echo ERROr:  sysname not yet known
        exit 1