author | harlekin <harlekin> | 2002-05-23 20:36:26 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-05-23 20:36:26 (UTC) |
commit | f44fc6d458a116b7f932f1c7628d53557f5183d3 (patch) (unidiff) | |
tree | e6b4dea86309c2c4d82ad0db1dd8a0d4047bd1fe | |
parent | 582f7e6b7da49b90d2cfccd638bccd4ca279da37 (diff) | |
download | opie-f44fc6d458a116b7f932f1c7628d53557f5183d3.zip opie-f44fc6d458a116b7f932f1c7628d53557f5183d3.tar.gz opie-f44fc6d458a116b7f932f1c7628d53557f5183d3.tar.bz2 |
include #include <linux/limits.h> reagrding PATH_MAX build problem
-rw-r--r-- | core/multimedia/opieplayer/libmad/libmadplugin.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmadplugin.cpp b/core/multimedia/opieplayer/libmad/libmadplugin.cpp index 3df23249..9a1ab2a 100644 --- a/core/multimedia/opieplayer/libmad/libmadplugin.cpp +++ b/core/multimedia/opieplayer/libmad/libmadplugin.cpp | |||
@@ -45,2 +45,3 @@ | |||
45 | #include <netdb.h> | 45 | #include <netdb.h> |
46 | #include <linux/limits.h> | ||
46 | #include <sys/socket.h> | 47 | #include <sys/socket.h> |
@@ -436,11 +437,7 @@ bool LibMadPlugin::open( const QString& path ) { | |||
436 | 437 | ||
437 | |||
438 | if (path.left( 4 ) == "http" ) { | 438 | if (path.left( 4 ) == "http" ) { |
439 | qDebug("Test2"); | ||
440 | // in case of any error we get 0 here | 439 | // in case of any error we get 0 here |
441 | if ( !(http_open(path) == 0) ) { | 440 | if ( !(http_open(path) == 0) ) { |
442 | qDebug("Test3"); | ||
443 | d->input.fd = http_open(path); | 441 | d->input.fd = http_open(path); |
444 | } else { | 442 | } else { |
445 | qDebug("Test5"); | ||
446 | return FALSE; | 443 | return FALSE; |
@@ -448,3 +445,2 @@ bool LibMadPlugin::open( const QString& path ) { | |||
448 | } else { | 445 | } else { |
449 | qDebug("Test4"); | ||
450 | d->input.path = path.latin1(); | 446 | d->input.path = path.latin1(); |
@@ -456,7 +452,5 @@ bool LibMadPlugin::open( const QString& path ) { | |||
456 | qDebug("error opening %s", d->input.path ); | 452 | qDebug("error opening %s", d->input.path ); |
457 | return FALSE; | 453 | return FALSE; |
458 | } | 454 | } |
459 | 455 | ||
460 | // printID3Tags(); | ||
461 | |||
462 | #if defined(HAVE_MMAP) | 456 | #if defined(HAVE_MMAP) |