author | mickeyl <mickeyl> | 2005-05-05 22:02:55 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-05-05 22:02:55 (UTC) |
commit | fdd31c3dd95a42d2666235ad8c2478b7ceead261 (patch) (unidiff) | |
tree | df6cf67018891193b642f4e1f2d28a4263502a4a /dependencies.in | |
parent | 548bfb68e473add1a19d3dd861fc1785f5e6b5c0 (diff) | |
download | opie-fdd31c3dd95a42d2666235ad8c2478b7ceead261.zip opie-fdd31c3dd95a42d2666235ad8c2478b7ceead261.tar.gz opie-fdd31c3dd95a42d2666235ad8c2478b7ceead261.tar.bz2 |
use dependency system for flite plugins
-rw-r--r-- | dependencies.in | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/dependencies.in b/dependencies.in index 4c758d3..70619de 100644 --- a/dependencies.in +++ b/dependencies.in | |||
@@ -19,17 +19,17 @@ | |||
19 | depends LIBPCAP_DEP | 19 | depends LIBPCAP_DEP |
20 | 20 | ||
21 | config LIBPCAP_INC_DIR | 21 | config LIBPCAP_INC_DIR |
22 | string "LIBPCAP include dir" | 22 | string "LIBPCAP include dir" |
23 | depends LIBPCAP_DEP | 23 | depends LIBPCAP_DEP |
24 | 24 | ||
25 | config LIBSQLITE_DEP | 25 | config LIBSQLITE_DEP |
26 | boolean "Have sqlite >= 3.0.7" | 26 | boolean "Have sqlite >= 3.0.7" |
27 | default n | 27 | default "n" |
28 | 28 | ||
29 | config LIBSQLITE_LIB_DIR | 29 | config LIBSQLITE_LIB_DIR |
30 | string "LIBSQLITE library dir" | 30 | string "LIBSQLITE library dir" |
31 | depends LIBSQLITE_DEP | 31 | depends LIBSQLITE_DEP |
32 | 32 | ||
33 | config LIBSQLITE_INC_DIR | 33 | config LIBSQLITE_INC_DIR |
34 | string "LIBSQLITE include dir" | 34 | string "LIBSQLITE include dir" |
35 | depends LIBSQLITE_DEP | 35 | depends LIBSQLITE_DEP |
@@ -97,8 +97,20 @@ | |||
97 | config LIBFREETYPE2_DEP | 97 | config LIBFREETYPE2_DEP |
98 | boolean "Have freetype2" | 98 | boolean "Have freetype2" |
99 | default "n" | 99 | default "n" |
100 | 100 | ||
101 | config LIBFREETYPE2_INC_DIR | 101 | config LIBFREETYPE2_INC_DIR |
102 | string "freetype2 include dir" | 102 | string "freetype2 include dir" |
103 | depends LIBFREETYPE2_DEP | 103 | depends LIBFREETYPE2_DEP |
104 | 104 | ||
105 | config LIBFLITE_DEP | ||
106 | boolean "Have flite library" | ||
107 | default "n" | ||
108 | |||
109 | config LIBFLITE_INC_DIR | ||
110 | string "libflite include dir" | ||
111 | depends LIBFLITE_DEP | ||
112 | |||
113 | config LIBFLITE_LIB_DIR | ||
114 | string "libflite library dir" | ||
115 | depends LIBFLITE_DEP | ||
116 | |||