Changeset b917538 in freewrt for package/openntpd/patches/01-adjtimex_linux.patch
- Timestamp:
- Oct 1, 2006, 10:31:51 AM (19 years ago)
- Branches:
- freewrt_1_0, freewrt_2_0
- Children:
- edaeca5
- Parents:
- 2f09cbe
- File:
-
- 1 edited
-
package/openntpd/patches/01-adjtimex_linux.patch (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
package/openntpd/patches/01-adjtimex_linux.patch
r2f09cbe rb917538 1 diff - urN openntpd-3.7p1.orig/client.c openntpd-3.7p1/client.c2 --- openntpd-3. 7p1.orig/client.c 2005-03-13 13:36:38.000000000 +01003 +++ openntpd-3. 7p1/client.c 2006-02-23 16:27:53.686827824 +01004 @@ -3 06,7 +306,7 @@1 diff -Nur openntpd-3.9p1/client.c openntpd-3.9p1.patched/client.c 2 --- openntpd-3.9p1/client.c 2006-05-14 07:29:21.000000000 +0200 3 +++ openntpd-3.9p1.patched/client.c 2006-09-30 12:41:07.000000000 +0200 4 @@ -321,7 +321,7 @@ 5 5 priv_adjtime(); 6 6 … … 11 11 12 12 return (0); 13 diff - urN openntpd-3.7p1.orig/configure.ac openntpd-3.7p1/configure.ac14 --- openntpd-3. 7p1.orig/configure.ac 2005-05-23 13:11:08.000000000 +020015 +++ openntpd-3. 7p1/configure.ac 2006-02-23 16:27:53.688827520 +010016 @@ - 466,6 +466,11 @@17 [ builtin_arc4random=$withval ]18 )13 diff -Nur openntpd-3.9p1/configure.ac openntpd-3.9p1.patched/configure.ac 14 --- openntpd-3.9p1/configure.ac 2006-05-14 07:29:23.000000000 +0200 15 +++ openntpd-3.9p1.patched/configure.ac 2006-09-30 12:41:07.000000000 +0200 16 @@ -617,6 +617,11 @@ 17 fi 18 AC_SUBST(mansubdir) 19 19 20 20 +AC_ARG_WITH(adjtimex, … … 26 26 if test "$ac_cv_func_arc4random" != "yes" && test "x$builtin_arc4random" != "xyes"; then 27 27 saved_CPPFLAGS="$CPPFLAGS" 28 diff - urN openntpd-3.7p1.orig/defines.h openntpd-3.7p1/defines.h29 --- openntpd-3. 7p1.orig/defines.h 2005-05-23 02:16:33.000000000 +020030 +++ openntpd-3. 7p1/defines.h 2006-02-23 16:27:53.688827520 +010028 diff -Nur openntpd-3.9p1/defines.h openntpd-3.9p1.patched/defines.h 29 --- openntpd-3.9p1/defines.h 2006-05-14 07:29:21.000000000 +0200 30 +++ openntpd-3.9p1.patched/defines.h 2006-09-30 12:41:07.000000000 +0200 31 31 @@ -20,6 +20,10 @@ 32 32 # define setproctitle(x) … … 40 40 # if defined(HAVE_STRUCT_SOCKADDR_SA_LEN) 41 41 # define SA_LEN(x) ((x)->sa_len) 42 diff - urN openntpd-3.7p1.orig/openbsd-compat/Makefile.in openntpd-3.7p1/openbsd-compat/Makefile.in43 --- openntpd-3. 7p1.orig/openbsd-compat/Makefile.in 2004-12-20 00:41:36.000000000 +010044 +++ openntpd-3. 7p1/openbsd-compat/Makefile.in 2006-02-23 16:27:53.901795144 +010042 diff -Nur openntpd-3.9p1/openbsd-compat/Makefile.in openntpd-3.9p1.patched/openbsd-compat/Makefile.in 43 --- openntpd-3.9p1/openbsd-compat/Makefile.in 2006-05-14 07:29:19.000000000 +0200 44 +++ openntpd-3.9p1.patched/openbsd-compat/Makefile.in 2006-09-30 12:41:07.000000000 +0200 45 45 @@ -9,7 +9,7 @@ 46 OPENBSD= asprintf.o daemon.o inet_pton.o strlcpy.o47 46 COMPAT= atomicio.o bsd-arc4random.o bsd-misc.o bsd-poll.o \ 48 bsd-snprintf.o fake-rfc2553.o uidswap.o 47 bsd-snprintf.o bsd-getifaddrs.o bsd-setresuid.o \ 48 bsd-setresgid.o fake-rfc2553.o 49 49 -PORT= port-qnx.o 50 50 +PORT= port-linux.o port-qnx.o … … 52 52 VPATH=@srcdir@ 53 53 CC=@CC@ 54 diff - urN openntpd-3.7p1.orig/openbsd-compat/openbsd-compat.h openntpd-3.7p1/openbsd-compat/openbsd-compat.h55 --- openntpd-3. 7p1.orig/openbsd-compat/openbsd-compat.h 2004-12-19 04:04:22.000000000 +010056 +++ openntpd-3. 7p1/openbsd-compat/openbsd-compat.h 2006-02-23 16:27:53.948788000 +010057 @@ -4 4,6 +44,11 @@54 diff -Nur openntpd-3.9p1/openbsd-compat/openbsd-compat.h openntpd-3.9p1.patched/openbsd-compat/openbsd-compat.h 55 --- openntpd-3.9p1/openbsd-compat/openbsd-compat.h 2006-05-14 07:29:19.000000000 +0200 56 +++ openntpd-3.9p1.patched/openbsd-compat/openbsd-compat.h 2006-09-30 12:41:07.000000000 +0200 57 @@ -46,6 +46,11 @@ 58 58 __attribute__((__format__ (printf, 2, 3))); 59 59 #endif … … 67 67 int inet_pton(int, const char *, void *); 68 68 #endif 69 diff - urN openntpd-3.7p1.orig/openbsd-compat/port-linux.c openntpd-3.7p1/openbsd-compat/port-linux.c70 --- openntpd-3. 7p1.orig/openbsd-compat/port-linux.c 1970-01-01 01:00:00.000000000 +010071 +++ openntpd-3. 7p1/openbsd-compat/port-linux.c 2006-02-23 16:27:53.996780704 +010069 diff -Nur openntpd-3.9p1/openbsd-compat/port-linux.c openntpd-3.9p1.patched/openbsd-compat/port-linux.c 70 --- openntpd-3.9p1/openbsd-compat/port-linux.c 1970-01-01 01:00:00.000000000 +0100 71 +++ openntpd-3.9p1.patched/openbsd-compat/port-linux.c 2006-09-30 12:41:07.000000000 +0200 72 72 @@ -0,0 +1,105 @@ 73 73 +/* $Id$ */
Note:
See TracChangeset
for help on using the changeset viewer.
