OpenPKG CVS Repository
http://www.openpkg.org/cvsweb/cvsweb.cgi
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-web, openpkg-src Date: 30-Jun-2002 20:39:28
Branch: HEAD Handle: 2002063019392701
Added files:
openpkg-src/ntp ntp.patch
Modified files:
openpkg-src/ntp ntp.spec
openpkg-web news.txt
Log:
fix run-time under 64-bit like NetBSD/sparc64
Summary:
Revision Changes Path
1.1 +12 -0 openpkg-src/ntp/ntp.patch
1.26 +4 -1 openpkg-src/ntp/ntp.spec
1.855 +1 -0 openpkg-web/news.txt
____________________________________________________________________________
Index: openpkg-src/ntp/ntp.patch
============================================================
$ cvs update -p -r1.1 ntp.patch
--- ntpd/ntp_io.c.orig Thu Jan 3 05:03:15 2002
+++ ntpd/ntp_io.c Sun Jun 30 10:57:50 2002
@@ -437,7 +437,8 @@
continue;
}
# endif /* SYS_WINNT */
- ifreq = *ifr;
+ /* ifreq = *ifr; */
+ memmove(&ifreq, ifr, sizeof(ifreq));
inter_list[i].flags = 0;
/* is it broadcast capable? */
# ifndef SYS_WINNT
Index: openpkg-src/ntp/ntp.spec
============================================================
$ cvs diff -u -r1.25 -r1.26 ntp.spec
--- openpkg-src/ntp/ntp.spec 29 May 2002 20:01:36 -0000 1.25
+++ openpkg-src/ntp/ntp.spec 30 Jun 2002 18:39:28 -0000 1.26
@@ -33,13 +33,14 @@
Group: Net
License: BSD-style
Version: 4.1.1a
-Release: 20020429
+Release: 20020630
# list of sources
Source0: ftp://ftp.udel.edu/pub/ntp/ntp4/ntp-%{version}.tar.gz
Source1: ntp-doc.tar.gz
Source2: ntp.conf
Source3: rc.ntp
+Patch0: ntp.patch
# build information
Prefix: %{l_prefix}
@@ -65,6 +66,8 @@
%prep
%setup0 -q -c
%setup1 -q -T -D -a 1
+ cd ntp-%{version}
+ %patch0 -p0
%build
( cd ntp-%{version}
Index: openpkg-web/news.txt
============================================================
$ cvs diff -u -r1.854 -r1.855 news.txt
--- openpkg-web/news.txt 30 Jun 2002 08:21:55 -0000 1.854
+++ openpkg-web/news.txt 30 Jun 2002 18:39:27 -0000 1.855
@@ -1,3 +1,4 @@
+30-Jun-2002: Upgraded package: P<ntp-4.1.1a-20020630>
30-Jun-2002: Upgraded package: P<openssl-0.9.6d-20020630>
30-Jun-2002: Upgraded package: P<ncurses-5.2.20020629-20020630>
29-Jun-2002: Upgraded package: P<vim-6.1.117-20020629>
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]