| 197 # |
197 # |
| 198 |
198 |
| 199 # check languages |
199 # check languages |
| 200 lang_c= |
200 lang_c= |
| 201 lang_cpp= |
201 lang_cpp= |
| |
202 if detect_cpp_compiler ; then |
| |
203 lang_cpp=1 |
| |
204 fi |
| 202 if detect_c_compiler ; then |
205 if detect_c_compiler ; then |
| 203 lang_c=1 |
206 lang_c=1 |
| 204 fi |
|
| 205 if detect_cpp_compiler ; then |
|
| 206 lang_cpp=1 |
|
| 207 fi |
207 fi |
| 208 |
208 |
| 209 # create buffer for make variables required by dependencies |
209 # create buffer for make variables required by dependencies |
| 210 echo > "$TEMP_DIR/make.mk" |
210 echo > "$TEMP_DIR/make.mk" |
| 211 |
211 |