Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix the fix for newlines in echo commands. Tickets #311, #282, #256. (CVS 979) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
baea7aca10e30f30b874e1e8b6cd3b05 |
User & Date: | drh 2003-05-17 02:27:21.000 |
Context
2003-05-17
| ||
02:44 | Version 2.8.1 (CVS 980) (check-in: 590f963b65 user: drh tags: trunk) | |
02:27 | Fix the fix for newlines in echo commands. Tickets #311, #282, #256. (CVS 979) (check-in: baea7aca10 user: drh tags: trunk) | |
01:39 | Bump the version number to 2.8.1. Update documentation prior to release. (CVS 978) (check-in: 0874814ab0 user: drh tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
243 244 245 246 247 248 249 | # same size on the host as it is on the target. If you are cross-compiling # to a target with a different pointer size, you'll need to manually # configure the config.h file. # config.h: echo '#include <stdio.h>' >temp.c echo 'int main(){printf(' >>temp.c | | > | 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | # same size on the host as it is on the target. If you are cross-compiling # to a target with a different pointer size, you'll need to manually # configure the config.h file. # config.h: echo '#include <stdio.h>' >temp.c echo 'int main(){printf(' >>temp.c echo '"#define SQLITE_PTR_SZ %d",sizeof(char*));' >>temp.c echo 'exit(0);}' >>temp.c $(BCC) -o temp temp.c ./temp >config.h echo >>config.h rm -f temp.c temp sqlite.h: $(TOP)/src/sqlite.h.in sed -e s/--VERS--/`cat ${TOP}/VERSION`/ \ -e s/--ENCODING--/$(ENCODING)/ \ $(TOP)/src/sqlite.h.in >sqlite.h |
︙ | ︙ |
Changes to main.mk.
︙ | ︙ | |||
211 212 213 214 215 216 217 | # same size on the host as it is on the target. If you are cross-compiling # to a target with a different pointer size, you'll need to manually # configure the config.h file. # config.h: echo '#include <stdio.h>' >temp.c echo 'int main(){printf(' >>temp.c | | > | 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | # same size on the host as it is on the target. If you are cross-compiling # to a target with a different pointer size, you'll need to manually # configure the config.h file. # config.h: echo '#include <stdio.h>' >temp.c echo 'int main(){printf(' >>temp.c echo '"#define SQLITE_PTR_SZ %d",sizeof(char*));' >>temp.c echo 'exit(0);}' >>temp.c $(BCC) -o temp temp.c ./temp >config.h echo >>config.h rm -f temp.c temp sqlite.h: $(TOP)/src/sqlite.h.in sed -e s/--VERS--/`cat ${TOP}/VERSION`/ \ -e s/--ENCODING--/$(ENCODING)/ \ $(TOP)/src/sqlite.h.in >sqlite.h |
︙ | ︙ |