From 8e37d0d253641ca90f1981210d2a597152d72a60 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Wed, 14 Jun 2017 10:31:07 -0400 Subject: Fix doc breakage for D tools. Refer to Russel Windsor for full fix. Several cvars were referred to but deleted in [ 4157:a305db2fec15 Russel Winder 2017-04-21 10:55 First cut at proper documentation for the D tools. ] --- doc/generated/builders.gen | 85 +++++++++- doc/generated/builders.mod | 4 + doc/generated/tools.gen | 18 +- doc/generated/tools.mod | 4 +- doc/generated/variables.gen | 404 +++++++++++++++++++++++++++----------------- doc/generated/variables.mod | 16 +- 6 files changed, 346 insertions(+), 185 deletions(-) (limited to 'doc') diff --git a/doc/generated/builders.gen b/doc/generated/builders.gen index b19d82d1..d851c93a 100644 --- a/doc/generated/builders.gen +++ b/doc/generated/builders.gen @@ -934,22 +934,24 @@ compilation error messages displayed in the Visual Studio console output window. This can be remedied by adding the Visual C/C++ /FC compiler option to the $CCFLAGS variable so that the compiler will print the full path name of any files that cause compilation errors. - Example usage: barsrcs = ['bar.cpp'], -barincs = ['bar.h'], + Example usage: + +barsrcs = ['bar.cpp'] +barincs = ['bar.h'] barlocalincs = ['StdAfx.h'] barresources = ['bar.rc','resource.h'] barmisc = ['bar_readme.txt'] dll = env.SharedLibrary(target = 'bar.dll', source = barsrcs) - +buildtarget = [s for s in dll if str(s).endswith('dll')] env.MSVSProject(target = 'Bar' + env['MSVSPROJECTSUFFIX'], srcs = barsrcs, incs = barincs, localincs = barlocalincs, resources = barresources, misc = barmisc, - buildtarget = dll, + buildtarget = buildtarget, variant = 'Release') Starting with version 2.4 of @@ -1743,6 +1745,81 @@ Example: env.Program(target = 'foo', source = ['foo.o', 'bar.c', 'baz.f']) + + + + ProgramAllAtOnce() + + + env.ProgramAllAtOnce() + + + + Builds an executable from D sources without first creating individual + objects for each file. + + + D sources can be compiled file-by-file as C and C++ source are, and + D is integrated into the scons Object and Program builders for + this model of build. D codes can though do whole source + meta-programming (some of the testing frameworks do this). For this + it is imperative that all sources are compiled and linked in a single call of + the D compiler. This builder serves that purpose. + + + env.ProgramAllAtOnce('executable', ['mod_a.d, mod_b.d', 'mod_c.d']) + + + This command will compile the modules mod_a, mod_b, and mod_c in a + single compilation process without first creating object files for + the modules. Some of the D compilers will create executable.o others + will not. + + + + Builds an executable from D sources without first creating individual + objects for each file. + + + D sources can be compiled file-by-file as C and C++ source are, and + D is integrated into the scons Object and Program builders for + this model of build. D codes can though do whole source + meta-programming (some of the testing frameworks do this). For this + it is imperative that all sources are compiled and linked in a single call of + the D compiler. This builder serves that purpose. + + + env.ProgramAllAtOnce('executable', ['mod_a.d, mod_b.d', 'mod_c.d']) + + + This command will compile the modules mod_a, mod_b, and mod_c in a + single compilation process without first creating object files for + the modules. Some of the D compilers will create executable.o others + will not. + + + + Builds an executable from D sources without first creating individual + objects for each file. + + + D sources can be compiled file-by-file as C and C++ source are, and + D is integrated into the scons Object and Program builders for + this model of build. D codes can though do whole source + meta-programming (some of the testing frameworks do this). For this + it is imperative that all sources are compiled and linked in a single call of + the D compiler. This builder serves that purpose. + + + env.ProgramAllAtOnce('executable', ['mod_a.d, mod_b.d', 'mod_c.d']) + + + This command will compile the modules mod_a, mod_b, and mod_c in a + single compilation process without first creating object files for + the modules. Some of the D compilers will create executable.o others + will not. + + diff --git a/doc/generated/builders.mod b/doc/generated/builders.mod index 50591b45..ae606539 100644 --- a/doc/generated/builders.mod +++ b/doc/generated/builders.mod @@ -45,6 +45,7 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. POTUpdate"> POUpdate"> Program"> +ProgramAllAtOnce"> RES"> RMIC"> RPCGenClient"> @@ -100,6 +101,7 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. env.POTUpdate"> env.POUpdate"> env.Program"> +env.ProgramAllAtOnce"> env.RES"> env.RMIC"> env.RPCGenClient"> @@ -165,6 +167,7 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. POTUpdate"> POUpdate"> Program"> +ProgramAllAtOnce"> RES"> RMIC"> RPCGenClient"> @@ -220,6 +223,7 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. env.POTUpdate"> env.POUpdate"> env.Program"> +env.ProgramAllAtOnce"> env.RES"> env.RMIC"> env.RPCGenClient"> diff --git a/doc/generated/tools.gen b/doc/generated/tools.gen index f31b3f3c..d4b346dd 100644 --- a/doc/generated/tools.gen +++ b/doc/generated/tools.gen @@ -134,7 +134,7 @@ for the platform on which SCons is running. Sets construction variables for D language compiler DMD. -Sets: &cv-link-DC;, &cv-link-DCOM;, &cv-link-DDEBUG;, &cv-link-DDEBUGPREFIX;, &cv-link-DDEBUGSUFFIX;, &cv-link-DFILESUFFIX;, &cv-link-DFLAGPREFIX;, &cv-link-DFLAGS;, &cv-link-DFLAGSUFFIX;, &cv-link-DINCPREFIX;, &cv-link-DINCSUFFIX;, &cv-link-DLIB;, &cv-link-DLIBCOM;, &cv-link-DLIBDIRPREFIX;, &cv-link-DLIBDIRSUFFIX;, &cv-link-DLIBFLAGPREFIX;, &cv-link-DLIBFLAGSUFFIX;, &cv-link-DLIBLINKPREFIX;, &cv-link-DLIBLINKSUFFIX;, &cv-link-DLINK;, &cv-link-DLINKCOM;, &cv-link-DLINKFLAGS;, &cv-link-DPATH;, &cv-link-DVERPREFIX;, &cv-link-DVERSIONS;, &cv-link-DVERSUFFIX;, &cv-link-RPATHPREFIX;, &cv-link-RPATHSUFFIX;, &cv-link-SHDC;, &cv-link-SHDCOM;, &cv-link-SHDLINK;, &cv-link-SHDLINKCOM;, &cv-link-SHDLINKFLAGS;, &cv-link-_DDEBUGFLAGS;, &cv-link-_DFLAGS;, &cv-link-_DINCFLAGS;, &cv-link-_DLIBDIRFLAGS;, &cv-link-_DLIBFLAGS;, &cv-link-_DLIBFLAGS;, &cv-link-_DVERFLAGS;, &cv-link-_RPATH;. +Sets: &cv-link-DC;, &cv-link-DCOM;, &cv-link-DDEBUG;, &cv-link-DDEBUGPREFIX;, &cv-link-DDEBUGSUFFIX;, &cv-link-DFILESUFFIX;, &cv-link-DFLAGPREFIX;, &cv-link-DFLAGS;, &cv-link-DFLAGSUFFIX;, &cv-link-DINCPREFIX;, &cv-link-DINCSUFFIX;, &cv-link-DLIB;, &cv-link-DLIBCOM;, &cv-link-DLIBDIRPREFIX;, &cv-link-DLIBDIRSUFFIX;, &cv-link-DLIBFLAGPREFIX;, &cv-link-DLIBFLAGSUFFIX;, &cv-link-DLIBLINKPREFIX;, &cv-link-DLIBLINKSUFFIX;, &cv-link-DLINK;, &cv-link-DLINKCOM;, &cv-link-DLINKFLAGPREFIX;, &cv-link-DLINKFLAGS;, &cv-link-DLINKFLAGSUFFIX;, &cv-link-DPATH;, &cv-link-DVERPREFIX;, &cv-link-DVERSIONS;, &cv-link-DVERSUFFIX;, &cv-link-RPATHPREFIX;, &cv-link-RPATHSUFFIX;, &cv-link-SHDC;, &cv-link-SHDCOM;, &cv-link-SHDLINK;, &cv-link-SHDLINKCOM;, &cv-link-SHDLINKFLAGS;. docbook @@ -378,7 +378,7 @@ Set construction variables for the Sets construction variables for the D language compiler GDC. -Sets: &cv-link-DC;, &cv-link-DCOM;, &cv-link-DDEBUG;, &cv-link-DDEBUGPREFIX;, &cv-link-DDEBUGSUFFIX;, &cv-link-DFILESUFFIX;, &cv-link-DFLAGPREFIX;, &cv-link-DFLAGS;, &cv-link-DFLAGSUFFIX;, &cv-link-DINCPREFIX;, &cv-link-DINCSUFFIX;, &cv-link-DLIB;, &cv-link-DLIBCOM;, &cv-link-DLIBFLAGPREFIX;, &cv-link-DLIBFLAGSUFFIX;, &cv-link-DLINK;, &cv-link-DLINKCOM;, &cv-link-DLINKFLAGPREFIX;, &cv-link-DLINKFLAGS;, &cv-link-DLINKFLAGSUFFIX;, &cv-link-DPATH;, &cv-link-DVERPREFIX;, &cv-link-DVERSIONS;, &cv-link-DVERSUFFIX;, &cv-link-RPATHPREFIX;, &cv-link-RPATHSUFFIX;, &cv-link-SHDC;, &cv-link-SHDCOM;, &cv-link-SHDLINK;, &cv-link-SHDLINKCOM;, &cv-link-SHDLINKFLAGS;, &cv-link-_DDEBUGFLAGS;, &cv-link-_DFLAGS;, &cv-link-_DINCFLAGS;, &cv-link-_DLIBFLAGS;, &cv-link-_DVERFLAGS;, &cv-link-_RPATH;. +Sets: &cv-link-DC;, &cv-link-DCOM;, &cv-link-DDEBUG;, &cv-link-DDEBUGPREFIX;, &cv-link-DDEBUGSUFFIX;, &cv-link-DFILESUFFIX;, &cv-link-DFLAGPREFIX;, &cv-link-DFLAGS;, &cv-link-DFLAGSUFFIX;, &cv-link-DINCPREFIX;, &cv-link-DINCSUFFIX;, &cv-link-DLIB;, &cv-link-DLIBCOM;, &cv-link-DLIBDIRPREFIX;, &cv-link-DLIBDIRSUFFIX;, &cv-link-DLIBFLAGPREFIX;, &cv-link-DLIBFLAGSUFFIX;, &cv-link-DLIBLINKPREFIX;, &cv-link-DLIBLINKSUFFIX;, &cv-link-DLINK;, &cv-link-DLINKCOM;, &cv-link-DLINKFLAGPREFIX;, &cv-link-DLINKFLAGS;, &cv-link-DLINKFLAGSUFFIX;, &cv-link-DPATH;, &cv-link-DVERPREFIX;, &cv-link-DVERSIONS;, &cv-link-DVERSUFFIX;, &cv-link-RPATHPREFIX;, &cv-link-RPATHSUFFIX;, &cv-link-SHDC;, &cv-link-SHDCOM;, &cv-link-SHDLINK;, &cv-link-SHDLINKCOM;, &cv-link-SHDLINKFLAGS;. gettext @@ -597,7 +597,7 @@ Sets construction variables for the Sets construction variables for the D language compiler LDC2. -Sets: &cv-link-DC;, &cv-link-DCOM;, &cv-link-DDEBUG;, &cv-link-DDEBUGPREFIX;, &cv-link-DDEBUGSUFFIX;, &cv-link-DFILESUFFIX;, &cv-link-DFLAGPREFIX;, &cv-link-DFLAGS;, &cv-link-DFLAGSUFFIX;, &cv-link-DINCPREFIX;, &cv-link-DINCSUFFIX;, &cv-link-DLIB;, &cv-link-DLIBCOM;, &cv-link-DLIBDIRPREFIX;, &cv-link-DLIBDIRSUFFIX;, &cv-link-DLIBFLAGPREFIX;, &cv-link-DLIBFLAGSUFFIX;, &cv-link-DLIBLINKPREFIX;, &cv-link-DLIBLINKSUFFIX;, &cv-link-DLINK;, &cv-link-DLINKCOM;, &cv-link-DLINKFLAGPREFIX;, &cv-link-DLINKFLAGS;, &cv-link-DLINKFLAGSUFFIX;, &cv-link-DPATH;, &cv-link-DVERPREFIX;, &cv-link-DVERSIONS;, &cv-link-DVERSUFFIX;, &cv-link-RPATHPREFIX;, &cv-link-RPATHSUFFIX;, &cv-link-SHDC;, &cv-link-SHDCOM;, &cv-link-SHDLINK;, &cv-link-SHDLINKCOM;, &cv-link-SHDLINKFLAGS;, &cv-link-_DDEBUGFLAGS;, &cv-link-_DFLAGS;, &cv-link-_DINCFLAGS;, &cv-link-_DLIBDIRFLAGS;, &cv-link-_DLIBFLAGS;, &cv-link-_DLIBFLAGS;, &cv-link-_DVERFLAGS;, &cv-link-_RPATH;. +Sets: &cv-link-DC;, &cv-link-DCOM;, &cv-link-DDEBUG;, &cv-link-DDEBUGPREFIX;, &cv-link-DDEBUGSUFFIX;, &cv-link-DFILESUFFIX;, &cv-link-DFLAGPREFIX;, &cv-link-DFLAGS;, &cv-link-DFLAGSUFFIX;, &cv-link-DINCPREFIX;, &cv-link-DINCSUFFIX;, &cv-link-DLIB;, &cv-link-DLIBCOM;, &cv-link-DLIBDIRPREFIX;, &cv-link-DLIBDIRSUFFIX;, &cv-link-DLIBFLAGPREFIX;, &cv-link-DLIBFLAGSUFFIX;, &cv-link-DLIBLINKPREFIX;, &cv-link-DLIBLINKSUFFIX;, &cv-link-DLINK;, &cv-link-DLINKCOM;, &cv-link-DLINKFLAGPREFIX;, &cv-link-DLINKFLAGS;, &cv-link-DLINKFLAGSUFFIX;, &cv-link-DPATH;, &cv-link-DVERPREFIX;, &cv-link-DVERSIONS;, &cv-link-DVERSUFFIX;, &cv-link-RPATHPREFIX;, &cv-link-RPATHSUFFIX;, &cv-link-SHDC;, &cv-link-SHDCOM;, &cv-link-SHDLINK;, &cv-link-SHDLINKCOM;, &cv-link-SHDLINKFLAGS;. lex @@ -762,19 +762,19 @@ Sets construction variables for the Sets: &cv-link-AS;, &cv-link-ASCOM;, &cv-link-ASFLAGS;, &cv-link-ASPPCOM;, &cv-link-ASPPFLAGS;.Uses: &cv-link-ASCOMSTR;, &cv-link-ASPPCOMSTR;. - - Packaging + + packaging -Sets construction variables for the Package Builder. +A framework for building binary and source packages. - - packaging + + Packaging -A framework for building binary and source packages. +Sets construction variables for the Package Builder. diff --git a/doc/generated/tools.mod b/doc/generated/tools.mod index bf552c33..ee387ad3 100644 --- a/doc/generated/tools.mod +++ b/doc/generated/tools.mod @@ -76,8 +76,8 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. mwcc"> mwld"> nasm"> -Packaging"> packaging"> +Packaging"> pdf"> pdflatex"> pdftex"> @@ -182,8 +182,8 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. mwcc"> mwld"> nasm"> -Packaging"> packaging"> +Packaging"> pdf"> pdflatex"> pdftex"> diff --git a/doc/generated/variables.gen b/doc/generated/variables.gen index d2bced9c..e31fde1b 100644 --- a/doc/generated/variables.gen +++ b/doc/generated/variables.gen @@ -781,7 +781,15 @@ depending on the specific C++ compiler being used. DC -DC. +The D compiler to use. + + + +The D compiler to use. + + + +The D compiler to use. @@ -789,7 +797,21 @@ DC. DCOM -DCOM. + The command line used to compile a D file to an object file. + Any options specified in the $DFLAGS construction variable + is included on this command line. + + + + The command line used to compile a D file to an object file. + Any options specified in the $DFLAGS construction variable + is included on this command line. + + + + The command line used to compile a D file to an object file. + Any options specified in the $DFLAGS construction variable + is included on this command line. @@ -797,33 +819,33 @@ DCOM. DDEBUG -DDEBUG. + List of debug tags to enable when compiling. - - - - _DDEBUGFLAGS - + -_DDEBUGFLAGS. + List of debug tags to enable when compiling. + + + + List of debug tags to enable when compiling. DDEBUGPREFIX - -DDEBUGPREFIX. - - + + DDEBUGPREFIX. + + DDEBUGSUFFIX - -DDEBUGSUFFIX. - - + + DDEBUGSUFFIX. + + DESCRIPTION @@ -851,66 +873,58 @@ section of an RPM DFILESUFFIX - -DFILESUFFIX. - - + + DFILESUFFIX. + + DFLAGPREFIX - -DFLAGPREFIX. - - - - - _DFLAGS - - -_DFLAGS. - - + + DFLAGPREFIX. + + DFLAGS -DFLAGS. + General options that are passed to the D compiler. - - - - DFLAGSUFFIX - + -DFLAGSUFFIX. + General options that are passed to the D compiler. - - - - _DINCFLAGS - + -_DINCFLAGS. + General options that are passed to the D compiler. + + + DFLAGSUFFIX + + + DFLAGSUFFIX. + + DINCPREFIX - -DINCPREFIX. - - + + DINCPREFIX. + + DINCSUFFIX - -DINCSUFFIX. - - + + DLIBFLAGSUFFIX. + + Dir @@ -939,7 +953,15 @@ into a list of Dir instances relative to the target being built. DLIB -DLIB. + Name of the lib tool to use for D codes. + + + + Name of the lib tool to use for D codes. + + + + Name of the lib tool to use for D codes. @@ -947,79 +969,79 @@ DLIB. DLIBCOM -DLIBCOM. + The command line to use when creating libraries. - - - - _DLIBDIRFLAGS - + + + The command line to use when creating libraries. + + -_DLIBDIRFLAGS. + The command line to use when creating libraries. DLIBDIRPREFIX - -DLIBDIRPREFIX. - - + + DLIBLINKPREFIX. + + DLIBDIRSUFFIX - -DLIBDIRSUFFIX. - - + + DLIBLINKSUFFIX. + + DLIBFLAGPREFIX - -DLIBFLAGPREFIX. - - - - - _DLIBFLAGS - - -_DLIBFLAGS. - - + + DLIBFLAGPREFIX. + + DLIBFLAGSUFFIX - -DLIBFLAGSUFFIX. - - + + DLIBFLAGSUFFIX. + + DLIBLINKPREFIX - -DLIBLINKPREFIX. - - + + DLIBLINKPREFIX. + + DLIBLINKSUFFIX - -DLIBLINKSUFFIX. - - + + DLIBLINKSUFFIX. + + DLINK -DLINK. + Name of the linker to use for linking systems including D sources. + + + + Name of the linker to use for linking systems including D sources. + + + + Name of the linker to use for linking systems including D sources. @@ -1027,33 +1049,49 @@ DLINK. DLINKCOM -DLINKCOM. + The command line to use when linking systems including D sources. + + + + The command line to use when linking systems including D sources. + + + + The command line to use when linking systems including D sources. DLINKFLAGPREFIX - -DLINKFLAGPREFIX. - - + + DLINKFLAGPREFIX. + + DLINKFLAGS -DLINKFLAGS. +List of linker flags. + + + +List of linker flags. + + + +List of linker flags. DLINKFLAGSUFFIX - -DLINKFLAGSUFFIX. - - + + DLINKFLAGSUFFIX. + + DOCBOOK_DEFAULT_XSL_EPUB @@ -1256,7 +1294,15 @@ for saxon and saxon-xslt, respectively. DPATH -DPATH. + List of paths to search for import modules. + + + + List of paths to search for import modules. + + + + List of paths to search for import modules. @@ -1272,39 +1318,39 @@ The default list is: ['.d'] - - - - _DVERFLAGS - - -_DVERFLAGS. - DVERPREFIX - -DVERPREFIX. - - + + DVERPREFIX. + + DVERSIONS -DVERSIONS. + List of version tags to enable when compiling. + + + + List of version tags to enable when compiling. + + + + List of version tags to enable when compiling. DVERSUFFIX - -DVERSUFFIX. - - + + DVERSUFFIX. + + DVIPDF @@ -2733,6 +2779,15 @@ is -dNOPAUSE -dBATCH -sDEVICE=pdfwrite HOST_ARCH + + The name of the host hardware architecture used to create the Environment. + If a platform is specified when creating the Environment, then + that Platform's logic will handle setting this value. + This value is immutable, and should not be changed by the user after + the Environment is initialized. + Currently only set for Win32. + + Sets the host architecture for Visual Studio compiler. If not set, default to the detected host architecture: note that this may depend @@ -2749,16 +2804,7 @@ Valid values are the same as for This is currently only used on Windows, but in the future it will be used on other OSes as well. - - - The name of the host hardware architecture used to create the Environment. - If a platform is specified when creating the Environment, then - that Platform's logic will handle setting this value. - This value is immutable, and should not be changed by the user after - the Environment is initialized. - Currently only set for Win32. - - + HOST_OS @@ -5738,7 +5784,18 @@ to generate shared-library objects. SHDC -SHDC. + The name of the compiler to use when compiling D source + destined to be in a shared objects. + + + + The name of the compiler to use when compiling D source + destined to be in a shared objects. + + + + The name of the compiler to use when compiling D source + destined to be in a shared objects. @@ -5746,7 +5803,15 @@ SHDC. SHDCOM -SHDCOM. + The command line to use when compiling code to be part of shared objects. + + + + The command line to use when compiling code to be part of shared objects. + + + + The command line to use when compiling code to be part of shared objects. @@ -5754,7 +5819,18 @@ SHDCOM. SHDLINK -SHDLINK. + The linker to use when creating shared objects for code bases + include D sources. + + + + The linker to use when creating shared objects for code bases + include D sources. + + + + The linker to use when creating shared objects for code bases + include D sources. @@ -5762,7 +5838,15 @@ SHDLINK. SHDLINKCOM -SHDLINKCOM. + The command line to use when generating shared objects. + + + + The command line to use when generating shared objects. + + + + The command line to use when generating shared objects. @@ -5770,7 +5854,15 @@ SHDLINKCOM. SHDLINKFLAGS -SHDLINKFLAGS. + The list of flags to use when generating a shared object. + + + + The list of flags to use when generating a shared object. + + + + The list of flags to use when generating a shared object. @@ -6315,16 +6407,6 @@ that are needed. $SHLIBVERSION values include '1', '1.2.3', and '1.2.gitaa412c8b'. - - - - SHLIBVERSIONFLAGS - - -Extra flags added to $SHLINKCOM when building versioned -SharedLibrary. These flags are only used when $SHLIBVERSION is -set. - @@ -6338,6 +6420,16 @@ and some extra dynamically generated options (such as -Wl,-soname=$_SHLIBSONAME. It is unused by "plain" (unversioned) shared libraries. + + + + SHLIBVERSIONFLAGS + + +Extra flags added to $SHLINKCOM when building versioned +SharedLibrary. These flags are only used when $SHLIBVERSION is +set. + @@ -6801,6 +6893,13 @@ that may not be set or used in a construction environment. TARGET_ARCH + + The name of the target hardware architecture for the compiled objects + created by this Environment. + This defaults to the value of HOST_ARCH, and the user can override it. + Currently only set for Win32. + + Sets the target architecture for Visual Studio compiler (i.e. the arch of the binaries generated by the compiler). If not set, default to @@ -6826,14 +6925,7 @@ and ia64 (Itanium). For example, if you want to compile 64-bit binaries, you would set TARGET_ARCH='x86_64' in your SCons environment. - - - The name of the target hardware architecture for the compiled objects - created by this Environment. - This defaults to the value of HOST_ARCH, and the user can override it. - Currently only set for Win32. - - + TARGET_OS diff --git a/doc/generated/variables.mod b/doc/generated/variables.mod index d1763192..9d834de5 100644 --- a/doc/generated/variables.mod +++ b/doc/generated/variables.mod @@ -60,28 +60,23 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. $DC"> $DCOM"> $DDEBUG"> -$_DDEBUGFLAGS"> $DDEBUGPREFIX"> $DDEBUGSUFFIX"> $DESCRIPTION"> $DESCRIPTION_lang"> $DFILESUFFIX"> $DFLAGPREFIX"> -$_DFLAGS"> $DFLAGS"> $DFLAGSUFFIX"> -$_DINCFLAGS"> $DINCPREFIX"> $DINCSUFFIX"> $Dir"> $Dirs"> $DLIB"> $DLIBCOM"> -$_DLIBDIRFLAGS"> $DLIBDIRPREFIX"> $DLIBDIRSUFFIX"> $DLIBFLAGPREFIX"> -$_DLIBFLAGS"> $DLIBFLAGSUFFIX"> $DLIBLINKPREFIX"> $DLIBLINKSUFFIX"> @@ -113,7 +108,6 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. $DOCBOOK_XSLTPROCPARAMS"> $DPATH"> $DSUFFIXES"> -$_DVERFLAGS"> $DVERPREFIX"> $DVERSIONS"> $DVERSUFFIX"> @@ -496,8 +490,8 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. $_SHLIBSONAME"> $SHLIBSUFFIX"> $SHLIBVERSION"> -$SHLIBVERSIONFLAGS"> $_SHLIBVERSIONFLAGS"> +$SHLIBVERSIONFLAGS"> $SHLINK"> $SHLINKCOM"> $SHLINKCOMSTR"> @@ -689,28 +683,23 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. $DC"> $DCOM"> $DDEBUG"> -$_DDEBUGFLAGS"> $DDEBUGPREFIX"> $DDEBUGSUFFIX"> $DESCRIPTION"> $DESCRIPTION_lang"> $DFILESUFFIX"> $DFLAGPREFIX"> -$_DFLAGS"> $DFLAGS"> $DFLAGSUFFIX"> -$_DINCFLAGS"> $DINCPREFIX"> $DINCSUFFIX"> $Dir"> $Dirs"> $DLIB"> $DLIBCOM"> -$_DLIBDIRFLAGS"> $DLIBDIRPREFIX"> $DLIBDIRSUFFIX"> $DLIBFLAGPREFIX"> -$_DLIBFLAGS"> $DLIBFLAGSUFFIX"> $DLIBLINKPREFIX"> $DLIBLINKSUFFIX"> @@ -742,7 +731,6 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. $DOCBOOK_XSLTPROCPARAMS"> $DPATH"> $DSUFFIXES"> -$_DVERFLAGS"> $DVERPREFIX"> $DVERSIONS"> $DVERSUFFIX"> @@ -1125,8 +1113,8 @@ THIS IS AN AUTOMATICALLY-GENERATED FILE. DO NOT EDIT. $_SHLIBSONAME"> $SHLIBSUFFIX"> $SHLIBVERSION"> -$SHLIBVERSIONFLAGS"> $_SHLIBVERSIONFLAGS"> +$SHLIBVERSIONFLAGS"> $SHLINK"> $SHLINKCOM"> $SHLINKCOMSTR"> -- cgit v1.2.1