-rw-r--r-- | README | 3 | ||||
-rw-r--r-- | Rules.make | 4 | ||||
-rw-r--r-- | dependencies.in | 11 |
3 files changed, 18 insertions, 0 deletions
@@ -85,4 +85,7 @@ For a successful Opie build, you need to install the following libraries and hea | |||
85 | ftp://handhelds.org/linux/packages/ipkg | 85 | ftp://handhelds.org/linux/packages/ipkg |
86 | 86 | ||
87 | * libobexftp >= 0.19 | ||
88 | http://triq.net/obexftp.html | ||
89 | |||
87 | 3. Required Programs | 90 | 3. Required Programs |
88 | ==================== | 91 | ==================== |
@@ -132,4 +132,8 @@ ifeq ($(CONFIG_LIBFLITE_DEP),y) | |||
132 | echo LIBFLITE_INC_DIR = $(CONFIG_LIBFLITE_INC_DIR) >> $@ | 132 | echo LIBFLITE_INC_DIR = $(CONFIG_LIBFLITE_INC_DIR) >> $@ |
133 | endif | 133 | endif |
134 | ifeq ($(CONFIG_LIBOBEXFTP_DEP),y) | ||
135 | echo LIBOBEXFTP_INC_DIR = $(CONFIG_LIBOBEXFTP_INC_DIR) >> $@ | ||
136 | echo LIBOBEXFTP_LIB_DIR = $(CONFIG_LIBOBEXFTP_LIB_DIR) >> $@ | ||
137 | endif | ||
134 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages | 138 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages |
135 | @echo Generating dependency information... | 139 | @echo Generating dependency information... |
diff --git a/dependencies.in b/dependencies.in index 2a3d34a..8d6fdbe 100644 --- a/dependencies.in +++ b/dependencies.in | |||
@@ -115,2 +115,13 @@ | |||
115 | depends LIBFLITE_DEP | 115 | depends LIBFLITE_DEP |
116 | 116 | ||
117 | config LIBOBEXFTP_DEP | ||
118 | boolean "Have OBEX FTP library" | ||
119 | default "n" | ||
120 | |||
121 | config LIBOBEXFTP_INC_DIR | ||
122 | string "OBEXFTP include dir" | ||
123 | depends LIBOBEXFTP_DEP | ||
124 | |||
125 | config LIBOBEXFTP_LIB_DIR | ||
126 | string "OBEXFTP library dir" | ||
127 | depends LIBOBEXFTP_DEP | ||