author | kergoth <kergoth> | 2003-03-25 19:43:58 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-03-25 19:43:58 (UTC) |
commit | 75131f3afecb643b945ed349465f697efdf293ad (patch) (unidiff) | |
tree | fb0428474c4de0ac1477d758fae2b9816ded3a24 | |
parent | d3b3e04ed7e4ee191a666202ca90769875a70a5d (diff) | |
download | opie-75131f3afecb643b945ed349465f697efdf293ad.zip opie-75131f3afecb643b945ed349465f697efdf293ad.tar.gz opie-75131f3afecb643b945ed349465f697efdf293ad.tar.bz2 |
Correction to the sigsegv handler, & print a segmentation fault message. and increment default qt revision.
-rwxr-xr-x | mkipks | 2 | ||||
-rw-r--r-- | qt/qte234-for-opie091-sigsegv.patch | 6 |
2 files changed, 5 insertions, 3 deletions
@@ -13,17 +13,17 @@ if [ -z "$QTE_VERSION" ] | |||
13 | then | 13 | then |
14 | if [ -e $QTDIR/include/qglobal.h ] | 14 | if [ -e $QTDIR/include/qglobal.h ] |
15 | then | 15 | then |
16 | QTE_VERSION=`cat $QTDIR/include/qglobal.h|grep '^#define QT_VERSION_STR'|sed -e 's,#define QT_VERSION_STR\t*,,;' -e 's,.*"\([^"]*\)".*,\1,;'` | 16 | QTE_VERSION=`cat $QTDIR/include/qglobal.h|grep '^#define QT_VERSION_STR'|sed -e 's,#define QT_VERSION_STR\t*,,;' -e 's,.*"\([^"]*\)".*,\1,;'` |
17 | else | 17 | else |
18 | QTE_VERSION=2.3.4 | 18 | QTE_VERSION=2.3.4 |
19 | fi | 19 | fi |
20 | fi | 20 | fi |
21 | [ -z "$QTE_REVISION" ] && QTE_REVISION=3 | 21 | [ -z "$QTE_REVISION" ] && QTE_REVISION=4 |
22 | DEB_VERSION=2.0 | 22 | DEB_VERSION=2.0 |
23 | 23 | ||
24 | # Have to do this here, since CVS can't store symlinks | 24 | # Have to do this here, since CVS can't store symlinks |
25 | 25 | ||
26 | mkdir -p $OPIEDIR/etc/rcS.d | 26 | mkdir -p $OPIEDIR/etc/rcS.d |
27 | ln -sf ../init.d/bootsplash $OPIEDIR/etc/rcS.d/S01bootsplash | 27 | ln -sf ../init.d/bootsplash $OPIEDIR/etc/rcS.d/S01bootsplash |
28 | 28 | ||
29 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) | 29 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\..*\..*".*/\1/p' <$OPIEDIR/include/qpe/version.h) |
diff --git a/qt/qte234-for-opie091-sigsegv.patch b/qt/qte234-for-opie091-sigsegv.patch index 9111b42..085de91 100644 --- a/qt/qte234-for-opie091-sigsegv.patch +++ b/qt/qte234-for-opie091-sigsegv.patch | |||
@@ -1,27 +1,29 @@ | |||
1 | --- ./src/kernel/qwindowsystem_qws.cpp~sigsegv2003-03-18 18:29:00.000000000 -0600 | 1 | --- ./src/kernel/qwindowsystem_qws.cpp~sigsegv2003-03-18 18:29:00.000000000 -0600 |
2 | +++ ./src/kernel/qwindowsystem_qws.cpp2003-03-18 19:09:08.000000000 -0600 | 2 | +++ ./src/kernel/qwindowsystem_qws.cpp2003-03-18 19:09:08.000000000 -0600 |
3 | @@ -843,6 +843,16 @@ | 3 | @@ -843,6 +843,18 @@ |
4 | { | 4 | { |
5 | } | 5 | } |
6 | 6 | ||
7 | +static void catchSegvSignal( int ) | 7 | +static void catchSegvSignal( int ) |
8 | +{ | 8 | +{ |
9 | +#ifndef QT_NO_QWS_KEYBOARD | 9 | +#ifndef QT_NO_QWS_KEYBOARD |
10 | + if ( qwsServer ) | 10 | + if ( qwsServer ) |
11 | +qwsServer->closeKeyboard(); | 11 | +qwsServer->closeKeyboard(); |
12 | +#endif | 12 | +#endif |
13 | + QWSServer::closedown(); | 13 | + QWSServer::closedown(); |
14 | + fprintf(stderr, "Segmentation fault.\n"); | ||
15 | + exit(1); | ||
14 | +} | 16 | +} |
15 | + | 17 | + |
16 | + | 18 | + |
17 | /*! | 19 | /*! |
18 | \class QWSServer qwindowsystem_qws.h | 20 | \class QWSServer qwindowsystem_qws.h |
19 | \brief Server-specific functionality in Qt/Embedded | 21 | \brief Server-specific functionality in Qt/Embedded |
20 | @@ -912,6 +922,7 @@ | 22 | @@ -912,6 +924,7 @@ |
21 | } | 23 | } |
22 | 24 | ||
23 | signal(SIGPIPE, ignoreSignal); //we get it when we read | 25 | signal(SIGPIPE, ignoreSignal); //we get it when we read |
24 | + signal(SIGSEGV, catchSegvSignal); //recover the keyboard on crash | 26 | + signal(SIGSEGV, catchSegvSignal); //recover the keyboard on crash |
25 | #endif | 27 | #endif |
26 | focusw = 0; | 28 | focusw = 0; |
27 | mouseGrabber = 0; | 29 | mouseGrabber = 0; |