summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2019-06-12 12:50:07 +0200
committerSlávek Banko <slavek.banko@axis.cz>2019-06-12 12:50:07 +0200
commit1aa221a2bc0a5c2f13a8d95af76a755b3c731251 (patch)
treea7a3b607c4f4b90de4c3f802c748a9fad2364632 /src/tools
parent0e749567664176465c05497d2145a24c42f76829 (diff)
downloadtqt3-1aa221a2bc0a5c2f13a8d95af76a755b3c731251.tar.gz
tqt3-1aa221a2bc0a5c2f13a8d95af76a755b3c731251.zip
Change tests for glibc version.
It resolves building with libc libraries other than glibc - for example musl libc. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/qdir_unix.cpp8
-rw-r--r--src/tools/qfileinfo_unix.cpp4
2 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/qdir_unix.cpp b/src/tools/qdir_unix.cpp
index 87976bdd..7e23fca7 100644
--- a/src/tools/qdir_unix.cpp
+++ b/src/tools/qdir_unix.cpp
@@ -74,7 +74,7 @@ TQString TQDir::homeDirPath()
TQString TQDir::canonicalPath() const
{
TQString r;
-#if defined(__GLIBC__) && !defined(PATH_MAX)
+#if !defined(PATH_MAX)
char *cur = ::get_current_dir_name();
if ( cur ) {
char *tmp = canonicalize_file_name( TQFile::encodeName( dPath ).data() );
@@ -103,7 +103,7 @@ TQString TQDir::canonicalPath() const
// FIXME
}
}
-#endif /* __GLIBC__ && !PATH_MAX */
+#endif /* !PATH_MAX */
return r;
}
@@ -165,7 +165,7 @@ TQString TQDir::currentDirPath()
struct stat st;
if ( ::stat( ".", &st ) == 0 ) {
-#if defined(__GLIBC__) && !defined(PATH_MAX)
+#if !defined(PATH_MAX)
char *currentName = ::get_current_dir_name();
if ( currentName ) {
result = TQFile::decodeName(currentName);
@@ -175,7 +175,7 @@ TQString TQDir::currentDirPath()
char currentName[PATH_MAX+1];
if ( ::getcwd( currentName, PATH_MAX ) )
result = TQFile::decodeName(currentName);
-#endif /* __GLIBC__ && !PATH_MAX */
+#endif /* !PATH_MAX */
#if defined(QT_DEBUG)
if ( result.isNull() )
tqWarning( "TQDir::currentDirPath: getcwd() failed" );
diff --git a/src/tools/qfileinfo_unix.cpp b/src/tools/qfileinfo_unix.cpp
index 0bf14384..aed39e46 100644
--- a/src/tools/qfileinfo_unix.cpp
+++ b/src/tools/qfileinfo_unix.cpp
@@ -133,7 +133,7 @@ TQString TQFileInfo::readLink() const
if ( !isSymLink() )
return TQString();
#if defined(Q_OS_UNIX) && !defined(Q_OS_OS2EMX)
-#if defined(__GLIBC__) && !defined(PATH_MAX)
+#if !defined(PATH_MAX)
int size = 256;
char *s = NULL, *s2;
@@ -165,7 +165,7 @@ TQString TQFileInfo::readLink() const
s[len] = '\0';
return TQFile::decodeName(s);
}
-#endif /* __GLIBC__ && !PATH_MAX */
+#endif /* !PATH_MAX */
#endif /* Q_OS_UNIX && !Q_OS_OS2EMX */
#if !defined(TQWS) && defined(Q_OS_MAC)
{