Gregory Nutt
|
7a8561728c
|
The last change added .PRECIOUS: $(BIN) to everyway Makefile in hopes the libapps.a will not be deleted on Control-C (unproven so far). However, $(BIN) may contain back slashes in some build platforms and that causes problems for make: It can't handle the backslashes in the .PRECIOUS dependency list. $(BIN) replaced with ../../libapp.a, where the number of ../ depends on the depth of the Makefile in the apps/ source tree.
|
2017-08-13 11:03:17 -06:00 |
|
Gregory Nutt
|
a66da34f18
|
All Makefiles: Add .PRECIOUS: apps/libapps.a to every Makefile. Hopefully this will end awkward problems when you Control-C out of a build and libapps.a is deleted.
|
2017-08-13 09:35:14 -06:00 |
|
Gregory Nutt
|
81645fe18f
|
strcasecmp, strncasecmp, bzero, bcmp, and bcopy should be defined in strings.h, not string.h. bzero, bcmp, and bcopy are legacy functions; the contemporary counterparts should be used instead.
|
2017-02-16 15:58:15 -06:00 |
|
Sebastien Lorquet
|
2cbad44f1d
|
This is the Pokemon patch to change all includes fronm <apps/bla/bla.h> to "bla/bla.h"
|
2016-07-11 10:11:18 -06:00 |
|
Gregory Nutt
|
a50383db3d
|
apps/graphics and netutils: Change some *err() message to *info() messages if what was a *dbg() message does not indicate and error condition.
|
2016-06-14 17:53:47 -06:00 |
|
Gregory Nutt
|
586b0aa7e0
|
Change names of *dbg() * *err()
|
2016-06-11 15:51:27 -06:00 |
|
Gregory Nutt
|
344c92e2a4
|
Replace all occurrences of vdbg with vinfo
|
2016-06-11 11:55:38 -06:00 |
|
Sebastien Lorquet
|
bfff5e7179
|
Add empty preconfig rules to 'leaf' makefiles
|
2016-06-02 16:24:30 +02:00 |
|
Sebastien Lorquet
|
9a406515d7
|
make the full tree use wildcards make.defs
|
2016-06-02 16:21:21 +02:00 |
|
Gregory Nutt
|
e9447c6058
|
Standardize nameing of the pre-processor definitiongs group header
|
2015-10-02 14:06:11 -06:00 |
|
Gregory Nutt
|
812450ebe6
|
If NSH or Webclient is selected, make sure that CONFIG_LIBC_NETDB is enabled; reanem dnsclient.h to dns.h
|
2015-07-12 09:25:39 -06:00 |
|
Gregory Nutt
|
c7bd1f4186
|
Replaces calls to non-standard dns_hostip() with calls to the standard gethostbyname()
|
2015-07-11 08:15:29 -06:00 |
|
Gregory Nutt
|
5e8928d009
|
Remove bogus references to CONFIG_HAVE_GETHOSTBYNAME
|
2015-07-10 14:03:28 -06:00 |
|
Gregory Nutt
|
48c36800f5
|
apps/netuils/dnsclient and include/netutils/dnsclient.h: Move the DNS client logic into the NuttX C library. It is a necessary part for the full implementation of the netdb logic and provides more flexibility in that location.
|
2015-07-10 11:31:13 -06:00 |
|
Gregory Nutt
|
d5b6949c9f
|
Fix references to the no-longer-existent misc/ directory in comments, README files, and documentation
|
2015-06-28 08:14:53 -06:00 |
|
Gregory Nutt
|
5ca324cad8
|
Add some missing dependencies in Kconfig files
|
2015-03-29 15:52:46 -06:00 |
|
Gregory Nutt
|
23dfce6275
|
Suffer the consequences of moving struct timeval to its correct location
|
2015-02-15 15:18:35 -06:00 |
|
Gregory Nutt
|
ff8338b5c2
|
Add implementation of timeouts for the apps/netutils/webclient. From Brennan Ashton
|
2014-09-29 17:10:49 -06:00 |
|
Gregory Nutt
|
d6bcd1a93a
|
Add an install target to all makefiles. For the import build, the top-level Makefile now does two passes: (1) builds libapp.a, then (2) installs the programs (not yet finished)
|
2014-09-06 08:00:47 -06:00 |
|
Gregory Nutt
|
aa48010271
|
WGET: Fix from Rony Xln
|
2014-07-08 07:29:38 -06:00 |
|
Gregory Nutt
|
e7fedfa4a5
|
NET: Rename functions in apps/netutils/netlib to begin with netlib_ vs uip_
|
2014-07-02 16:52:02 -06:00 |
|
Gregory Nutt
|
2ee5041477
|
NET: Rename uiplib/UIPLIB to netlib/NETLIB
|
2014-07-02 16:04:25 -06:00 |
|
Gregory Nutt
|
b9cf7acb1a
|
More trailing whilespace removal
|
2014-04-13 16:24:28 -06:00 |
|
Gregory Nutt
|
171db56b69
|
Make sure that there is one space after for
|
2014-04-12 13:28:22 -06:00 |
|
Gregory Nutt
|
8b386385ab
|
The rest of the resolv->DNS client naming change: Renamed directories and header files
|
2014-04-11 12:41:13 -06:00 |
|
Gregory Nutt
|
3669b6799a
|
More changes to reduce complaints from CppCheck. Some latent bugs fixes, but probably some new typos introduced
|
2014-02-10 19:11:56 -06:00 |
|
Gregory Nutt
|
424fbe6583
|
.dSYM only needs to be in the same .gitignore files as .exe
|
2013-05-30 15:02:04 -06:00 |
|
Gregory Nutt
|
f9ab52bb5a
|
Upate .gitignore files. Add .dSYM. Make sure / is present where needed. Add some missing .gitignore files
|
2013-05-30 14:45:31 -06:00 |
|
Gregory Nutt
|
470a04b8f9
|
Clone svn:ignore directory atributed to .gitignore files
|
2013-04-04 14:27:29 -06:00 |
|
patacongo
|
08f0823241
|
Missing comma in EVERY DELFILE/DELDIR macro call in every Makefile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5373 42af7a65-404d-4744-a932-0658087f49c3
|
2012-11-20 15:47:41 +00:00 |
|
patacongo
|
1d7bb0fa07
|
Most of the changes needed to support Windows native clean; distclean is has a problem
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5367 42af7a65-404d-4744-a932-0658087f49c3
|
2012-11-17 18:54:53 +00:00 |
|
patacongo
|
c729930c69
|
Move some (hopefully) un-necessary quotes in Makefiles for Mike
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5356 42af7a65-404d-4744-a932-0658087f49c3
|
2012-11-15 17:43:29 +00:00 |
|
patacongo
|
fdb8f8a0de
|
Changes to get a clean ez80 build using the ZDS 5.1.1 toolchain
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5341 42af7a65-404d-4744-a932-0658087f49c3
|
2012-11-12 15:22:27 +00:00 |
|
patacongo
|
3e25d82213
|
Correct some issues with last check-in; ez80 still does not build
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5339 42af7a65-404d-4744-a932-0658087f49c3
|
2012-11-11 23:44:31 +00:00 |
|
patacongo
|
ffe4fc1c0c
|
Partial change: Removing bash ARCHIVE loop
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5336 42af7a65-404d-4744-a932-0658087f49c3
|
2012-11-11 16:24:40 +00:00 |
|
patacongo
|
ddc2a64224
|
Fix apps/netutils/webclient build problem
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5317 42af7a65-404d-4744-a932-0658087f49c3
|
2012-11-06 16:59:45 +00:00 |
|
patacongo
|
416434f834
|
Add interfaces flags, extend ifconfig, add ifup and ifdown commands (Darcy Gong
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5308 42af7a65-404d-4744-a932-0658087f49c3
|
2012-11-04 18:54:04 +00:00 |
|
patacongo
|
93870670fa
|
Add support for wget POST interface; from Darcy Gong
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5301 42af7a65-404d-4744-a932-0658087f49c3
|
2012-11-03 00:00:56 +00:00 |
|
patacongo
|
9db7c9aadc
|
DNS fixes from Darcy Gong (part 1 of 2)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5235 42af7a65-404d-4744-a932-0658087f49c3
|
2012-10-20 13:47:30 +00:00 |
|
patacongo
|
f90c8836c0
|
Several bugfixes, mostly from Darcy Gong
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5217 42af7a65-404d-4744-a932-0658087f49c3
|
2012-10-06 14:50:37 +00:00 |
|
patacongo
|
f8e08440f7
|
Email address change in apps/
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5143 42af7a65-404d-4744-a932-0658087f49c3
|
2012-09-13 16:58:49 +00:00 |
|
patacongo
|
3766aebbb4
|
Developing a new way to handle application configurations
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4609 42af7a65-404d-4744-a932-0658087f49c3
|
2012-04-14 20:01:08 +00:00 |
|
patacongo
|
fd496ea42f
|
Add kconfig documentation
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4567 42af7a65-404d-4744-a932-0658087f49c3
|
2012-04-06 16:45:52 +00:00 |
|
patacongo
|
3fe79ff511
|
Adding skeleton Kconfig files (part 3 of 2)
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4566 42af7a65-404d-4744-a932-0658087f49c3
|
2012-04-06 16:33:17 +00:00 |
|
patacongo
|
ba73620d39
|
Correct and error in recv() and recvfrom() return value
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4402 42af7a65-404d-4744-a932-0658087f49c3
|
2012-02-18 18:13:30 +00:00 |
|
patacongo
|
b4e43e4c63
|
tools/mkdep.sh should not report an error if there are no files on the command line
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3588 42af7a65-404d-4744-a932-0658087f49c3
|
2011-05-11 01:27:04 +00:00 |
|
patacongo
|
9e4d576dd0
|
Changes for clean build of app/ directory with Windows toolchain
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3488 42af7a65-404d-4744-a932-0658087f49c3
|
2011-04-10 16:08:08 +00:00 |
|
patacongo
|
893d4dbbfe
|
Pass __KERNEL__ define (or not) to all makes to handle small differences in user-/kernel-builds
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3459 42af7a65-404d-4744-a932-0658087f49c3
|
2011-04-03 18:42:33 +00:00 |
|
patacongo
|
9116f1964e
|
Update apps/ Makefiles to fix environmental bug
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3450 42af7a65-404d-4744-a932-0658087f49c3
|
2011-04-01 15:18:02 +00:00 |
|
patacongo
|
40174767c9
|
Add lpc17xx GPIO interrupts + fixes needed by last apps-build check-in
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3413 42af7a65-404d-4744-a932-0658087f49c3
|
2011-03-24 02:26:25 +00:00 |
|