When the built-in manual is disabled, we generate a function doing nothing
authorDaniel Stenberg <daniel@haxx.se>
Fri, 20 Feb 2004 15:39:37 +0000 (15:39 +0000)
committerDaniel 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

index e780d3f..062f009 100644 (file)
@@ -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