- released 0.4.2

- SPEC file: included config files & more docu
This commit is contained in:
Thomas Ries 2003-10-31 20:21:49 +00:00
parent a492248d4d
commit b4aa38a683
3 changed files with 24 additions and 6 deletions

View File

@ -1,7 +1,10 @@
0.4.1
0.4.2
=====
31-Oct-2003: - released 0.4.2
24-Oct-2003: - SPEC file: included config files & more docu
19-Oct-2003: - included compiling support for DMALLOC debugging
- fixed 2 memory leaks in proxy.c
0.4.1
=====
12-Oct-2003: - released 0.4.1

2
TODO
View File

@ -30,3 +30,5 @@ TODOs, in random order:
(defined by IFNAME)
- siproxd may use an outbound proxy of its own (chaining feature)
- support IPTABLES for RTP proxying

View File

@ -37,24 +37,37 @@ an IP masquerading firewall or router.
%setup -q
%build
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --sysconfdir=%{sysconfdir}
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} \
--sysconfdir=%{sysconfdir}
make
%install
make prefix=$RPM_BUILD_ROOT%{prefix} PIXDESTDIR=$RPM_BUILD_ROOT sysconfdir=$RPM_BUILD_ROOT%{sysconfdir} install
make prefix=$RPM_BUILD_ROOT%{prefix} \
sysconfdir=$RPM_BUILD_ROOT%{sysconfdir} \
install
mv %{sysconfdir}/siproxd.conf.example %{sysconfdir}/siproxd.conf
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-, root, root)
%doc COPYING README AUTHORS INSTALL NEWS ChangeLog
%doc COPYING README AUTHORS INSTALL NEWS ChangeLog doc/FAQ doc/FLI4L_HOWTO.txt
%{_bindir}/siproxd
%config %{sysconfdir}/siproxd.conf
%config %{sysconfdir}/siproxd_passwd.cfg
%post
echo "Edit the config file %{sysconfigdir}/siproxd.conf!"
%changelog
* Sat Aug 30 2003 Thomas Ries <tries@gmx.net>
- added config files and some more doc files
- rename sample config file and remind uder to edit it.
- minor cleanup
* Sat Oct 24 2003 Thomas Ries <tries@gmx.net>
- always use /etc as sysconfdir
* Sat Sep 21 2002 Thomas Ries <tries@gmx.net>