diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2011-12-09 04:25:42 +0800 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2011-12-09 04:25:42 +0800 |
commit | 615df9b9d0ee8ad630e8dc5f49387ef116825711 (patch) | |
tree | e8946a108195f612b98c7a2a1946cbe75fcf4c4f /graphics | |
parent | 3d9a178574fd93141748c16c60a4010d609e3760 (diff) | |
download | freebsd-ports-gnome-615df9b9d0ee8ad630e8dc5f49387ef116825711.tar.gz freebsd-ports-gnome-615df9b9d0ee8ad630e8dc5f49387ef116825711.tar.zst freebsd-ports-gnome-615df9b9d0ee8ad630e8dc5f49387ef116825711.zip |
- Mark BROKEN on FreeBSD 7.X: does not compile
library/tulip/src/PluginLibraryLoader.cpp: In constructor 'tlp::PluginLibraryLoader::PluginLibraryLoader(std::string, tlp::PluginLoader*)':
library/tulip/src/PluginLibraryLoader.cpp:232: error: invalid conversion from 'int (*)(const dirent*)' to 'int (*)(dirent*)'
library/tulip/src/PluginLibraryLoader.cpp:232: error: initializing argument 3 of 'int scandir(const char*, dirent***, int (*)(dirent*), int (*)(const void*, const void*))'
*** Error code 1
Reported by: pointyhat
Feature safe: yes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/tulip/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/graphics/tulip/Makefile b/graphics/tulip/Makefile index 3614dce3671f..9a9807d2e464 100644 --- a/graphics/tulip/Makefile +++ b/graphics/tulip/Makefile @@ -45,6 +45,10 @@ PLIST_SUB+= TULIP_VERSION=${PORTVERSION} \ CFLAGS+= -fPIC .endif +.if ${OSVERSION} < 800000 +BROKEN= does not compile on FreeBSD 7.X +.endif + post-patch: @${REINPLACE_CMD} -e 's|<qtimer.h>|<QtCore/qtimer.h>|;s|<qlocale.h>|<QtCore/qlocale.h>|' \ ${WRKSRC}/software/tulip/src/main.cpp |