summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/opiecore.pro
authoreilers <eilers>2004-04-30 23:04:04 (UTC)
committer eilers <eilers>2004-04-30 23:04:04 (UTC)
commit9e2e24a67c66c5ccb3d76e63a18908febecde9c3 (patch) (unidiff)
tree42af8cf7e41cb06fcd0906e4b699f64015222c7f /libopie2/opiecore/opiecore.pro
parentae8750078b9943f23a5b99100056a379135c10bf (diff)
downloadopie-9e2e24a67c66c5ccb3d76e63a18908febecde9c3.zip
opie-9e2e24a67c66c5ccb3d76e63a18908febecde9c3.tar.gz
opie-9e2e24a67c66c5ccb3d76e63a18908febecde9c3.tar.bz2
I had to remove ofilenotify out of the build for Darwin (MacOS X). It
uses calls to fcntl which is not supported. We should use kqueue instead..
Diffstat (limited to 'libopie2/opiecore/opiecore.pro') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/opiecore.pro14
1 files changed, 12 insertions, 2 deletions
diff --git a/libopie2/opiecore/opiecore.pro b/libopie2/opiecore/opiecore.pro
index ee42368..a9562b5 100644
--- a/libopie2/opiecore/opiecore.pro
+++ b/libopie2/opiecore/opiecore.pro
@@ -6,3 +6,2 @@ HEADERS = oapplication.h \
6 odebug.h \ 6 odebug.h \
7 ofilenotify.h \
8 oglobal.h \ 7 oglobal.h \
@@ -19,3 +18,2 @@ SOURCES = oapplication.cpp \
19 odebug.cpp \ 18 odebug.cpp \
20 ofilenotify.cpp \
21 oglobal.cpp \ 19 oglobal.cpp \
@@ -28,2 +26,14 @@ SOURCES = oapplication.cpp \
28 26
27
28# The following files are currently not compileable on mac !
29# Therfore I removed them from the build .. (eilers)
30
31CONFTEST = $$system( echo $CONFIG_TARGET_MACOSX )
32!contains( CONFTEST, y ) {
33HEADERS += ofilenotify.h
34SOURCES += ofilenotify.cpp
35} else {
36 message( "ofilenotify is not available in a mac build !" )
37}
38
29include ( device/device.pro ) 39include ( device/device.pro )