projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2e1bf7
)
When the built-in manual is disabled, we generate a function doing nothing
author
Daniel Stenberg
<daniel@haxx.se>
Fri, 20 Feb 2004 15:39:37 +0000
(15:39 +0000)
committer
Daniel Stenberg
<daniel@haxx.se>
Fri, 20 Feb 2004 15:39:37 +0000
(15:39 +0000)
just to avoid making a totally empty file. Just to avoid compiler warnings.
src/Makefile.am
patch
|
blob
|
history
diff --git
a/src/Makefile.am
b/src/Makefile.am
index
e780d3f
..
062f009
100644
(file)
--- a/
src/Makefile.am
+++ b/
src/Makefile.am
@@
-78,5
+78,7
@@
endif
else # USE_MANUAL
# built-in manual has been disabled, make a blank file
$(HUGE):
- echo "/* explicitly disabled */" >$(HUGE)
+ echo "/* built-in manual is disabled, blank function */" > $(HUGE)
+ echo '#include "hugehelp.h"' >> $(HUGE)
+ echo "void hugehelp(void) {}" >>$(HUGE)
endif