summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/dagger/dagger.pro6
-rw-r--r--noncore/games/sfcave-sdl/sfcave-sdl.pro7
-rw-r--r--noncore/multimedia/opieplayer2/opieplayer2.pro7
-rw-r--r--noncore/net/mail/libmailwrapper/libmailwrapper.pro4
-rw-r--r--noncore/net/mail/mail.pro4
5 files changed, 24 insertions, 4 deletions
diff --git a/noncore/apps/dagger/dagger.pro b/noncore/apps/dagger/dagger.pro
index 96aeef9..d697669 100644
--- a/noncore/apps/dagger/dagger.pro
+++ b/noncore/apps/dagger/dagger.pro
@@ -22,3 +22,9 @@ LIBS += -lopiecore2 -lopieui2 -lqpe -lsword
22 22
23include ( $(OPIEDIR)/include.pro ) 23include ( $(OPIEDIR)/include.pro )
24 24
25!isEmpty( LIBSWORD_INC_DIR ) {
26 INCLUDEPATH = $$LIBSWORD_INC_DIR $$INCLUDEPATH
27}
28!isEmpty( LIBSWORD_LIB_DIR ) {
29 LIBS = -L$$LIBSWORD_LIB_DIR $$LIBS
30}
diff --git a/noncore/games/sfcave-sdl/sfcave-sdl.pro b/noncore/games/sfcave-sdl/sfcave-sdl.pro
index 2d4dcf1..8372919 100644
--- a/noncore/games/sfcave-sdl/sfcave-sdl.pro
+++ b/noncore/games/sfcave-sdl/sfcave-sdl.pro
@@ -53,3 +53,10 @@ HEADERS = animatedimage.h \
53 util.h 53 util.h
54 54
55include ( $(OPIEDIR)/include.pro ) 55include ( $(OPIEDIR)/include.pro )
56
57!isEmpty( LIBSDL_INC_DIR ) {
58 INCLUDEPATH = $$LIBSDL_INC_DIR $$INCLUDEPATH
59}
60!isEmpty( LIBSDL_LIB_DIR ) {
61 LIBS = -L$$LIBSDL_LIB_DIR $$LIBS
62}
diff --git a/noncore/multimedia/opieplayer2/opieplayer2.pro b/noncore/multimedia/opieplayer2/opieplayer2.pro
index 15f7d61..9388496 100644
--- a/noncore/multimedia/opieplayer2/opieplayer2.pro
+++ b/noncore/multimedia/opieplayer2/opieplayer2.pro
@@ -20,3 +20,10 @@ MOC_DIR = qpeobj
20OBJECTS_DIR = qpeobj 20OBJECTS_DIR = qpeobj
21 21
22include ( $(OPIEDIR)/include.pro ) 22include ( $(OPIEDIR)/include.pro )
23
24!isEmpty( LIBXINE_INC_DIR ) {
25 INCLUDEPATH = $$LIBXINE_INC_DIR $$INCLUDEPATH
26}
27!isEmpty( LIBXINE_LIB_DIR ) {
28 LIBS = -L$$LIBXINE_LIB_DIR $$LIBS
29}
diff --git a/noncore/net/mail/libmailwrapper/libmailwrapper.pro b/noncore/net/mail/libmailwrapper/libmailwrapper.pro
index 5e44064..befadd7 100644
--- a/noncore/net/mail/libmailwrapper/libmailwrapper.pro
+++ b/noncore/net/mail/libmailwrapper/libmailwrapper.pro
@@ -51,8 +51,8 @@ TARGET = mailwrapper
51include ( $(OPIEDIR)/include.pro ) 51include ( $(OPIEDIR)/include.pro )
52 52
53!isEmpty( LIBETPAN_INC_DIR ) { 53!isEmpty( LIBETPAN_INC_DIR ) {
54 INCLUDEPATH += $$LIBETPAN_INC_DIR 54 INCLUDEPATH = $$LIBETPAN_INC_DIR $$INCLUDEPATH
55} 55}
56!isEmpty( LIBETPAN_LIB_DIR ) { 56!isEmpty( LIBETPAN_LIB_DIR ) {
57 LIBS += -L$$LIBETPAN_LIB_DIR 57 LIBS = -L$$LIBETPAN_LIB_DIR $$LIBS
58} 58}
diff --git a/noncore/net/mail/mail.pro b/noncore/net/mail/mail.pro
index a3328cb..c88923f 100644
--- a/noncore/net/mail/mail.pro
+++ b/noncore/net/mail/mail.pro
@@ -65,8 +65,8 @@ TARGET = opiemail
65 65
66include ( $(OPIEDIR)/include.pro ) 66include ( $(OPIEDIR)/include.pro )
67!isEmpty( LIBETPAN_INC_DIR ) { 67!isEmpty( LIBETPAN_INC_DIR ) {
68 INCLUDEPATH += $$LIBETPAN_INC_DIR 68 INCLUDEPATH = $$LIBETPAN_INC_DIR $$INCLUDEPATH
69} 69}
70!isEmpty( LIBETPAN_LIB_DIR ) { 70!isEmpty( LIBETPAN_LIB_DIR ) {
71 LIBS += -Wl,-rpath-link,$$LIBETPAN_LIB_DIR 71 LIBS = -Wl,-rpath-link,$$LIBETPAN_LIB_DIR $$LIBS
72} 72}