/[smeserver]/rpms/ppp/sme9/ppp.spec
ViewVC logotype

Contents of /rpms/ppp/sme9/ppp.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Wed Mar 6 22:45:24 2013 UTC (11 years, 2 months ago) by slords
Branch: MAIN
CVS Tags: ppp-2_4_5-24_fc19, ppp-2_4_5-24_el6_sme, HEAD
Initial import

1 Summary: The Point-to-Point Protocol daemon
2 Name: ppp
3 Version: 2.4.5
4 Release: 24%{?dist}
5 License: BSD and LGPLv2+ and GPLv2+ and Public Domain
6 Group: System Environment/Daemons
7 URL: http://www.samba.org/ppp
8 Source0: ftp://ftp.samba.org/pub/ppp/ppp-%{version}.tar.gz
9 Source1: ppp-2.3.5-pamd.conf
10 Source2: ppp.logrotate
11 Source3: ppp-tmpfs.conf
12 Patch0: ppp-2.4.3-make.patch
13 Patch1: ppp-2.3.6-sample.patch
14 Patch2: ppp-2.4.2-libutil.patch
15 Patch3: ppp-2.4.1-varargs.patch
16 Patch4: ppp-2.4.4-lib64.patch
17 Patch7: ppp-2.4.2-pie.patch
18 Patch8: ppp-2.4.3-fix.patch
19 Patch9: ppp-2.4.3-fix64.patch
20 Patch11: ppp-2.4.2-change_resolv_conf.patch
21 Patch13: ppp-2.4.4-no_strip.patch
22 Patch17: ppp-2.4.2-pppoatm-make.patch
23 Patch19: ppp-2.4.3-local.patch
24 Patch20: ppp-2.4.3-ipv6-accept-remote.patch
25 Patch22: ppp-2.4.4-cbcp.patch
26 Patch23: ppp-2.4.2-dontwriteetc.patch
27 Patch24: ppp-2.4.4-fd_leak.patch
28 Patch25: ppp-2.4.5-var_run_ppp.patch
29 Patch26: ppp-2.4.5-manpg.patch
30 Patch27: ppp-2.4.5-eaptls-mppe-0.99.patch
31 Patch28: ppp-2.4.5-ppp_resolv.patch
32 Patch29: ppp-2.4.5-man.patch
33 Patch30: ppp-2.4.5-eth.patch
34 Patch31: ppp-2.4.5-lock.patch
35 Patch32: ppp-2.4.5-l2tp-multilink.patch
36
37 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
38 BuildRequires: pam-devel, libpcap-devel, openssl-devel
39 Requires: glibc >= 2.0.6, /etc/pam.d/system-auth, logrotate, libpcap >= 14:0.8.3-6
40
41 %description
42 The ppp package contains the PPP (Point-to-Point Protocol) daemon and
43 documentation for PPP support. The PPP protocol provides a method for
44 transmitting datagrams over serial point-to-point links. PPP is
45 usually used to dial in to an ISP (Internet Service Provider) or other
46 organization over a modem and phone line.
47
48 %package devel
49 Summary: Headers for ppp plugin development
50 Group: Development/Libraries
51
52 %description devel
53 This package contains the header files for building plugins for ppp.
54
55 %prep
56 %setup -q
57 %patch0 -p1 -b .make
58 %patch1 -p1 -b .sample
59 # patch 2 depends on the -lutil in patch 0
60 %patch2 -p1 -b .libutil
61 %patch3 -p1 -b .varargs
62 # patch 4 depends on the -lutil in patch 0
63 %patch4 -p1 -b .lib64
64 %patch7 -p1 -b .pie
65 %patch8 -p1 -b .fix
66 %patch9 -p1 -b .fix64
67 %patch11 -p1 -b .change_resolv_conf
68 %patch13 -p1 -b .no_strip
69 %patch17 -p1 -b .atm-make
70 %patch19 -p1 -b .local
71 %patch20 -p1 -b .ipv6cp
72 %patch22 -p1 -b .cbcp
73 %patch23 -p1 -b .dontwriteetc
74 %patch24 -p1 -b .fd_leak
75 %patch25 -p1 -b .var_run_ppp
76 %patch26 -p1 -b .manpg
77 %patch27 -p1 -b .eaptls
78 %patch28 -p1 -b .ppp_resolv
79 %patch29 -p1 -b .man
80 # fixes bz#682381 - hardcodes eth0
81 %patch30 -p1 -b .eth
82 # fixes bz#708260 - SELinux is preventing access on the file LCK..ttyUSB3
83 %patch31 -p1 -b .lock
84 %patch32 -p1 -b .l2tp-multilink
85
86 rm -f scripts/*.local
87 rm -f scripts/*.change_resolv_conf
88 rm -f scripts/*.usepeerdns-var_run_ppp_resolv
89 rm -f scripts/*.ppp_resolv
90 find . -type f -name "*.sample" | xargs rm -f
91
92 rm -f include/linux/if_pppol2tp.h
93
94 %build
95 #find . -name 'Makefile*' -print0 | xargs -0 perl -pi.no_strip -e "s: -s : :g"
96 RPM_OPT_FLAGS="$RPM_OPT_FLAGS -fPIC -Wall"
97 %configure
98 make
99
100 %install
101 [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
102 export INSTROOT=$RPM_BUILD_ROOT
103 make install install-etcppp
104
105 chmod -R a+rX scripts
106 find scripts -type f | xargs chmod a-x
107 chmod 0755 $RPM_BUILD_ROOT/%{_libdir}/pppd/%{version}/*.so
108 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pam.d
109 install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/ppp
110
111 # Provide pointers for people who expect stuff in old places
112 mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log/ppp
113 mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/run/ppp
114 mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lock/ppp
115
116 install -d -m 755 $RPM_BUILD_ROOT%{_sysconfdir}/tmpfiles.d
117 install -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/tmpfiles.d/ppp.conf
118
119 # Logrotate script
120 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
121 install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/ppp
122
123 %clean
124 rm -rf $RPM_BUILD_ROOT
125
126 %files
127 %defattr(-,root,root)
128 %{_sbindir}/chat
129 %{_sbindir}/pppd
130 %{_sbindir}/pppdump
131 %{_sbindir}/pppoe-discovery
132 %{_sbindir}/pppstats
133 %{_mandir}/man8/chat.8*
134 %{_mandir}/man8/pppd.8*
135 %{_mandir}/man8/pppdump.8*
136 %{_mandir}/man8/pppd-radattr.8*
137 %{_mandir}/man8/pppd-radius.8*
138 %{_mandir}/man8/pppstats.8*
139 %{_mandir}/man8/pppoe-discovery.8*
140 %{_libdir}/pppd
141 %dir %{_sysconfdir}/ppp
142 %dir %{_localstatedir}/run/ppp
143 %dir %{_localstatedir}/lock/ppp
144 %attr(700, root, root) %dir %{_localstatedir}/log/ppp
145 %config %{_sysconfdir}/tmpfiles.d/ppp.conf
146 %config(noreplace) %{_sysconfdir}/ppp/eaptls-client
147 %config(noreplace) %{_sysconfdir}/ppp/eaptls-server
148 %config(noreplace) %{_sysconfdir}/ppp/chap-secrets
149 %config(noreplace) %{_sysconfdir}/ppp/options
150 %config(noreplace) %{_sysconfdir}/ppp/pap-secrets
151 %config(noreplace) %{_sysconfdir}/pam.d/ppp
152 %config(noreplace) %{_sysconfdir}/logrotate.d/ppp
153 %doc FAQ README README.cbcp README.linux README.MPPE README.MSCHAP80 README.MSCHAP81 README.pwfd README.pppoe scripts sample README.eap-tls
154
155 %files devel
156 %defattr(-,root,root)
157 %{_includedir}/pppd
158 %doc PLUGINS
159
160 %changelog
161 * Tue Sep 11 2012 Michal Sekletar <msekleta@redhat.com> - 2.4.5-24
162 - Removed unnecessary dependency on systemd-unit
163
164 * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-23
165 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
166
167 * Tue May 29 2012 Michal Sekletar <msekleta@redhat.com>
168 - Resolves: #817011 - fixed ppp-2.4.5-eaptls-mppe-0.99 patch, added variable definition
169
170 * Mon May 21 2012 Michal Sekletar <msekleta@redhat.com>
171 - Resolves: #817013 - fixed support for multilink channels in pppol2tp plugin
172
173 * Thu May 17 2012 Michal Sekletar <msekleta@redhat.com>
174 - Resolves: #771340 - fixed compilation of pppd without USE_EAPTLS
175
176 * Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-19
177 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
178
179 * Mon May 30 2011 Jiri Skala <jskala@redhat.com> - 2.4.5-18
180 - fixes #682381 - hardcodes eth0
181 - fixes #708260 - SELinux is preventing access on the file LCK..ttyUSB3
182
183 * Mon Apr 04 2011 Jiri Skala <jskala@redhat.com> - 2.4.5-17
184 - fixes #664282 and #664868 - man page fixes
185
186 * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-16
187 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
188
189 * Thu Dec 02 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-15
190 - corrected tmpfiles.d conf
191 - replaced remaining /etc by macros
192
193 * Tue Nov 30 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-14
194 - fixes #656671 - /var/run and /var/lock on tmpfs
195 - replaced paths /var /etc by macros
196
197 * Tue Nov 16 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-13
198 - fixes #565294 - SELinux is preventing /sbin/consoletype access to a leaked packet_socket fd
199
200 * Wed Sep 29 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-12
201 - fixes #637513 - Missing: README.eap-tls
202 - updated to latest eaptls upstream
203 - fixes #637886 - EAP-TLS not working with enabled PPP Multilink Framing option
204
205 * Thu Aug 05 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-11
206 - fixes #617625 - FTBFS in ppp due to change in kernel-headers
207 - fixes pppol2tp Makefile
208
209 * Tue Jul 13 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-10
210 - fixes #613717 - Missing line in example script ip-up.local.add
211 - removed /usr/kerberos/include from eaptls patch
212
213 * Wed Jun 16 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-9
214 - included eap-tls patch
215
216 * Wed Apr 07 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-8
217 - added pppoe-discovery(8)
218
219 * Fri Mar 05 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-7
220 - removed duplicities from patches (ip-*.local.add)
221
222 * Fri Feb 12 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-6
223 - fixes #560014 - SELinux is preventing /usr/sbin/pppd "read write" access on pppd2.tdb
224
225 * Thu Feb 04 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-5
226 - one line correction in fd_leak patch
227
228 * Wed Feb 03 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-4
229 - applied patch fd_leak
230
231 * Fri Jan 22 2010 Jiri Skala <jskala@redhat.com> - 2.4.5-3
232 - fixed some rpmlint complains
233
234 * Sun Nov 22 2009 Jiri Skala <jskala@redhat.com> - 2.4.5-2
235 - updated patches (make local succeeded, koji failed)
236
237 * Fri Nov 20 2009 Jiri Skala <jskala@redhat.com> - 2.4.5-1
238 - updated to latest upstream sources (#538058)
239
240 * Thu Oct 08 2009 Jiri Skala <jskala@redhat.com> - 2.4.4-14
241 - fixed #519042 - ppp package is missing URL in spec
242 - fixed #524575 - ppp: no_strip patch modifies backup files created by previous patches
243
244 * Wed Sep 16 2009 Tomas Mraz <tmraz@redhat.com> 2.4.4-13
245 - use password-auth common PAM configuration instead of system-auth
246
247 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.4-12
248 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
249
250 * Fri Mar 06 2009 - Jiri Skala <jskala@redhat.com> 2.4.4-11
251 - fixed #488764 - package upgrade should not replace configuration files
252
253 * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.4-10
254 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
255
256 * Thu Dec 11 2008 Jiri Skala <jskala@redhat.com> 2.4.4.-9
257 - fixed #467004 PPP sometimes gets incorrect DNS servers for mobile broadband connections
258
259 * Thu Aug 28 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.4.4-8
260 - fix license tag
261
262 * Tue May 13 2008 Martin Nagy <mnagy@redhat.com> 2.4.4-7
263 - add new speeds, patch by Jason Vas Dias (#446132)
264
265 * Thu Mar 06 2008 Martin Nagy <mnagy@redhat.com> 2.4.4-6
266 - call closelog earlier (#222295)
267 - fix ChapMS2 (#217076)
268 - moving header files to new -devel package (#203542)
269
270 * Mon Mar 03 2008 Martin Nagy <mnagy@redhat.com> 2.4.4-5
271 - put logs into /var/log/ppp (#118837)
272
273 * Mon Feb 11 2008 Martin Nagy <mnagy@redhat.com> 2.4.4-4
274 - rebuild for gcc-4.3
275
276 * Fri Nov 09 2007 Martin Nagy <mnagy@redhat.com> 2.4.4-3
277 - removed undesired files from the package (#241753)
278
279 * Fri Dec 1 2006 Thomas Woerner <twoerner@redhat.com> 2.4.4-2
280 - fixed build requirement for libpcap (#217661)
281
282 * Wed Jul 19 2006 Thomas Woerner <twoerner@redhat.com> 2.4.4-1
283 - new version 2.4.4 with lots of fixes
284 - fixed reesolv.conf docs (#165072)
285 Thanks to Matt Domsch for the initial patch
286 - enabled CBCP (#199278)
287
288 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.4.3-6.2.2
289 - rebuild
290
291 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.4.3-6.2.1
292 - bump again for double-long bug on ppc(64)
293
294 * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.4.3-6.2
295 - rebuilt for new gcc4.1 snapshot and glibc changes
296
297 * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
298 - rebuilt
299
300 * Sat Nov 12 2005 Florian La Roche <laroche@redhat.com>
301 - rebuild
302
303 * Fri Nov 4 2005 David Woodhouse <dwmw2@redhat.com> 2.4.3-5
304 - Implement ipv6cp-accept-remote option
305
306 * Fri Oct 7 2005 Tomas Mraz <tmraz@redhat.com> 2.4.3-4
307 - use include instead of pam_stack in pam config
308
309 * Sun Jul 31 2005 Florian La Roche <laroche@redhat.com>
310 - rebuild for libpcap of the day
311
312 * Tue Jul 19 2005 Thomas Woerner <twoerner@redhat.com> 2.4.3-2.1
313 - additional patch for the scripts, thanks to Sammy (#163621)
314
315 * Tue Jul 19 2005 Thomas Woerner <twoerner@redhat.com> 2.4.3-2
316 - dropped all executable bits in scripts directory to prevent rpm requiring
317 programs used in there
318
319 * Mon Jul 18 2005 Thomas Woerner <twoerner@redhat.com> 2.4.3-1
320 - new version 2.4.3
321 - updated patches: make, lib64, dontwriteetc, fix, fix64, no_strip,
322 radiusplugin
323 - dropped patches: bpf, signal, pcap, pppoatm, pkgcheck
324
325 * Tue Nov 2 2004 Thomas Woerner <twoerner@redhat.com> 2.4.2-7
326 - fixed out of bounds memory access, possible DOS
327
328 * Thu Oct 7 2004 David Woodhouse <dwmw2@redhat.com> 2.4.2-6.3
329 - Fix use of 'demand' without explicit MTU/MRU with pppoatm
330
331 * Tue Oct 5 2004 David Woodhouse <dwmw2@redhat.com> 2.4.2-6.2
332 - Link pppoatm plugin against libresolv.
333 - Revert to linux-atm headers without the workaround for #127098
334
335 * Mon Oct 4 2004 David Woodhouse <dwmw2@redhat.com> 2.4.2-6.1
336 - Include atmsap.h for pppoatm plugin.
337
338 * Mon Oct 4 2004 David Woodhouse <dwmw2@redhat.com> 2.4.2-6
339 - Add pppoatm plugin (#131555)
340
341 * Thu Sep 16 2004 Thomas Woerner <twoerner@redhat.com> 2.4.2-5.1
342 - fixed subscript out of range (#132677)
343
344 * Wed Sep 15 2004 Thomas Woerner <twoerner@redhat.com> 2.4.2-5
345 - example scripts are using change_resolv_conf to modify /etc/resolv.conf
346 (#132482)
347 - require new libpcap library (>= 0.8.3-6) with a fix for inbound/outbound
348 filter processing
349 - not using internal libpcap structures anymore, fixes inbound/outbound
350 filter processing (#128053)
351
352 * Fri Aug 6 2004 Thomas Woerner <twoerner@redhat.com> 2.4.2-4
353 - fixed signal handling (#29171)
354
355 * Mon Jun 21 2004 Thomas Woerner <twoerner@redhat.com> 2.4.2-3.1
356 - fixed compiler warnings
357 - fixed 64bit problem with ms-chap (#125501)
358 - enabled pie again
359
360 * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
361 - rebuilt
362
363 * Wed May 24 2004 David Woodhouse <dwmw2@redhat.com> 2.4.2-2.3
364 - Enable IPv6 support. Disable PIE to avoid bogus Provides:
365
366 * Fri May 14 2004 Thomas Woerner <twoerner@redhat.com> 2.4.2-2.2
367 - compiled pppd and chat PIE
368
369 * Thu May 13 2004 Thomas Woerner <twoerner@redhat.com> 2.4.2-2.1
370 - added 'missingok' to ppp.logrotate (#122911)
371
372 * Fri May 07 2004 Nils Philippsen <nphilipp@redhat.com> 2.4.2-2
373 - don't write to /etc (#118837)
374
375 * Wed Mar 10 2004 Nalin Dahyabhai <nalin@redhat.com> 2.4.2-1
376 - update to 2.4.2
377
378 * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
379 - rebuilt
380
381 * Fri Sep 5 2003 Nalin Dahyabhai <nalin@redhat.com> 2.4.1-15
382 - rebuild
383
384 * Fri Sep 5 2003 Nalin Dahyabhai <nalin@redhat.com> 2.4.1-14
385 - apply the patch from -11
386
387 * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
388 - rebuilt
389
390 * Tue Jun 3 2003 Nalin Dahyabhai <nalin@redhat.com> 2.4.1-12
391 - rebuild
392
393 * Tue Jun 3 2003 Nalin Dahyabhai <nalin@redhat.com> 2.4.1-11
394 - check for libcrypt in the right directory at compile-time
395
396 * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
397 - rebuilt
398
399 * Thu Dec 12 2002 Elliot Lee <sopwith@redhat.com> 2.4.1-9
400 - Fix build failure by rebuilding
401
402 * Tue Nov 19 2002 Nalin Dahyabhai <nalin@redhat.com> 2.4.1-8
403 - rebuild
404 - set x86_64 to use varargs the way s390 does
405
406 * Mon Jul 22 2002 Florian La Roche <Florian.LaRoche@redhat.de>
407 - add patch:
408 * Thu Jun 06 2002 Phil Knirsch <pknirsch@redhat.com>
409 - Fixed varargs problem for s390/s390x.
410
411 * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
412 - automated rebuild
413
414 * Sun May 26 2002 Tim Powers <timp@redhat.com>
415 - automated rebuild
416
417 * Fri May 17 2002 Nalin Dahyabhai <nalin@redhat.com> 2.4.1-4
418 - rebuild in new environment
419
420 * Wed Feb 27 2002 Nalin Dahyabhai <nalin@redhat.com> 2.4.1-3
421 - revert cbcp patch, it's wrong (#55367)
422
423 * Thu Aug 9 2001 Nalin Dahyabhai <nalin@redhat.com> 2.4.1-2
424 - add buildprereq on pam-devel (#49559)
425 - add patch to respond to CBCP LCP requests (#15738)
426 - enable cbcp support at build-time
427 - change the Copyright: tag to a License: tag
428
429 * Wed May 23 2001 Nalin Dahyabhai <nalin@redhat.com> 2.4.1-1
430 - update to 2.4.1
431
432 * Fri Dec 1 2000 Nalin Dahyabhai <nalin@redhat.com>
433 - rebuild in new environment
434
435 * Thu Nov 9 2000 Nalin Dahyabhai <nalin@redhat.com>
436 - update to 2.4.0
437
438 * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
439 - automatic rebuild
440
441 * Mon Jun 5 2000 Nalin Dahyabhai <nalin@redhat.com>
442 - move man pages to %{_mandir}
443
444 * Thu Jun 1 2000 Nalin Dahyabhai <nalin@redhat.com>
445 - change perms using defattr
446 - modify PAM setup to use system-auth
447
448 * Sun Mar 26 2000 Florian La Roche <Florian.La Roche@redhat.com>
449 - change to root:root perms
450
451 * Mon Mar 06 2000 Nalin Dahyabhai <nalin@redhat.com>
452 - reaper bugs verified as fixed
453 - check pam_open_session result code (bug #9966)
454
455 * Mon Feb 07 2000 Nalin Dahyabhai <nalin@redhat.com>
456 - take a shot at the wrong reaper bugs (#8153, #5290)
457
458 * Thu Feb 03 2000 Nalin Dahyabhai <nalin@redhat.com>
459 - free ride through the build system (release 2)
460
461 * Tue Jan 18 2000 Nalin Dahyabhai <nalin@redhat.com>
462 - Update to 2.3.11
463
464 * Sat Nov 06 1999 Michael K. Johnson <johnsonm@redhat.com>
465 - Better fix for both problems
466
467 * Fri Nov 05 1999 Michael K. Johnson <johnsonm@redhat.com>
468 - fix for double-dial problem
469 - fix for requiring a controlling terminal problem
470
471 * Sun Sep 19 1999 Preston Brown <pbrown@redhat.com>
472 - 2.3.10 bugfix release
473
474 * Fri Aug 13 1999 Michael K. Johnson <johnsonm@redhat.com>
475 - New version 2.3.9 required for kernel 2.3.13 and will be required
476 for new initscripts. auth patch removed; 2.3.9 does the same thing
477 more readably than the previous patch.
478
479 * Thu Jun 24 1999 Cristian Gafton <gafton@redhat.com>
480 - add pppdump
481
482 * Fri Apr 09 1999 Cristian Gafton <gafton@redhat.com>
483 - force pppd use the glibc's logwtmp instead of implementing its own
484
485 * Wed Apr 01 1999 Preston Brown <pbrown@redhat.com>
486 - version 2.3.7 bugfix release
487
488 * Tue Mar 23 1999 Cristian Gafton <gafton@redhat.com>
489 - version 2.3.6
490
491 * Mon Mar 22 1999 Michael Johnson <johnsonm@redhat.com>
492 - auth patch
493
494 * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
495 - auto rebuild in the new build environment (release 3)
496
497 * Thu Jan 07 1999 Cristian Gafton <gafton@redhat.com>
498 - build for glibc 2.1
499
500 * Fri Jun 5 1998 Jeff Johnson <jbj@redhat.com>
501 - updated to 2.3.5.
502
503 * Tue May 19 1998 Prospector System <bugs@redhat.com>
504 - translations modified for de
505
506 * Fri May 8 1998 Jakub Jelinek <jj@ultra.linux.cz>
507 - make it run with kernels 2.1.100 and above.
508
509 * Fri Apr 24 1998 Prospector System <bugs@redhat.com>
510 - translations modified for de, fr, tr
511
512 * Wed Mar 18 1998 Cristian Gafton <gafton@redhat.com>
513 - requires glibc 2.0.6 or later
514
515 * Wed Mar 18 1998 Michael K. Johnson <johnsonm@redhat.com>
516 - updated PAM patch to not turn off wtmp/utmp/syslog logging.
517
518 * Wed Jan 7 1998 Cristian Gafton <gafton@redhat.com>
519 - added the /etc/pam.d config file
520 - updated PAM patch to include session support
521
522 * Tue Jan 6 1998 Cristian Gafton <gafton@redhat.com>
523 - updated to ppp-2.3.3, build against glibc-2.0.6 - previous patches not
524 required any more.
525 - added buildroot
526 - fixed the PAM support, which was really, completely broken and against any
527 standards (session support is still not here... :-( )
528 - we build against running kernel and pray that it will work
529 - added a samples patch; updated glibc patch
530
531 * Thu Dec 18 1997 Erik Troan <ewt@redhat.com>
532 - added a patch to use our own route.h, rather then glibc's (which has
533 alignment problems on Alpha's) -- I only applied this patch on the Alpha,
534 though it should be safe everywhere
535
536 * Fri Oct 10 1997 Erik Troan <ewt@redhat.com>
537 - turned off the execute bit for scripts in /usr/doc
538
539 * Fri Jul 18 1997 Erik Troan <ewt@redhat.com>
540 - built against glibc
541
542 * Tue Mar 25 1997 Erik Troan <ewt@redhat.com>
543 - Integrated new patch from David Mosberger
544 - Improved description
545

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed