author | mickeyl <mickeyl> | 2006-03-27 13:35:50 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2006-03-27 13:35:50 (UTC) |
commit | 8d8474e48d134c6ee64311d47f22753adcd63d10 (patch) (side-by-side diff) | |
tree | 4570e65acbc517e664124fedf1fc1577fd8964cf | |
parent | 8cd6aceae9ddf16a7f6ed3a10d361f927fd164e1 (diff) | |
download | opie-8d8474e48d134c6ee64311d47f22753adcd63d10.zip opie-8d8474e48d134c6ee64311d47f22753adcd63d10.tar.gz opie-8d8474e48d134c6ee64311d47f22753adcd63d10.tar.bz2 |
add obexftp dependency to build system. patch courtesy Dmitriy Korovkin - thanks
-rw-r--r-- | README | 3 | ||||
-rw-r--r-- | Rules.make | 4 | ||||
-rw-r--r-- | dependencies.in | 11 |
3 files changed, 18 insertions, 0 deletions
@@ -84,6 +84,9 @@ For a successful Opie build, you need to install the following libraries and hea * libipk >= 138 ftp://handhelds.org/linux/packages/ipkg +* libobexftp >= 0.19 + http://triq.net/obexftp.html + 3. Required Programs ==================== @@ -131,6 +131,10 @@ ifeq ($(CONFIG_LIBFLITE_DEP),y) echo LIBFLITE_LIB_DIR = $(CONFIG_LIBFLITE_LIB_DIR) >> $@ echo LIBFLITE_INC_DIR = $(CONFIG_LIBFLITE_INC_DIR) >> $@ endif +ifeq ($(CONFIG_LIBOBEXFTP_DEP),y) + echo LIBOBEXFTP_INC_DIR = $(CONFIG_LIBOBEXFTP_INC_DIR) >> $@ + echo LIBOBEXFTP_LIB_DIR = $(CONFIG_LIBOBEXFTP_LIB_DIR) >> $@ +endif $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages @echo Generating dependency information... # add to subdir-y, and add descend rules diff --git a/dependencies.in b/dependencies.in index 2a3d34a..8d6fdbe 100644 --- a/dependencies.in +++ b/dependencies.in @@ -114,3 +114,14 @@ string "libflite library dir" depends LIBFLITE_DEP + config LIBOBEXFTP_DEP + boolean "Have OBEX FTP library" + default "n" + + config LIBOBEXFTP_INC_DIR + string "OBEXFTP include dir" + depends LIBOBEXFTP_DEP + + config LIBOBEXFTP_LIB_DIR + string "OBEXFTP library dir" + depends LIBOBEXFTP_DEP |