summaryrefslogtreecommitdiffstats
path: root/main/dependencies
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-26 15:15:44 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-26 15:15:44 -0500
commit11b82515f821fbdbdd6b04f3e6695b710d1e70cd (patch)
tree7f87ce274a1048147b18477238e935cc7540b8f6 /main/dependencies
parenta7b8e6024196412a8849d00f68c01512dbf80e37 (diff)
downloadtde-11b82515f821fbdbdd6b04f3e6695b710d1e70cd.tar.gz
tde-11b82515f821fbdbdd6b04f3e6695b710d1e70cd.zip
Revert 01_export_stat64_symbols.diff due to FTBFS
Diffstat (limited to 'main/dependencies')
-rw-r--r--main/dependencies/qt3/src/__debian_export_symbols.cpp63
-rw-r--r--main/dependencies/qt3/src/qt.pro10
2 files changed, 0 insertions, 73 deletions
diff --git a/main/dependencies/qt3/src/__debian_export_symbols.cpp b/main/dependencies/qt3/src/__debian_export_symbols.cpp
deleted file mode 100644
index 71e30ade4..000000000
--- a/main/dependencies/qt3/src/__debian_export_symbols.cpp
+++ /dev/null
@@ -1,63 +0,0 @@
-// Use the __NO_INLINE__ hack below to prevent sys/stat.h from
-// exporting __extern_inline definitions of the symbols [fl]?stat64
-// with g++-4.3 or later and glibc6 >= 2.7 or later. This flag has no
-// impact on [fl]?stat(64)? symbol export for glibc6 << 2.7
-//
-#ifndef __NO_INLINE__
-# define __NO_INLINE__
-# define INLINE_ENABLED
-#endif
-
-#include <sys/stat.h>
-
-#if defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2, 7)
-
-// We must ensure that [fl]?stat64 are exported in the dynamic symbol
-// table of libqt-mt.so.3 as weak symbols to preserve ABI.
-int stat64 (__const char *__path, struct stat64 *__statbuf) __attribute__((weak));
-int lstat64 (__const char *__path, struct stat64 *__statbuf) __attribute__((weak));
-int fstat64 (int __fd, struct stat64 *__statbuf) __attribute__((weak));
-
-int stat64 (__const char *__path, struct stat64 *__statbuf)
-{
- return __xstat64 (_STAT_VER, __path, __statbuf);
-}
-
-int lstat64 (__const char *__path, struct stat64 *__statbuf)
-{
- return __lxstat64 (_STAT_VER, __path, __statbuf);
-}
-
-int fstat64 (int __fd, struct stat64 *__statbuf)
-{
- return __fxstat64 (_STAT_VER, __fd, __statbuf);
-}
-
-#else
-# ifndef INLINE_ENABLED
-/*
- * Trigger export of the extern __inline [fl]?stat64 symbols
- * (defined at <sys/stat.h>) by referencing them in the dummy
- * hidden function below. It's very important to reference
- * [fl]?stat64 via their [fl]?stat aliases (because LARGEFILE
- * is enabled) for these weak symbols to get exported.
- *
- * This hack is compatible with libc6-dev << 2.7 headers.
- *
- * This source file must be compiled with -fno-inline to have
- * expected effect.
- **/
-void __stat_extern_inline_export_hack()
- __attribute__((visibility("hidden")));
-
-void __stat_extern_inline_export_hack() {
- struct stat buf;
- stat("", &buf);
- lstat("", &buf);
- fstat(0, &buf);
-}
-# else
-# error "This file must be compiled with inline disabled for the hack to be effective."
-# endif /* INLINES_ENABLED */
-
-#endif
diff --git a/main/dependencies/qt3/src/qt.pro b/main/dependencies/qt3/src/qt.pro
index 41908ae93..2cc70cf3b 100644
--- a/main/dependencies/qt3/src/qt.pro
+++ b/main/dependencies/qt3/src/qt.pro
@@ -179,16 +179,6 @@ unix {
QMAKE_PKGCONFIG_INCDIR = $$headers.path
}
-unix {
- # Debian - compile __debian_export_symbols.cpp with -fno-inline
- debian_no_inline.output = .obj/${QMAKE_FILE_BASE}.o
- debian_no_inline.commands = $(CXX) -c $(CXXFLAGS) $(INCPATH) -fno-inline ${QMAKE_FILE_NAME} -o ${QMAKE_FILE_OUT}
- debian_no_inline.input = DEBIAN_NO_INLINE
- QMAKE_EXTRA_UNIX_COMPILERS += debian_no_inline
-
- DEBIAN_NO_INLINE = __debian_export_symbols.cpp
-}
-
wince-* {
CONFIG -= incremental
message( ...removing plugin stuff... (not permanent) )