Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Escape backslashes in echo commands in the makefiles. Tickets #311, #282, #256. (CVS 977) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d614861b8ad9e661b8f08131b95d730e |
User & Date: | drh 2003-05-17 00:24:21.000 |
Context
2003-05-17
| ||
01:39 | Bump the version number to 2.8.1. Update documentation prior to release. (CVS 978) (check-in: 0874814ab0 user: drh tags: trunk) | |
00:24 | Escape backslashes in echo commands in the makefiles. Tickets #311, #282, #256. (CVS 977) (check-in: d614861b8a user: drh tags: trunk) | |
00:05 | Fix memory allocation problem in the sqlite_get_table() API. Ticket #315. (CVS 976) (check-in: f1d955efd9 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 | # 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\\n",sizeof(char*));' >>temp.c echo 'exit(0);}' >>temp.c $(BCC) -o temp temp.c ./temp >config.h rm -f temp.c temp sqlite.h: $(TOP)/src/sqlite.h.in sed -e s/--VERS--/`cat ${TOP}/VERSION`/ \ |
︙ | ︙ |
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 | # 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\\n",sizeof(char*));' >>temp.c echo 'exit(0);}' >>temp.c $(BCC) -o temp temp.c ./temp >config.h rm -f temp.c temp sqlite.h: $(TOP)/src/sqlite.h.in sed -e s/--VERS--/`cat ${TOP}/VERSION`/ \ |
︙ | ︙ |