Megatest

Check-in [23fa12cb70]
Login
Overview
Comment:Added zmq to the install
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 23fa12cb70067d2bb9227d41a864ce2bd9ef20c3
User & Date: matt on 2012-10-20 19:22:59
Other Links: manifest | tags
Context
2012-10-21
15:03
Added zmq example and install support check-in: b3e432ecb4 user: matt tags: trunk
2012-10-20
19:22
Added zmq to the install check-in: 23fa12cb70 user: matt tags: trunk
2012-10-19
17:02
Changed rpc info messages to level 12, added debug to test4 invocation of server, added option to run server in conjunction with -runall or -runtests check-in: 73998460e8 user: mrwellan tags: trunk
Changes

Modified utils/installall.sh from [b8d822887a] to [c7075b0063].

148
149
150
151
152
153
154




































155
156
157
158
159
160
161
make install


cd $BUILDHOME
export CSCLIBS=`echo $LD_LIBRARY_PATH | sed 's/:/ -L/g'`
CSC_OPTIONS="-I$PREFIX/include -L$CSCLIBS" chicken-install $PROX -D no-library-checks iup:1.0.2
CSC_OPTIONS="-I$PREFIX/include -L$CSCLIBS" chicken-install $PROX -D no-library-checks canvas-draw





































# export CD_REL=d704525ebe1c6d08
# if ! [[ -e  Canvas_Draw-$CD_REL.zip ]]; then
#     wget http://www.kiatoa.com/matt/iup/Canvas_Draw-$CD_REL.zip
# fi
# 
# unzip -o Canvas_Draw-$CD_REL.zip







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
make install


cd $BUILDHOME
export CSCLIBS=`echo $LD_LIBRARY_PATH | sed 's/:/ -L/g'`
CSC_OPTIONS="-I$PREFIX/include -L$CSCLIBS" chicken-install $PROX -D no-library-checks iup:1.0.2
CSC_OPTIONS="-I$PREFIX/include -L$CSCLIBS" chicken-install $PROX -D no-library-checks canvas-draw

# http://download.zeromq.org/zeromq-2.2.0.tar.gz
ZEROMQ=zeromq-2.2.0
if ! [[ -e ${ZEROMQ}.tar.gz ]] ; then
    wget http://download.zeromq.org/${ZEROMQ}.tar.gz
fi

if [[ -e ${ZEROMQ}.tar.gz ]] ; then
    tar xfz ${ZEROMQ}.tar.gz
    cd ${ZEROMQ}
    ./configure --prefix=$PREFIX
    make
    make install
    CSC_OPTIONS="-I$PREFIX/include -L$CSCLIBS" chicken-install $PROX zmq
fi

cd $BUILDHOME  

WEBKIT=WebKit-r131972
if  ! [[ -e ${WEBKIT}.tar.bz2 ]] ; then
   #    http://builds.nightly.webkit.org/files/trunk/src/WebKit-r131972.tar.bz2
   wget http://builds.nightly.webkit.org/files/trunk/src/${WEBKIT}.tar.bz2
fi

if [[ x$only_it_worked == $I_wish ]] ;then
   if [[ -e ${WEBKIT}.tar.bz2 ]] ; then
      tar xfj ${WEBKIT}.tar.bz2
      cd $WEBKIT
      ./autogen.sh
      ./configure --prefix=$PREFIX
      make
      make install
   fi
fi

cd $BUILHOME

# export CD_REL=d704525ebe1c6d08
# if ! [[ -e  Canvas_Draw-$CD_REL.zip ]]; then
#     wget http://www.kiatoa.com/matt/iup/Canvas_Draw-$CD_REL.zip
# fi
# 
# unzip -o Canvas_Draw-$CD_REL.zip