Fri, 16 Jan 2009 10:58:21 +0100
Correct and improve code logic, buildconf, and packaging. In particular:
1. Use descriptive variable names <var>libs instead of just <var>.
2. Although Nokia states in all Qt builds that 'NOTE: When linking
against OpenSSL, you can override the default library names
through OPENSSL_LIBS.' and even gives an example, their own
configuration logic rejects such an attempt. Correct this by
hard coding the OpenSSL library string in the configure script.
3. Consistently use the whitespace substitution [\t ] throughout.
4. Patch the buggy INCPATH of SQL plugin Qmake project files.
5. Add the 'x11' configuration variable to the qtconfig Qmake
project using the src/gui/gui.pro file as a model. This is
needed for qtconfig although not in other tools, because
the qtconfig buildconf indirectly includes qt_x11_p.h which
is dependent on X11 headers.
6. Avoid 'ld.so: fatal: hardware capability unsupported: SSE2 AMD_3DNow'
on platforms for which the config.tests/unix/[3dnow|sse2] succeed
although unsopported at run time by testing for the x86-64
instruction set at build time and regulating hardware capabilities.
7. Correctly install the desinger plugin by explicitly building it.
8. Remove custom plugin installation logic which is unnecessary.
9. Correct removal of temporary paths from shared object files.
michael@16 | 1 | diff -Nau ChangeLog.orig ChangeLog |
michael@16 | 2 | --- ChangeLog.orig 2008-07-18 09:57:29.000000000 +0200 |
michael@16 | 3 | +++ ChangeLog 2009-01-06 01:29:18.000000000 +0100 |
michael@16 | 4 | @@ -114,6 +114,9 @@ |
michael@16 | 5 | |
michael@16 | 6 | Changes between 2.0.1 and 2.0.2 (11-Aug-2004 to 15-Jun-2005): |
michael@16 | 7 | |
michael@16 | 8 | + *) Added ISO C++ language output to "shtool version". |
michael@16 | 9 | + [Michael Schloh von Bennewitz <michael@schloh.com>] |
michael@16 | 10 | + |
michael@16 | 11 | *) Fix insecure temporary file handling (CAN-2005-1751, CAN-2005-1759). |
michael@16 | 12 | [Eric Romang <eromang@zataz.net>, Ralf S. Engelschall] |
michael@16 | 13 | |
michael@16 | 14 | diff -Nau RATIONAL.orig RATIONAL |
michael@16 | 15 | --- RATIONAL.orig 2008-04-02 22:10:17.000000000 +0200 |
michael@16 | 16 | +++ RATIONAL 2009-01-06 01:30:19.000000000 +0100 |
michael@16 | 17 | @@ -6,8 +6,8 @@ |
michael@16 | 18 | |
michael@16 | 19 | GNU shtool -- The GNU Portable Shell Tool |
michael@16 | 20 | |
michael@16 | 21 | - RATIONAL |
michael@16 | 22 | - ======== |
michael@16 | 23 | + RATIONALE |
michael@16 | 24 | + ========= |
michael@16 | 25 | |
michael@16 | 26 | The Context |
michael@16 | 27 | |
michael@16 | 28 | diff -Nau sh.version.orig sh.version |
michael@16 | 29 | --- sh.version.orig 2008-04-02 22:10:17.000000000 +0200 |
michael@16 | 30 | +++ sh.version 2009-01-06 01:32:32.000000000 +0100 |
michael@16 | 31 | @@ -211,7 +211,7 @@ |
michael@16 | 32 | ;; |
michael@16 | 33 | c ) |
michael@16 | 34 | echo >>$file "/*" |
michael@16 | 35 | - echo >>$file "** ${file} -- Version Information for ${name} (syntax: C/C++)" |
michael@16 | 36 | + echo >>$file "** ${file} -- Version Information for ${name} (syntax: C)" |
michael@16 | 37 | echo >>$file "** [automatically generated and maintained by GNU shtool]" |
michael@16 | 38 | echo >>$file "*/" |
michael@16 | 39 | echo >>$file "" |
michael@16 | 40 | @@ -257,6 +257,65 @@ |
michael@16 | 41 | echo >>$file "#endif /* _${filestr}_AS_HEADER_ */" |
michael@16 | 42 | echo >>$file "" |
michael@16 | 43 | ;; |
michael@16 | 44 | + cxx ) |
michael@16 | 45 | + echo >>$file "//" |
michael@16 | 46 | + echo >>$file "// ${file} -- Version Information for ${name} (syntax: ISO C++)" |
michael@16 | 47 | + echo >>$file "// [automatically generated and maintained by GNU shtool]" |
michael@16 | 48 | + echo >>$file "//" |
michael@16 | 49 | + echo >>$file "" |
michael@16 | 50 | + echo >>$file "#ifdef _${filestr}_AS_HEADER_" |
michael@16 | 51 | + echo >>$file "" |
michael@16 | 52 | + echo >>$file "#ifndef _${filestr}_" |
michael@16 | 53 | + echo >>$file "#define _${filestr}_" |
michael@16 | 54 | + echo >>$file "" |
michael@16 | 55 | + echo >>$file "#define ${prefixupper}VERSION ${vHex}" |
michael@16 | 56 | + echo >>$file "" |
michael@16 | 57 | + echo >>$file "typedef class ${prefix}version_class {" |
michael@16 | 58 | + echo >>$file "private:" |
michael@16 | 59 | + echo >>$file " const int v_hex;" |
michael@16 | 60 | + echo >>$file " const char *v_short;" |
michael@16 | 61 | + echo >>$file " const char *v_long;" |
michael@16 | 62 | + echo >>$file " const char *v_tex;" |
michael@16 | 63 | + echo >>$file " const char *v_gnu;" |
michael@16 | 64 | + echo >>$file " const char *v_web;" |
michael@16 | 65 | + echo >>$file " const char *v_sccs;" |
michael@16 | 66 | + echo >>$file " const char *v_rcs;" |
michael@16 | 67 | + echo >>$file "public:" |
michael@16 | 68 | + echo >>$file " ${prefix}version_class(void) : \\" |
michael@16 | 69 | + echo >>$file " v_hex(${vHex}), \\" |
michael@16 | 70 | + echo >>$file " v_short(\"${vShort}\"), \\" |
michael@16 | 71 | + echo >>$file " v_long(\"${vLong}\"), \\" |
michael@16 | 72 | + echo >>$file " v_tex(\"${vTeX}\"), \\" |
michael@16 | 73 | + echo >>$file " v_gnu(\"${vGNU}\"), \\" |
michael@16 | 74 | + echo >>$file " v_web(\"${vWeb}\"), \\" |
michael@16 | 75 | + echo >>$file " v_sccs(\"${vSCCS}\"), \\" |
michael@16 | 76 | + echo >>$file " v_rcs(\"${vRCS}\") \\" |
michael@16 | 77 | + echo >>$file " {}" |
michael@16 | 78 | + echo >>$file " const int getHex(void) {return (v_hex);};" |
michael@16 | 79 | + echo >>$file " const char *getShort(void) {return (v_short);};" |
michael@16 | 80 | + echo >>$file " const char *getLong(void) {return (v_long);};" |
michael@16 | 81 | + echo >>$file " const char *getTex(void) {return (v_tex);};" |
michael@16 | 82 | + echo >>$file " const char *getGnu(void) {return (v_gnu);};" |
michael@16 | 83 | + echo >>$file " const char *getWeb(void) {return (v_web);};" |
michael@16 | 84 | + echo >>$file " const char *getSccs(void) {return (v_sccs);};" |
michael@16 | 85 | + echo >>$file " const char *getRcs(void) {return (v_rcs);};" |
michael@16 | 86 | + echo >>$file "} ${prefix}version_t;" |
michael@16 | 87 | + echo >>$file "" |
michael@16 | 88 | + echo >>$file "extern ${prefix}version_t ${prefix}version;" |
michael@16 | 89 | + echo >>$file "" |
michael@16 | 90 | + echo >>$file "#endif // _${filestr}_" |
michael@16 | 91 | + echo >>$file "" |
michael@16 | 92 | + echo >>$file "#else // _${filestr}_AS_HEADER_" |
michael@16 | 93 | + echo >>$file "" |
michael@16 | 94 | + echo >>$file "#define _${filestr}_AS_HEADER_" |
michael@16 | 95 | + echo >>$file "#include \"${file}\"" |
michael@16 | 96 | + echo >>$file "#undef _${filestr}_AS_HEADER_" |
michael@16 | 97 | + echo >>$file "" |
michael@16 | 98 | + echo >>$file "${prefix}version_t ${prefix}version;" |
michael@16 | 99 | + echo >>$file "" |
michael@16 | 100 | + echo >>$file "#endif // _${filestr}_AS_HEADER_" |
michael@16 | 101 | + echo >>$file "" |
michael@16 | 102 | + ;; |
michael@16 | 103 | m4 ) |
michael@16 | 104 | echo >>$file "##" |
michael@16 | 105 | echo >>$file "## ${file} -- Version Information for ${name} (syntax: M4)" |
michael@16 | 106 | @@ -367,9 +426,9 @@ |
michael@16 | 107 | |
michael@16 | 108 | =item B<-l>, B<--language> I<lang> |
michael@16 | 109 | |
michael@16 | 110 | -Choose format of version file I<file>. I<lang>="C<txt>", ANSI C |
michael@16 | 111 | -(I<lang>="c"), M4 (I<lang>="m4"), Perl (I<lang>="perl") or Python |
michael@16 | 112 | -(I<lang>="python"). Default is C<txt>. |
michael@16 | 113 | +Choose format of version file I<file>. I<lang>="C<txt>", ISO C |
michael@16 | 114 | +(I<lang>="c"), ISO C++ (I<lang>="cxx"), M4 (I<lang>="m4"), Perl |
michael@16 | 115 | +(I<lang>="perl") or Python (I<lang>="python"). Default is C<txt>. |
michael@16 | 116 | |
michael@16 | 117 | =item B<-n>, B<--name> I<name> |
michael@16 | 118 | |
michael@16 | 119 | diff -Nau shtool.pod.orig shtool.pod |
michael@16 | 120 | --- shtool.pod.orig 2008-04-02 22:10:17.000000000 +0200 |
michael@16 | 121 | +++ shtool.pod 2009-01-06 01:32:54.000000000 +0100 |
michael@16 | 122 | @@ -161,8 +161,8 @@ |
michael@16 | 123 | |
michael@16 | 124 | =item B<version> |
michael@16 | 125 | |
michael@16 | 126 | -Maintain a version information file in either Text, C/C++, Perl or Python. |
michael@16 | 127 | -format. |
michael@16 | 128 | +Maintain a version information file in either Text, C, C++, M4, Perl or |
michael@16 | 129 | +Python. |
michael@16 | 130 | |
michael@16 | 131 | =item B<path> |
michael@16 | 132 |