Changeset 12007


Ignore:
Timestamp:
2006-07-04T19:54:04+12:00 (18 years ago)
Author:
davidb
Message:

Latest version of cgicc doesn't seem to compile with gcc 2.95. While this
is admittedly an old version of the compiler, it is what we use on Puka.
(makes for good legacy testing!). Changed the version of cgicc to an older
one that is compatible with this compiler.

Location:
trunk/gsdl/packages
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/packages/cgicc/Makefile

    r12006 r12007  
    11
    22all:
    3     (cd cgicc-3.2.3  && make all install)
     3    (cd cgicc-3.1.5  && make all install)
    44
    55clean:
    6     (cd cgicc-3.2.3 && make clean)
     6    (cd cgicc-3.1.5 && make clean)
    77
    88distclean:
    9     (cd cgicc-3.2.3 && make distclean)
     9    (cd cgicc-3.1.5 && make distclean)
    1010
    1111install:
    12     (cd cgicc-3.2.3  && make install)
     12    (cd cgicc-3.1.5  && make install)
  • trunk/gsdl/packages/configure

    r12004 r12007  
    194194gzip -dc expat-1.95.8.tar.gz | tar -xf -
    195195cd "$PACKAGES/expat/expat-1.95.8" && \
    196 ./configure $CACHE_FILE --prefix=$PACKAGES/expat --bindir="$bindir" $HOSTTARGETFLAGS
     196./configure $CACHE_FILE --disable-shared --prefix=$PACKAGES/expat --bindir="$bindir" $HOSTTARGETFLAGS
    197197
    198198# configure XML::Parser perl module
     
    235235echo ""
    236236cd "$PACKAGES/cgicc"
    237 gzip -dc cgicc-3.2.3.tar.gz | tar -xf -
    238 cd "$PACKAGES/cgicc/cgicc-3.2.3" && \
     237gzip -dc cgicc-3.1.5.tar.gz | tar -xf -
     238cd "$PACKAGES/cgicc/cgicc-3.1.5" && \
    239239./configure $CACHE_FILE --disable-shared --prefix=$PACKAGES/cgicc --bindir="$bindir" $HOSTTARGETFLAGS
Note: See TracChangeset for help on using the changeset viewer.