summaryrefslogtreecommitdiffstats
path: root/addon
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-01-28 18:16:38 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2001-01-28 18:16:38 (GMT)
commit1426e2fbce1e3e4c8089b228c843042c90b2d1c4 (patch)
tree26b976ebd24f845a5cf88ab76f81f928c47c4548 /addon
parentbf4bb2e1e1fb5e61fa5a7458f6354002994fa5ee (diff)
downloadDoxygen-1426e2fbce1e3e4c8089b228c843042c90b2d1c4.zip
Doxygen-1426e2fbce1e3e4c8089b228c843042c90b2d1c4.tar.gz
Doxygen-1426e2fbce1e3e4c8089b228c843042c90b2d1c4.tar.bz2
Release-1.2.4-20010128
Diffstat (limited to 'addon')
-rw-r--r--addon/configgen/config_templ.l6
-rw-r--r--addon/configgen/configgen.cpp11
-rw-r--r--addon/xmlgen/Makefile.in4
3 files changed, 17 insertions, 4 deletions
diff --git a/addon/configgen/config_templ.l b/addon/configgen/config_templ.l
index aa1446b..69886d7 100644
--- a/addon/configgen/config_templ.l
+++ b/addon/configgen/config_templ.l
@@ -950,9 +950,13 @@ void checkConfig()
}
}
+#undef PUTENV
#if defined(_WIN32)
- if (Config::haveDotFlag) _putenv("DOTFONTPATH=.");
+#define PUTENV _putenv
+#else
+#define PUTENV putenv
#endif
+ if (Config::haveDotFlag) PUTENV("DOTFONTPATH=.");
}
diff --git a/addon/configgen/configgen.cpp b/addon/configgen/configgen.cpp
index e1c6a2e..6f62235 100644
--- a/addon/configgen/configgen.cpp
+++ b/addon/configgen/configgen.cpp
@@ -1046,6 +1046,15 @@ void init()
"will result in a user defined paragraph with heading \"Side Effects:\". \n"
"You can put \\n's in the value part of an alias to insert newlines. \n"
);
+ ConfigBool::add( "optimizeForCFlag",
+ "OPTIMIZE_OUTPUT_FOR_C",
+ "FALSE",
+ "do we parse C code?",
+ "Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources \n"
+ "only. Doxygen will then generate output that is more tailored for C. \n"
+ "For instance some of the names that are used will be different. The list \n"
+ "of all members will be omitted, etc. \n"
+ );
//-----------------------------------------------------------------------------------------------
ConfigInfo::add( "Messages","configuration options related to warning and progress messages");
//-----------------------------------------------------------------------------------------------
@@ -1306,7 +1315,7 @@ void init()
"GENERATE_TREEVIEW",
"FALSE",
"should a folder tree view be generated?",
- "If the GENERATE_TREEVIEW tag is set to YES, a side pannel will be\n"
+ "If the GENERATE_TREEVIEW tag is set to YES, a side panel will be\n"
"generated containing a tree-like index structure (just like the one that \n"
"is generated for HTML Help). For this to work a browser that supports \n"
"JavaScript and frames is required (for instance Netscape 4.0+ \n"
diff --git a/addon/xmlgen/Makefile.in b/addon/xmlgen/Makefile.in
index 89d4796..05adc8b 100644
--- a/addon/xmlgen/Makefile.in
+++ b/addon/xmlgen/Makefile.in
@@ -5,8 +5,8 @@ distclean: clean
$(RM) -f Makefile.xmlgen
tmake:
- export TMAKEPATH=$(TMAKEPATH) ; $(PERL) $(TMAKE) xmlgen.pro >Makefile.xmlgen
+ $(ENV) $(PERL) $(TMAKE) xmlgen.pro >Makefile.xmlgen
Makefile.xmlgen: xmlgen.pro
- export TMAKEPATH=$(TMAKEPATH) ; $(PERL) $(TMAKE) xmlgen.pro >Makefile.xmlgen
+ $(ENV) $(PERL) $(TMAKE) xmlgen.pro >Makefile.xmlgen