Changes between Initial Version and Version 8 of Ticket #120


Ignore:
Timestamp:
Nov 25, 2007, 10:58:21 PM (16 years ago)
Author:
mloskot
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #120

    • Property Component Build scriptsBuild/Install
    • Property Priority 1major
    • Property Version 3.0.02.2.3
    • Property Milestone imported3.0.0
    • Property Resolution nonefixed
  • Ticket #120 – Description

    initial v8  
    1 {{{
    21Using todays CVS snapshot, the following problems arise when running configure on my solaris 2.7 system:
    32
    4 > ./configure --help
    5 > ./configure: syntax error at line 1622: `CAPI_VERSION_MAJOR=$' unexpected
     3{{{
     4./configure --help
     5./configure: syntax error at line 1622: `CAPI_VERSION_MAJOR=$' unexpected
     6}}}
    67
    78If I remove:
    8 "$(($CAPI_INTERFACE_CURRENT-$CAPI_INTERFACE_AGE))"
    9 and replace it with either "1" (the difference), or "$CAPI_INTERFACE_CURRENT-$CAPI_INTERFACE_AGE",
     9{{{
     10$(($CAPI_INTERFACE_CURRENT-$CAPI_INTERFACE_AGE))
     11}}}
     12and replace it with either ''1'' (the difference), or
     13{{{
     14$CAPI_INTERFACE_CURRENT-$CAPI_INTERFACE_AGE
     15}}}
    1016configure seems to work as expected.
    1117
    12 I found that this problem also applies to version 2.2.3, but in 2.2.3 there was also another line with the same syntax that had to be "fixed".
    13 }}}
     18I found that this problem also applies to version 2.2.3, but in 2.2.3 there was also another line with the same syntax that had to be ''fixed''