author | mickeyl <mickeyl> | 2005-02-12 17:20:07 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-02-12 17:20:07 (UTC) |
commit | 5ad68456ddf0b1dc722f92d7f6c94b82677c637c (patch) (unidiff) | |
tree | 1f86710721e9ca624d3a2f59593b4f7be3ddbec6 | |
parent | 292ce81455773c463a8d7ed9c1aef2d08b90514d (diff) | |
download | opie-5ad68456ddf0b1dc722f92d7f6c94b82677c637c.zip opie-5ad68456ddf0b1dc722f92d7f6c94b82677c637c.tar.gz opie-5ad68456ddf0b1dc722f92d7f6c94b82677c637c.tar.bz2 |
disable backtracing if building against uclibc
-rw-r--r-- | libopie2/opiecore/odebug.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libopie2/opiecore/odebug.cpp b/libopie2/opiecore/odebug.cpp index d8dfe26..45709dc 100644 --- a/libopie2/opiecore/odebug.cpp +++ b/libopie2/opiecore/odebug.cpp | |||
@@ -21,32 +21,36 @@ | |||
21 | ..}^=.= = ; Library General Public License for more | 21 | ..}^=.= = ; Library General Public License for more |
22 | ++= -. .` .: details. | 22 | ++= -. .` .: details. |
23 | : = ...= . :.=- | 23 | : = ...= . :.=- |
24 | -. .:....=;==+<; You should have received a copy of the GNU | 24 | -. .:....=;==+<; You should have received a copy of the GNU |
25 | -_. . . )=. = Library General Public License along with | 25 | -_. . . )=. = Library General Public License along with |
26 | -- :-=` this library; see the file COPYING.LIB. | 26 | -- :-=` this library; see the file COPYING.LIB. |
27 | If not, write to the Free Software Foundation, | 27 | If not, write to the Free Software Foundation, |
28 | Inc., 59 Temple Place - Suite 330, | 28 | Inc., 59 Temple Place - Suite 330, |
29 | Boston, MA 02111-1307, USA. | 29 | Boston, MA 02111-1307, USA. |
30 | */ | 30 | */ |
31 | 31 | ||
32 | // Include this header without OPIE_NO_DEBUG defined to avoid having the oDebugInfo | 32 | // Include this header without OPIE_NO_DEBUG defined to avoid having the oDebugInfo |
33 | // functions inlined to noops (which would then conflict with their definition here). | 33 | // functions inlined to noops (which would then conflict with their definition here). |
34 | 34 | ||
35 | #include <opie2/odebug.h> | 35 | #include <opie2/odebug.h> |
36 | 36 | ||
37 | #if defined(__UCLIBC__) | ||
38 | #define OPIE_NO_BACKTRACE | ||
39 | #endif | ||
40 | |||
37 | #ifdef OPIE_NO_DEBUG | 41 | #ifdef OPIE_NO_DEBUG |
38 | #undef odDebug | 42 | #undef odDebug |
39 | #undef odBacktrace | 43 | #undef odBacktrace |
40 | #endif | 44 | #endif |
41 | 45 | ||
42 | /* OPIE */ | 46 | /* OPIE */ |
43 | 47 | ||
44 | #include <opie2/oapplication.h> | 48 | #include <opie2/oapplication.h> |
45 | #include <opie2/oglobalsettings.h> | 49 | #include <opie2/oglobalsettings.h> |
46 | #include <opie2/oconfig.h> | 50 | #include <opie2/oconfig.h> |
47 | 51 | ||
48 | /* QT */ | 52 | /* QT */ |
49 | 53 | ||
50 | #include <qfile.h> | 54 | #include <qfile.h> |
51 | #include <qmessagebox.h> | 55 | #include <qmessagebox.h> |
52 | #include <qsocketdevice.h> | 56 | #include <qsocketdevice.h> |