annotate libpst.spec.in @ 118:0f1492b7fe8b

patch from Fridrich Strba for building on mingw and general cleanup of autoconf files add processing for pst files of type 0x0f start adding support for properly building and installing libpst.so and the header files required to use it. remove version.h since the version number is now in config.h more const correctness issues regarding getopt()
author Carl Byington <carl@five-ten-sg.com>
date Sat, 31 Jan 2009 12:12:36 -0800
parents ed2a260bbb98
children 8399ef94c11b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
1 Summary: Utilities to convert Outlook .pst files to other formats
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
2 Name: @PACKAGE@
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
3 Version: @VERSION@
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
4 Release: 1%{?dist}
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
5 License: GPLv2+
51
06c0262ad689 code cleanup
carl
parents: 31
diff changeset
6 Group: Applications/Productivity
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
7 Source: http://www.five-ten-sg.com/%{name}/packages/%{name}-%{version}.tar.gz
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
8 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
9 URL: http://www.five-ten-sg.com/%{name}/
66
32f771bc9c1c remove redundant requires from the spec file
Carl Byington <carl@five-ten-sg.com>
parents: 65
diff changeset
10 Requires: ImageMagick
65
800c6fde1cf6 build requires ImageMagick to see convert needed by pst2dii
Carl Byington <carl@five-ten-sg.com>
parents: 64
diff changeset
11 BuildRequires: ImageMagick freetype-devel gd-devel libjpeg-devel zlib-devel
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
12
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
13
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
14 %description
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
15 The Libpst utilities include readpst which can convert email messages
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
16 to both mbox and MH mailbox formats, pst2ldif which can convert the
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
17 contacts to .ldif format for import into ldap databases, and pst2dii
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
18 which can convert email messages to the DII load file format used by
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
19 Summation.
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
20
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
21
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
22 %prep
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
23 %setup -q
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
24
67
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
25
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
26 %build
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
27 %configure
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
28 make %{?_smp_mflags}
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
29
67
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
30
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
31 %install
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
32 rm -rf $RPM_BUILD_ROOT
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
33 make DESTDIR=$RPM_BUILD_ROOT install
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
34
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
35
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
36 %clean
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
37 rm -rf $RPM_BUILD_ROOT
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
38
67
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
39
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
40 %files
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
41 %defattr(-,root,root,-)
24
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
42 %{_bindir}/*
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
43 %{_mandir}/man1/*
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
44 %{_mandir}/man5/*
67
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
45 %docdir %{_datadir}/doc/%{name}-%{version}
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
46 %{_datadir}/doc/%{name}-%{version}
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
47
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
48
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
49 %changelog
118
0f1492b7fe8b patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents: 116
diff changeset
50 * Sat Jan 31 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.26-1
0f1492b7fe8b patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents: 116
diff changeset
51 - patch from Fridrich Strba for building on mingw and general
0f1492b7fe8b patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents: 116
diff changeset
52 - cleanup of autoconf files.
0f1492b7fe8b patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents: 116
diff changeset
53 - add processing for pst files of type 0x0f
0f1492b7fe8b patch from Fridrich Strba for building on mingw and general cleanup of autoconf files
Carl Byington <carl@five-ten-sg.com>
parents: 116
diff changeset
54
116
ed2a260bbb98 improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents: 114
diff changeset
55 * Fri Jan 16 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.25-1
ed2a260bbb98 improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents: 114
diff changeset
56 - improve handling of content-type charset values in mime parts
ed2a260bbb98 improve handling of content-type charset values in mime parts
Carl Byington <carl@five-ten-sg.com>
parents: 114
diff changeset
57
114
e213bfcf9aa7 patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents: 112
diff changeset
58 * Thu Dec 11 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.24-1
e213bfcf9aa7 patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents: 112
diff changeset
59 - patch from Chris Eagle to build on cygwin
e213bfcf9aa7 patch from Chris Eagle to build on cygwin
Carl Byington <carl@five-ten-sg.com>
parents: 112
diff changeset
60
112
554e9a422778 bump version to avoid cvs tagging mistake in fedora
Carl Byington <carl@five-ten-sg.com>
parents: 110
diff changeset
61 * Thu Dec 04 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.23-1
554e9a422778 bump version to avoid cvs tagging mistake in fedora
Carl Byington <carl@five-ten-sg.com>
parents: 110
diff changeset
62 - bump version to avoid cvs tagging mistake in fedora
554e9a422778 bump version to avoid cvs tagging mistake in fedora
Carl Byington <carl@five-ten-sg.com>
parents: 110
diff changeset
63
110
7133b39975f7 patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents: 108
diff changeset
64 * Fri Nov 28 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.22-1
7133b39975f7 patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents: 108
diff changeset
65 - patch from David Cuadrado to process emails with type PST_TYPE_OTHER
7133b39975f7 patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents: 108
diff changeset
66 - base64_encode_multiple() may insert newline, needs larger malloc
7133b39975f7 patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents: 108
diff changeset
67 - subject lines shorter than 2 bytes could segfault
7133b39975f7 patch from David Cuadrado to process emails with type PST_TYPE_OTHER
Carl Byington <carl@five-ten-sg.com>
parents: 108
diff changeset
68
108
1b2a4fac1303 fix title bug with old schema in pst2ldif, also escape commas in distinguished names per rfc4514.
Carl Byington <carl@five-ten-sg.com>
parents: 104
diff changeset
69 * Tue Oct 21 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.21-1
1b2a4fac1303 fix title bug with old schema in pst2ldif, also escape commas in distinguished names per rfc4514.
Carl Byington <carl@five-ten-sg.com>
parents: 104
diff changeset
70 - fix title bug with old schema in pst2ldif.
1b2a4fac1303 fix title bug with old schema in pst2ldif, also escape commas in distinguished names per rfc4514.
Carl Byington <carl@five-ten-sg.com>
parents: 104
diff changeset
71 - also escape commas in distinguished names per rfc4514.
1b2a4fac1303 fix title bug with old schema in pst2ldif, also escape commas in distinguished names per rfc4514.
Carl Byington <carl@five-ten-sg.com>
parents: 104
diff changeset
72
104
39ba19372732 many fixes in pst2ldif by Robert Harris
Carl Byington <carl@five-ten-sg.com>
parents: 103
diff changeset
73 * Thu Oct 09 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.20-1
99
b7f456946c5b add configure option --enable-dii=no to remove dependency on libgd.
Carl Byington <carl@five-ten-sg.com>
parents: 96
diff changeset
74 - add configure option --enable-dii=no to remove dependency on libgd.
b7f456946c5b add configure option --enable-dii=no to remove dependency on libgd.
Carl Byington <carl@five-ten-sg.com>
parents: 96
diff changeset
75 - many fixes in pst2ldif by Robert Harris.
100
1e4a7610d525 fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents: 99
diff changeset
76 - add -D option to include deleted items, from Justin Greer
1e4a7610d525 fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents: 99
diff changeset
77 - fix from Justin Greer to add missing email headers
1e4a7610d525 fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
Carl Byington <carl@five-ten-sg.com>
parents: 99
diff changeset
78 - fix from Justin Greer for my_stristr()
101
1fc33da23175 fix for orphan children when building descriptor tree, avoid writing uninitialized data to debug log file
Carl Byington <carl@five-ten-sg.com>
parents: 100
diff changeset
79 - fix for orphan children when building descriptor tree
1fc33da23175 fix for orphan children when building descriptor tree, avoid writing uninitialized data to debug log file
Carl Byington <carl@five-ten-sg.com>
parents: 100
diff changeset
80 - avoid writing uninitialized data to debug log file
102
8c4482be0b4c remove unreachable code
Carl Byington <carl@five-ten-sg.com>
parents: 101
diff changeset
81 - remove unreachable code
103
0af0bbe166e1 create dummy top-of-folder descriptor if needed for corrupt pst files
Carl Byington <carl@five-ten-sg.com>
parents: 102
diff changeset
82 - create dummy top-of-folder descriptor if needed for corrupt pst files
99
b7f456946c5b add configure option --enable-dii=no to remove dependency on libgd.
Carl Byington <carl@five-ten-sg.com>
parents: 96
diff changeset
83
96
2e3ec9511166 update the release notes
Carl Byington <carl@five-ten-sg.com>
parents: 93
diff changeset
84 * Sun Sep 14 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.19-1
2e3ec9511166 update the release notes
Carl Byington <carl@five-ten-sg.com>
parents: 93
diff changeset
85 - Fix base64 encoding that could create long lines.
2e3ec9511166 update the release notes
Carl Byington <carl@five-ten-sg.com>
parents: 93
diff changeset
86 - Initial work on a .so shared library from Bharath Acharya.
2e3ec9511166 update the release notes
Carl Byington <carl@five-ten-sg.com>
parents: 93
diff changeset
87
93
cb14583c119a iconv changes for Mac
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
88 * Thu Aug 28 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.18-1
cb14583c119a iconv changes for Mac
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
89 - Fixes for iconv on Mac from Justin Greer.
cb14583c119a iconv changes for Mac
Carl Byington <carl@five-ten-sg.com>
parents: 90
diff changeset
90
90
631d02d30a1c More fixes for 32/64 bit portability on big endian ppc.
Carl Byington <carl@five-ten-sg.com>
parents: 88
diff changeset
91 * Tue Aug 05 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.17-1
631d02d30a1c More fixes for 32/64 bit portability on big endian ppc.
Carl Byington <carl@five-ten-sg.com>
parents: 88
diff changeset
92 - More fixes for 32/64 bit portability on big endian ppc.
631d02d30a1c More fixes for 32/64 bit portability on big endian ppc.
Carl Byington <carl@five-ten-sg.com>
parents: 88
diff changeset
93
88
c664302d1606 release 0.6.16
Carl Byington <carl@five-ten-sg.com>
parents: 87
diff changeset
94 * Tue Aug 05 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.16-1
87
3ec5ad97e926 Use inttypes.h for portable printing of 64 bit items.
Carl Byington <carl@five-ten-sg.com>
parents: 85
diff changeset
95 - Use inttypes.h for portable printing of 64 bit items.
3ec5ad97e926 Use inttypes.h for portable printing of 64 bit items.
Carl Byington <carl@five-ten-sg.com>
parents: 85
diff changeset
96
85
582e927756d3 Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents: 82
diff changeset
97 * Wed Jul 30 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.15-1
582e927756d3 Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents: 82
diff changeset
98 - Patch from Robert Simpson for file handle leak in error case.
582e927756d3 Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents: 82
diff changeset
99 - Fix for missing length on lz decompression, bug found by Chris White.
582e927756d3 Patch from Robert Simpson for file handle leak in error case.
Carl Byington <carl@five-ten-sg.com>
parents: 82
diff changeset
100
82
b370d9e8aa10 Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents: 79
diff changeset
101 * Sun Jun 15 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.14-1
b370d9e8aa10 Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents: 79
diff changeset
102 - Fix my mistake in debian packaging.
b370d9e8aa10 Fix my mistake in debian packaging.
Carl Byington <carl@five-ten-sg.com>
parents: 79
diff changeset
103
79
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 78
diff changeset
104 * Fri Jun 13 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.13-1
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 78
diff changeset
105 - Patch from Robert Simpson for encryption type 2.
56fa05fd5271 Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents: 78
diff changeset
106
78
535075b4d261 Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
107 * Tue Jun 10 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.12-1
535075b4d261 Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
108 - Patch from Joachim Metz for debian packaging and
535075b4d261 Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
109 - fix for incorrect length on lz decompression
535075b4d261 Patch from Joachim Metz for debian packaging, and fix for incorrect length on lz decompression.
Carl Byington <carl@five-ten-sg.com>
parents: 75
diff changeset
110
75
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
111 * Tue Jun 03 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.11-1
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
112 - Use ftello/fseeko to properly handle large files.
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
113 - Document and properly use datasize field in b5 blocks.
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
114 - Fix some MSVC compile issues and collect MSVC dependencies into one place.
987aa872294e Use ftello/fseeko to properly handle large files.
Carl Byington <carl@five-ten-sg.com>
parents: 73
diff changeset
115
73
3cb02cb1e6cd Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents: 71
diff changeset
116 * Thu May 29 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.10-1
3cb02cb1e6cd Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents: 71
diff changeset
117 - Patch from Robert Simpson for doubly-linked list code and arrays of unicode strings.
3cb02cb1e6cd Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents: 71
diff changeset
118
71
1bd4491cf8ff fix documentation of 8 byte backpointers
Carl Byington <carl@five-ten-sg.com>
parents: 70
diff changeset
119 * Fri May 16 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.9
73
3cb02cb1e6cd Patch from Robert Simpson to fix doubly-linked list in the cache_ptr code, and allow arrays of unicode strings (without converting them).
Carl Byington <carl@five-ten-sg.com>
parents: 71
diff changeset
120 - Patch from Joachim Metz for 64 bit compile.
71
1bd4491cf8ff fix documentation of 8 byte backpointers
Carl Byington <carl@five-ten-sg.com>
parents: 70
diff changeset
121 - Fix pst format documentation for 8 byte backpointers.
70
b12f4e50e2e8 Patch from Joachim Metz <joachim.metz@gmail.com> for 64 bit compile.
Carl Byington <carl@five-ten-sg.com>
parents: 67
diff changeset
122
67
90aa7814ad1f Initial version of pst2dii to convert to Summation dii load file format.
Carl Byington <carl@five-ten-sg.com>
parents: 66
diff changeset
123 * Wed Mar 05 2008 Carl Byington <carl@five-ten-sg.com> - 0.6.8
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
124 - Initial version of pst2dii to convert to Summation dii load file format
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
125 - changes for Fedora packaging guidelines (#434727)
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
126
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
127 * Tue Jul 10 2007 Carl Byington <carl@five-ten-sg.com> - 0.5.5
31
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 24
diff changeset
128 - merge changes from Joe Nahmias version
b88ceb81dba2 mege changes from Joe Nahmias
carl
parents: 24
diff changeset
129
64
2c6040b6e8f8 packaging for Fedora (#434727)
Carl Byington <carl@five-ten-sg.com>
parents: 51
diff changeset
130 * Sun Feb 19 2006 Carl Byington <carl@five-ten-sg.com> - 0.5.3
24
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
131 - initial spec file using autoconf and http://www.fedora.us/docs/rpm-packaging-guidelines.html
f4643b609bdf switch to automake/autoconf
carl
parents: 16
diff changeset
132