Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv9575/scripts
Modified Files:
wvdial wvstreams
Log Message:
downgraded and got it to compile with gcc3.3
thanks to the folks at blfs !
Index: wvdial
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/wvdial,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- wvdial 13 Oct 2003 17:36:09 -0000 1.9
+++ wvdial 5 Nov 2003 02:07:44 -0000 1.10
@@ -38,9 +38,10 @@
install )
if [ "$CONFIG_PPP" = "y" ] && [ "$CONFIG_WVDIAL" = "y" ]; then
mkdir -p $CDDIR/usr/bin
- cp -dpR pppmon wvdial wvdialconf $CDDIR/usr/bin || exit 1
+ cp -dpR src/pppmon src/wvdial src/wvdialconf $CDDIR/usr/bin || exit 1
copy_man
mkdir -p $ETCDIR/etc/ppp/peers || exit 1
+ touch $ETCDIR/etc/wvdial.conf || exit 1
cp -dpR ppp.provider $ETCDIR/etc/ppp/peers/wvdial || exit 1
cp -dpR ppp.provider-pipe $ETCDIR/etc/ppp/peers/wvdial-pipe || exit 1
fi
Index: wvstreams
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/wvstreams,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- wvstreams 3 Nov 2003 19:35:41 -0000 1.12
+++ wvstreams 5 Nov 2003 02:07:45 -0000 1.13
@@ -27,14 +27,19 @@
case $1 in
build )
if [ "$CONFIG_PPP" = "y" ] && [ "$CONFIG_WVDIAL" = "y" ]; then
- ./configure --prefix=/usr --with-openssl --with-zlib --disable-efence --disable-debug --with-fam || exit 1
- make $PMAKE VERBOSE=1 CXXOPTS="-fPIC -DPIC" COPTS="-fPIC -DPIC" all || exit 1
+ for PATCH in $(ls $DL_DIR/src/wvstreams*patch.bz2)
+ do
+ echo applying $PATCH
+ bzcat $PATCH | patch -p1 || exit 1
+ done
+ make PREFIX=/usr LDFLAGS="-lcrypt" || exit 1
+
strip_debug
# we have to install this immediately, because this is a library and could be needed by other sources
rm -f /usr/lib/libwvstreams.so
rm -f /usr/lib/libwvutils.so
- make install || exit 1
+ make PREFIX=/usr install || exit 1
fi
;;
|