Changeset 4304a5f


Ignore:
Timestamp:
07/17/2024 06:22:38 PM (3 months ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
12.2, gimp3, lazarus, trunk, xry111/for-12.3, xry111/spidermonkey128
Children:
cbfa153
Parents:
712aa3c
Message:

Add spaces after -D for several packages.

Files:
40 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/spirv-tools.xml

    r712aa3c r4304a5f  
    9696cd    build &amp;&amp;
    9797
    98 cmake -DCMAKE_INSTALL_PREFIX=/usr     \
    99       -DCMAKE_BUILD_TYPE=Release      \
    100       -DSPIRV_WERROR=OFF              \
    101       -DBUILD_SHARED_LIBS=ON          \
    102       -DSPIRV_TOOLS_BUILD_STATIC=OFF  \
    103       -DSPIRV-Headers_SOURCE_DIR=/usr \
     98cmake -D CMAKE_INSTALL_PREFIX=/usr     \
     99      -D CMAKE_BUILD_TYPE=Release      \
     100      -D SPIRV_WERROR=OFF              \
     101      -D BUILD_SHARED_LIBS=ON          \
     102      -D SPIRV_TOOLS_BUILD_STATIC=OFF  \
     103      -D SPIRV-Headers_SOURCE_DIR=/usr \
    104104      -G Ninja .. &amp;&amp;
    105105ninja</userinput></screen>
     
    121121
    122122    <para>
    123       <parameter>-DSPIRV_WERROR=OFF</parameter>: This switch stops the build
     123      <parameter>-D SPIRV_WERROR=OFF</parameter>: This switch stops the build
    124124      system from treating warnings as errors.
    125125    </para>
    126126
    127127    <para>
    128       <parameter>-DBUILD_SHARED_LIBS=ON</parameter>: This switch forces the
     128      <parameter>-D BUILD_SHARED_LIBS=ON</parameter>: This switch forces the
    129129      build system to install shared libraries instead of static libraries.
    130130    </para>
    131131   
    132132    <para>
    133       <parameter>-DSPIRV_TOOLS_BUILD_STATIC=OFF</parameter>: This switch
     133      <parameter>-D SPIRV_TOOLS_BUILD_STATIC=OFF</parameter>: This switch
    134134      disables building static versions of the libraries.
    135135    </para>
    136136
    137137    <para>
    138       <parameter>-DSPIRV-Headers_SOURCE_DIR</parameter>: This switch tells the
     138      <parameter>-D SPIRV-Headers_SOURCE_DIR</parameter>: This switch tells the
    139139      build system that <xref linkend="spirv-headers" role="nodep"/> is
    140140      installed in /usr. This is needed since the build system tries to use an
  • gnome/applications/evince.xml

    r712aa3c r4304a5f  
    125125meson setup --prefix=/usr          \
    126126            --buildtype=release    \
    127             -Dgtk_doc=false        \
     127            -D gtk_doc=false       \
    128128            --wrap-mode=nodownload \
    129             -Dsystemduserunitdir=no .. &amp;&amp;
     129            -D systemduserunitdir=no .. &amp;&amp;
    130130ninja</userinput></screen>
    131131
     
    136136meson setup --prefix=/usr          \
    137137            --buildtype=release    \
    138             -Dgtk_doc=false        \
     138            -D gtk_doc=false       \
    139139            --wrap-mode=nodownload \
    140140            ..                     &amp;&amp;
     
    147147
    148148<screen role='nodump'><userinput>sed "/docs_dir/s@\$@ / 'evince-&evince-version;'@" -i ../help/meson.build &amp;&amp;
    149 meson configure -Dgtk_doc=true                                &amp;&amp;
     149meson configure -D gtk_doc=true                               &amp;&amp;
    150150ninja</userinput></screen>
    151151
     
    180180      <parameter>--wrap-mode=nodownload</parameter>: This switch disables
    181181      fetching any dependency: the build system tries to fetch gi-docgen
    182       even if <parameter>-Dgtk_doc=false</parameter> is passed.
    183     </para>
    184 
    185     <para>
    186       <parameter>-Dgtk_doc=false</parameter>: &gi-doc-disable;
    187     </para>
    188 
    189     <para>
    190       <option>-Dgspell=false</option>: This switch turns off support
     182      even if <parameter>-D gtk_doc=false</parameter> is passed.
     183    </para>
     184
     185    <para>
     186      <parameter>-D gtk_doc=false</parameter>: &gi-doc-disable;
     187    </para>
     188
     189    <para>
     190      <option>-D gspell=false</option>: This switch turns off support
    191191      for the spell checking plugin.
    192192    </para>
    193193
    194194    <para>
    195       <option>-Dintrospection=false</option>: Use this option if you
     195      <option>-D introspection=false</option>: Use this option if you
    196196      don't have built <xref linkend='glib2'/> with GObject Introspection
    197197      and don't wish to have introspection support built into Evince.
     
    199199
    200200    <para>
    201       <option>-Dnautilus=false</option>: This switch disables building
     201      <option>-D nautilus=false</option>: This switch disables building
    202202      the <application>Nautilus</application> Plugin. Use this switch
    203203      if <application>Nautilus</application> is not installed.
     
    205205
    206206    <para>
    207       <option>-Dkeyring=false</option>: This switch disables the use of
     207      <option>-D keyring=false</option>: This switch disables the use of
    208208      <application>libsecret</application>. Use this switch
    209209      if <application>libsecret</application> is not installed.
     
    211211
    212212    <para>
    213       <option>-Dps=enabled</option>: Use this switch if
     213      <option>-D ps=enabled</option>: Use this switch if
    214214      <application>libspectre</application> is installed and you want to
    215215      view PostScript files with <application>Evince</application>.
  • gnome/applications/evolution.xml

    r712aa3c r4304a5f  
    134134cd    build &amp;&amp;
    135135
    136 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    137       -DSYSCONF_INSTALL_DIR=/etc  \
    138       -DENABLE_INSTALLED_TESTS=ON \
    139       -DENABLE_PST_IMPORT=OFF     \
    140       -DENABLE_YTNEF=OFF          \
    141       -DENABLE_CONTACT_MAPS=OFF   \
    142       -DENABLE_MARKDOWN=OFF       \
    143       -DENABLE_WEATHER=ON         \
     136cmake -D CMAKE_INSTALL_PREFIX=/usr \
     137      -D SYSCONF_INSTALL_DIR=/etc  \
     138      -D ENABLE_INSTALLED_TESTS=ON \
     139      -D ENABLE_PST_IMPORT=OFF     \
     140      -D ENABLE_YTNEF=OFF          \
     141      -D ENABLE_CONTACT_MAPS=OFF   \
     142      -D ENABLE_MARKDOWN=OFF       \
     143      -D ENABLE_WEATHER=ON         \
    144144      -G Ninja .. &amp;&amp;
    145145ninja</userinput></screen>
     
    161161
    162162    <para>
    163       <parameter>-DENABLE_YTNEF=OFF</parameter>: This switch is used to
     163      <parameter>-D ENABLE_YTNEF=OFF</parameter>: This switch is used to
    164164      disable the yTNEF library usage because
    165165      <application>libytnef</application> is not part of BLFS.
     
    167167
    168168    <para>
    169       <parameter>-DENABLE_PST_IMPORT=OFF</parameter>: This switch is
     169      <parameter>-D ENABLE_PST_IMPORT=OFF</parameter>: This switch is
    170170      used to disable the pst-import plugin because
    171171      <application>libpst</application> is not part of BLFS.
     
    173173
    174174    <para>
    175       <parameter>-DENABLE_CONTACT_MAPS=OFF</parameter>: This switch disables
     175      <parameter>-D ENABLE_CONTACT_MAPS=OFF</parameter>: This switch disables
    176176      building the Contact Maps plugin. Remove this switch if you have installed
    177177      the necessary dependencies and wish to build the Contact Maps plugin.
     
    179179
    180180    <para>
    181       <parameter>-DENABLE_MARKDOWN=OFF</parameter>: This switch allows
     181      <parameter>-D ENABLE_MARKDOWN=OFF</parameter>: This switch allows
    182182      building without
    183183      <ulink url="https://github.com/commonmark/cmark">cmark</ulink>.
     
    187187
    188188    <para>
    189       <parameter>-DENABLE_WEATHER=ON</parameter>: This switch allows
     189      <parameter>-D ENABLE_WEATHER=ON</parameter>: This switch allows
    190190      building against <xref linkend="libgweather"/>.
    191191    </para>
    192192
    193193    <para>
    194       <option>-DWITH_HELP=OFF</option>: This switch disables building the
     194      <option>-D WITH_HELP=OFF</option>: This switch disables building the
    195195      manual of this package.  Use this switch if you have not installed
    196196      <xref linkend='itstool'/>.
     
    198198
    199199    <para>
    200       <option>-DWITH_OPENLDAP=OFF</option>: Use this switch if you
     200      <option>-D WITH_OPENLDAP=OFF</option>: Use this switch if you
    201201      have not installed <xref linkend='openldap'/>.
    202202    </para>
  • gnome/applications/gnome-terminal.xml

    r712aa3c r4304a5f  
    147147
    148148    <para>
    149       <option>-Dsearch_provider=false</option>: This switch disables
     149      <option>-D search_provider=false</option>: This switch disables
    150150      the <quote>search <application>gnome-shell</application></quote>
    151151      provider. Use this option if you do not have gnome-shell installed.
     
    153153
    154154    <para>
    155       <option>-Dnautilus_extension=false</option>: This switch disables
     155      <option>-D nautilus_extension=false</option>: This switch disables
    156156      a dependency on the <application>nautilus</application> file
    157157      manager. Use this option if you do not have Nautilus installed.
  • gnome/platform/dconf.xml

    r712aa3c r4304a5f  
    163163cd    build &amp;&amp;
    164164
    165 meson setup --prefix=/usr           \
    166             --buildtype=release     \
    167             -Dbash_completion=false \
     165meson setup --prefix=/usr            \
     166            --buildtype=release      \
     167            -D bash_completion=false \
    168168            ..                      &amp;&amp;
    169169ninja</userinput></screen>
     
    208208
    209209    <para>
    210       <option>-Dgtk_doc=true</option>: Use this parameter if
     210      <option>-D gtk_doc=true</option>: Use this parameter if
    211211      <application>GTK-Doc</application> is installed and you wish to rebuild
    212212      and install the API documentation.
  • gnome/platform/evolution-data-server.xml

    r712aa3c r4304a5f  
    132132cd    build &amp;&amp;
    133133
    134 cmake -DCMAKE_INSTALL_PREFIX=/usr    \
    135       -DSYSCONF_INSTALL_DIR=/etc     \
    136       -DENABLE_VALA_BINDINGS=ON      \
    137       -DENABLE_INSTALLED_TESTS=ON    \
    138       -DWITH_OPENLDAP=OFF            \
    139       -DWITH_KRB5=OFF                \
    140       -DENABLE_INTROSPECTION=ON      \
    141       -DENABLE_GTK_DOC=OFF           \
    142       -DWITH_LIBDB=OFF               \
    143       -DWITH_SYSTEMDUSERUNITDIR=no   \
    144       -Wno-dev -G Ninja ..           &amp;&amp;
     134cmake -D CMAKE_INSTALL_PREFIX=/usr    \
     135      -D SYSCONF_INSTALL_DIR=/etc     \
     136      -D ENABLE_VALA_BINDINGS=ON      \
     137      -D ENABLE_INSTALLED_TESTS=ON    \
     138      -D WITH_OPENLDAP=OFF            \
     139      -D WITH_KRB5=OFF                \
     140      -D ENABLE_INTROSPECTION=ON      \
     141      -D ENABLE_GTK_DOC=OFF           \
     142      -D WITH_LIBDB=OFF               \
     143      -D WITH_SYSTEMDUSERUNITDIR=no   \
     144      -W no-dev -G Ninja ..           &amp;&amp;
    145145ninja</userinput></screen>
    146146
     
    148148cd    build &amp;&amp;
    149149
    150 cmake -DCMAKE_INSTALL_PREFIX=/usr    \
    151       -DSYSCONF_INSTALL_DIR=/etc     \
    152       -DENABLE_VALA_BINDINGS=ON      \
    153       -DENABLE_INSTALLED_TESTS=ON    \
    154       -DWITH_OPENLDAP=OFF            \
    155       -DWITH_KRB5=OFF                \
    156       -DENABLE_INTROSPECTION=ON      \
    157       -DENABLE_GTK_DOC=OFF           \
    158       -DWITH_LIBDB=OFF               \
    159       -Wno-dev -G Ninja ..           &amp;&amp;
     150cmake -D CMAKE_INSTALL_PREFIX=/usr    \
     151      -D SYSCONF_INSTALL_DIR=/etc     \
     152      -D ENABLE_VALA_BINDINGS=ON      \
     153      -D ENABLE_INSTALLED_TESTS=ON    \
     154      -D WITH_OPENLDAP=OFF            \
     155      -D WITH_KRB5=OFF                \
     156      -D ENABLE_INTROSPECTION=ON      \
     157      -D ENABLE_GTK_DOC=OFF           \
     158      -D WITH_LIBDB=OFF               \
     159      -W no-dev -G Ninja ..           &amp;&amp;
    160160ninja</userinput></screen>
    161161
     
    180180
    181181    <para>
    182       <parameter>-DENABLE_VALA_BINDINGS=ON</parameter>: This switch
     182      <parameter>-D ENABLE_VALA_BINDINGS=ON</parameter>: This switch
    183183      enables building the Vala bindings. Remove it if you don't
    184184      have <xref linkend="vala"/> installed.
     
    186186
    187187    <para>
    188       <parameter>-DENABLE_GTK_DOC=OFF</parameter>: This switch
     188      <parameter>-D ENABLE_GTK_DOC=OFF</parameter>: This switch
    189189      disables building the API documentation. It is broken for
    190190      this package due to the use of a long deprecated gtk-doc program
     
    193193
    194194    <para>
    195       <parameter>-DWITH_LIBDB=OFF</parameter>: This switch allows building
     195      <parameter>-D WITH_LIBDB=OFF</parameter>: This switch allows building
    196196      this package without &berkeley-db;.  <!--This package only uses
    197197      &berkeley-db; to import data from very outdated releases.-->
     
    200200
    201201    <para>
    202       <option>-DENABLE_OAUTH2_WEBKITGTK4=OFF</option>: Use this switch if
     202      <option>-D ENABLE_OAUTH2_WEBKITGTK4=OFF</option>: Use this switch if
    203203      you did not build <xref linkend="webkitgtk" role="nodep"/> with GTK-4.
    204204    </para>
    205205
    206206    <para revision="sysv">
    207       <parameter>-DWITH_SYSTEMDUSERUNITDIR=no</parameter>: This switch
     207      <parameter>-D WITH_SYSTEMDUSERUNITDIR=no</parameter>: This switch
    208208      disables installing the systemd units, which are not used for a Sysv
    209209      build.
  • introduction/important/building-notes.xml

    r712aa3c r4304a5f  
    758758        <para>
    759759          The packages using the meson build system can accept
    760           <parameter>-Dstrip=true</parameter> when running
     760          <parameter>-D strip=true</parameter> when running
    761761          <command>meson</command>.  If you've forgot to add this option
    762762          running the <command>meson</command>, you can also run
     
    927927      example).  But one thing which has now come to light is that
    928928      programmers might include debug assertions in their code, expecting
    929       them to be disabled in releases by using <option>-DNDEBUG</option>.
     929      them to be disabled in releases by using <option>-D NDEBUG</option>.
    930930      Specifically, if <xref linkend="mesa"/> is built with these
    931931      assertions enabled, some activities such as loading levels of games
     
    994994        <envar>CFLAGS</envar> or <envar>CXXFLAGS</envar> in the environment
    995995        will be used. If the programmer has coded any debug assertions,
    996         those will be enabled unless -DNDEBUG is used. The following
     996        those will be enabled unless -D NDEBUG is used. The following
    997997        CMAKE_BUILD_TYPE values will generate the flags shown, and these
    998998        will come <emphasis>after</emphasis> any flags in the environment
     
    10121012            </row>
    10131013            <row>
    1014               <entry>Release</entry><entry><option>-O3 -DNDEBUG</option></entry>
     1014              <entry>Release</entry><entry><option>-O3 -D NDEBUG</option></entry>
    10151015            </row>
    10161016            <row>
    1017               <entry>RelWithDebInfo</entry><entry><option>-O2 -g -DNDEBUG</option></entry>
     1017              <entry>RelWithDebInfo</entry><entry><option>-O2 -g -D NDEBUG</option></entry>
    10181018            </row>
    10191019            <row>
    1020               <entry>MinSizeRel</entry><entry><option>-Os -DNDEBUG</option></entry>
     1020              <entry>MinSizeRel</entry><entry><option>-Os -D NDEBUG</option></entry>
    10211021            </row>
    10221022          </tbody>
     
    10591059      </para>
    10601060
    1061 <screen><userinput>meson configure -D&lt;some_option&gt;=true</userinput></screen>
     1061<screen><userinput>meson configure -D &lt;some_option&gt;=true</userinput></screen>
    10621062
    10631063      <para>
     
    11021102           so we mistakenly believed if-release had been the default.  -->
    11031103      <para>
    1104         The <option>-DNDEBUG</option> flag is implied by the release
     1104        The <option>-D NDEBUG</option> flag is implied by the release
    11051105        buildtype for some packages (for example <xref linkend='mesa'/>).
    11061106        It can also be provided explicitly by passing
    1107         <option>-Db_ndebug=true</option>.
     1107        <option>-D b_ndebug=true</option>.
    11081108      </para>
    11091109
     
    13201320        discussion in the 'tuning' link above (occasionally, one or more
    13211321        of these options might be inappropriate for a package). These
    1322         options are <option>-D_FORTIFY_SOURCE=2</option>
    1323         (or <option>-D_FORTIFY_SOURCE=3</option> which is more secure but
     1322        options are <option>-D _FORTIFY_SOURCE=2</option>
     1323        (or <option>-D _FORTIFY_SOURCE=3</option> which is more secure but
    13241324        with a larger performance overhead) and
    1325         (for C++) <option>-D_GLIBCXX_ASSERTIONS</option>. On modern
     1325        (for C++) <option>-D _GLIBCXX_ASSERTIONS</option>. On modern
    13261326        machines these should only have a little impact on how fast things
    13271327        run, and often they will not be noticeable.
  • kde/extra-cmake-modules.xml

    r712aa3c r4304a5f  
    103103cd    build &amp;&amp;
    104104
    105 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &amp;&amp;
     105cmake -D CMAKE_INSTALL_PREFIX=/usr .. &amp;&amp;
    106106make</userinput></screen>
    107107
  • kde/kf5-apps/add-pkgs.xml

    r712aa3c r4304a5f  
    7272cd    build &amp;&amp;
    7373
    74 cmake -DCMAKE_INSTALL_PREFIX=$KF6_PREFIX \
    75       -DCMAKE_BUILD_TYPE=Release         \
    76       -DBUILD_TESTING=OFF                \
    77       -Wno-dev .. &amp;&amp;
     74cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
     75      -D CMAKE_BUILD_TYPE=Release         \
     76      -D BUILD_TESTING=OFF                \
     77      -W no-dev .. &amp;&amp;
    7878make</userinput></screen>
    7979
  • kde/kf5-apps/k3b.xml

    r712aa3c r4304a5f  
    149149cd    build &amp;&amp;
    150150
    151 cmake -DCMAKE_INSTALL_PREFIX=$KF6_PREFIX \
    152       -DCMAKE_BUILD_TYPE=Release         \
    153       -DBUILD_TESTING=OFF                \
    154       -Wno-dev ..                        &amp;&amp;
     151cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
     152      -D CMAKE_BUILD_TYPE=Release         \
     153      -D BUILD_TESTING=OFF                \
     154      -W no-dev ..                        &amp;&amp;
    155155make</userinput></screen>
    156156
  • kde/kf5-apps/kio-extras.xml

    r712aa3c r4304a5f  
    102102cd    build &amp;&amp;
    103103
    104 cmake -DCMAKE_INSTALL_PREFIX=$KF5_PREFIX \
    105       -DCMAKE_BUILD_TYPE=Release         \
    106       -DBUILD_TESTING=OFF                \
    107       -Wno-dev .. &amp;&amp;
     104cmake -D CMAKE_INSTALL_PREFIX=$KF5_PREFIX \
     105      -D CMAKE_BUILD_TYPE=Release         \
     106      -D BUILD_TESTING=OFF                \
     107      -W no-dev .. &amp;&amp;
    108108make</userinput></screen>
    109109
  • kde/kf5-apps/kmix5.xml

    r712aa3c r4304a5f  
    9898cd    build &amp;&amp;
    9999
    100 cmake -DCMAKE_INSTALL_PREFIX=$KF6_PREFIX \
    101       -DCMAKE_BUILD_TYPE=Release         \
    102       -DBUILD_TESTING=OFF                \
    103       -Wno-dev .. &amp;&amp;
     100cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
     101      -D CMAKE_BUILD_TYPE=Release         \
     102      -D BUILD_TESTING=OFF                \
     103      -W no-dev .. &amp;&amp;
    104104make</userinput></screen>
    105105
  • kde/kf5-apps/libkcddb.xml

    r712aa3c r4304a5f  
    9292cd    build &amp;&amp;
    9393
    94 cmake -DCMAKE_INSTALL_PREFIX=$KF6_PREFIX \
    95       -DCMAKE_BUILD_TYPE=Release         \
    96       -DBUILD_TESTING=OFF                \
    97       -DQT_MAJOR_VERSION=6               \
    98       -Wno-dev ..                        &amp;&amp;
     94cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
     95      -D CMAKE_BUILD_TYPE=Release         \
     96      -D BUILD_TESTING=OFF                \
     97      -D QT_MAJOR_VERSION=6               \
     98      -W no-dev ..                        &amp;&amp;
    9999make</userinput></screen>
    100100
  • kde/kf6/kf6-frameworks.xml

    r712aa3c r4304a5f  
    416416
    417417    <para>
    418       <parameter>-DCMAKE_PREFIX_PATH=$QT6DIR</parameter>: This switch is used
     418      <parameter>-D CMAKE_PREFIX_PATH=$QT6DIR</parameter>: This switch is used
    419419      to allow cmake to find the proper Qt libraries.
    420420    </para>
    421421
    422422    <para>
    423       <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used
     423      <parameter>-D CMAKE_BUILD_TYPE=Release</parameter>: This switch is used
    424424      to apply higher level of the compiler optimizations.
    425425    </para>
    426426
    427427    <para>
    428       <parameter>-DBUILD_TESTING=OFF</parameter>: This switch is used to prevent
     428      <parameter>-D BUILD_TESTING=OFF</parameter>: This switch is used to prevent
    429429      building test programs and libraries that are of no use to an end user.
    430430    </para>
  • kde/phonon-backend-vlc.xml

    r712aa3c r4304a5f  
    8989cd    build &amp;&amp;
    9090
    91 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    92       -DCMAKE_BUILD_TYPE=Release  \
    93       -DPHONON_BUILD_QT5=OFF      \
     91cmake -D CMAKE_INSTALL_PREFIX=/usr \
     92      -D CMAKE_BUILD_TYPE=Release  \
     93      -D PHONON_BUILD_QT5=OFF      \
    9494      .. &amp;&amp;
    9595make</userinput></screen>
     
    107107
    108108    <para>
    109       <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is
     109      <parameter>-D CMAKE_BUILD_TYPE=Release</parameter>: This switch is
    110110      used to apply higher level of compiler optimizations.
    111111    </para>
  • kde/phonon.xml

    r712aa3c r4304a5f  
    102102cd    build &amp;&amp;
    103103
    104 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    105       -DCMAKE_BUILD_TYPE=Release  \
    106       -DPHONON_BUILD_QT5=OFF      \
    107       -Wno-dev .. &amp;&amp;
     104cmake -D CMAKE_INSTALL_PREFIX=/usr \
     105      -D CMAKE_BUILD_TYPE=Release  \
     106      -D PHONON_BUILD_QT5=OFF      \
     107      -W no-dev .. &amp;&amp;
    108108make</userinput></screen>
    109109
     
    120120
    121121    <para>
    122       <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used
     122      <parameter>-D CMAKE_BUILD_TYPE=Release</parameter>: This switch is used
    123123      to apply higher level of the compiler optimizations.
    124124    </para>
    125125
    126126    <para>
    127       <parameter>-DPHONON_BUILD_QT5=OFF</parameter>: By default both the
     127      <parameter>-D PHONON_BUILD_QT5=OFF</parameter>: By default both the
    128128      Qt5 and Qt6 versions of this package are built.  We currently just
    129129      want the Qt6 version, since nothing in BLFS uses the Qt5 version.
     
    131131<!--
    132132    <para>
    133       <parameter>-DPHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=FALSE</parameter>:
     133      <parameter>-D PHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT=FALSE</parameter>:
    134134      This switch ensures that the plugins and mkspecs files get installed in
    135135      the correct location.
     
    137137
    138138    <para>
    139      <parameter>-DPHONON_BUILD_PHONON4QT5=ON</parameter>: This switch is used to
     139     <parameter>-D PHONON_BUILD_PHONON4QT5=ON</parameter>: This switch is used to
    140140     ensure that Qt5 version of the library is built even if Qt4 is present.
    141141    </para>
  • kde/plasma-wayland-protocols.xml

    r712aa3c r4304a5f  
    8787cd    build &amp;&amp;
    8888
    89 cmake -DCMAKE_INSTALL_PREFIX=/usr ..</userinput></screen>
     89cmake -D CMAKE_INSTALL_PREFIX=/usr ..</userinput></screen>
    9090
    9191    <para>
  • kde/polkit-qt.xml

    r712aa3c r4304a5f  
    8989cd    build &amp;&amp;
    9090
    91 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    92       -DCMAKE_BUILD_TYPE=Release  \
    93       -DQT_MAJOR_VERSION=6        \
    94       -Wno-dev .. &amp;&amp;
     91cmake -D CMAKE_INSTALL_PREFIX=/usr \
     92      -D CMAKE_BUILD_TYPE=Release  \
     93      -D QT_MAJOR_VERSION=6        \
     94      -W no-dev .. &amp;&amp;
    9595make</userinput></screen>
    9696
     
    111111
    112112    <para>
    113       <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used
     113      <parameter>-D CMAKE_BUILD_TYPE=Release</parameter>: This switch is used
    114114      to apply higher level of the compiler optimizations.
    115115    </para>
  • lxqt/apps/lxqt-notificationd.xml

    r712aa3c r4304a5f  
    108108
    109109    <para>
    110       <parameter>-DPULL_TRANSLATIONS=no</parameter>: Removes the need for
     110      <parameter>-D PULL_TRANSLATIONS=no</parameter>: Removes the need for
    111111      <xref linkend="git"/>, which would otherwise be requested to download
    112112      the translation files.
  • lxqt/apps/qtermwidget.xml

    r712aa3c r4304a5f  
    113113
    114114    <para>
    115       <option>-DBUILD_TEST=true</option>: Builds test application.
     115      <option>-D BUILD_TEST=true</option>: Builds test application.
    116116    </para>
    117117
  • lxqt/desktop/libqtxdg.xml

    r712aa3c r4304a5f  
    121121
    122122    <para>
    123       <option>-DBUILD_TESTS=ON</option>: Use this option if you wish to build
     123      <option>-D BUILD_TESTS=ON</option>: Use this option if you wish to build
    124124      tests. If you pass this option, you can run the tests by executing:
    125125      <command>make test</command>.
     
    127127
    128128    <para>
    129       <option>-DBUILD_DEV_UTILS=ON</option>: Use this switch if you wish to
     129      <option>-D BUILD_DEV_UTILS=ON</option>: Use this switch if you wish to
    130130      build and install the development utilities.
    131131    </para>
  • lxqt/desktop/muparser.xml

    r712aa3c r4304a5f  
    8686cd       build &amp;&amp;
    8787
    88 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    89       -DCMAKE_BUILD_TYPE=Release  \
    90       ..                          &amp;&amp;
     88cmake -D CMAKE_INSTALL_PREFIX=/usr \
     89      -D CMAKE_BUILD_TYPE=Release  \
     90      ..                           &amp;&amp;
    9191make</userinput></screen>
    9292
  • networking/netlibs/c-ares.xml

    r712aa3c r4304a5f  
    8787cd    build &amp;&amp;
    8888
    89 cmake  -DCMAKE_INSTALL_PREFIX=/usr .. &amp;&amp;
     89cmake  -D CMAKE_INSTALL_PREFIX=/usr .. &amp;&amp;
    9090make</userinput></screen>
    9191
  • networking/netlibs/kdsoap.xml

    r712aa3c r4304a5f  
    8989cd    build &amp;&amp;
    9090
    91 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    92       -DCMAKE_BUILD_TYPE=Release  \
    93       -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/kdsoap-&kdsoap-version; \
     91cmake -D CMAKE_INSTALL_PREFIX=/usr \
     92      -D CMAKE_BUILD_TYPE=Release  \
     93      -D CMAKE_INSTALL_DOCDIR=/usr/share/doc/kdsoap-&kdsoap-version; \
    9494      .. &amp;&amp;
    9595make</userinput></screen>
  • networking/netutils/wireshark.xml

    r712aa3c r4304a5f  
    202202cd    build &amp;&amp;
    203203
    204 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    205       -DCMAKE_BUILD_TYPE=Release  \
    206       -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/wireshark-&wireshark-version; \
     204cmake -D CMAKE_INSTALL_PREFIX=/usr \
     205      -D CMAKE_BUILD_TYPE=Release  \
     206      -D CMAKE_INSTALL_DOCDIR=/usr/share/doc/wireshark-&wireshark-version; \
    207207      -G Ninja \
    208208      .. &amp;&amp;
     
    269269
    270270      <para>
    271         <option>-DUSE_qt6=OFF</option>: Use this switch if
     271        <option>-D USE_qt6=OFF</option>: Use this switch if
    272272        <xref linkend="qt6"/> is not available. You'll need
    273273        <xref linkend="qt5"/> or at least <xref linkend="qt5-components"/>
  • postlfs/filesystems/mdadm.xml

    r712aa3c r4304a5f  
    7474      An <xref linkend="server-mail"/>
    7575    </para>
    76     <!-- Contains -DSendmail=/usr/sbin/sendmail in the build procedure -->
     76    <!-- Contains -D Sendmail=/usr/sbin/sendmail in the build procedure -->
    7777
    7878<!-- I don't think we need this any more... We are now at kernel 6.7.8. - bdubbs
  • server/databases/mariadb.xml

    r712aa3c r4304a5f  
    162162cd    build &amp;&amp;
    163163
    164 cmake -DCMAKE_BUILD_TYPE=Release                       \
    165       -DCMAKE_INSTALL_PREFIX=/usr                      \
    166       -DGRN_LOG_PATH=/var/log/groonga.log              \
    167       -DINSTALL_DOCDIR=share/doc/mariadb-&mariadb-version;       \
    168       -DINSTALL_DOCREADMEDIR=share/doc/mariadb-&mariadb-version; \
    169       -DINSTALL_MANDIR=share/man                       \
    170       -DINSTALL_MYSQLSHAREDIR=share/mysql              \
    171       -DINSTALL_MYSQLTESTDIR=share/mysql/test          \
    172       -DINSTALL_PAMDIR=lib/security                    \
    173       -DINSTALL_PAMDATADIR=/etc/security               \
    174       -DINSTALL_PLUGINDIR=lib/mysql/plugin             \
    175       -DINSTALL_SBINDIR=sbin                           \
    176       -DINSTALL_SCRIPTDIR=bin                          \
    177       -DINSTALL_SQLBENCHDIR=share/mysql/bench          \
    178       -DINSTALL_SUPPORTFILESDIR=share/mysql            \
    179       -DMYSQL_DATADIR=/srv/mysql                       \
    180       -DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock        \
    181       -DWITH_EXTRA_CHARSETS=complex                    \
    182       -DWITH_EMBEDDED_SERVER=ON                        \
    183       -DSKIP_TESTS=ON                                  \
    184       -DTOKUDB_OK=0                                    \
     164cmake -D CMAKE_BUILD_TYPE=Release                       \
     165      -D CMAKE_INSTALL_PREFIX=/usr                      \
     166      -D GRN_LOG_PATH=/var/log/groonga.log              \
     167      -D INSTALL_DOCDIR=share/doc/mariadb-&mariadb-version;       \
     168      -D INSTALL_DOCREADMEDIR=share/doc/mariadb-&mariadb-version; \
     169      -D INSTALL_MANDIR=share/man                       \
     170      -D INSTALL_MYSQLSHAREDIR=share/mysql              \
     171      -D INSTALL_MYSQLTESTDIR=share/mysql/test          \
     172      -D INSTALL_PAMDIR=lib/security                    \
     173      -D INSTALL_PAMDATADIR=/etc/security               \
     174      -D INSTALL_PLUGINDIR=lib/mysql/plugin             \
     175      -D INSTALL_SBINDIR=sbin                           \
     176      -D INSTALL_SCRIPTDIR=bin                          \
     177      -D INSTALL_SQLBENCHDIR=share/mysql/bench          \
     178      -D INSTALL_SUPPORTFILESDIR=share/mysql            \
     179      -D MYSQL_DATADIR=/srv/mysql                       \
     180      -D MYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock        \
     181      -D WITH_EXTRA_CHARSETS=complex                    \
     182      -D WITH_EMBEDDED_SERVER=ON                        \
     183      -D SKIP_TESTS=ON                                  \
     184      -D TOKUDB_OK=0                                    \
    185185      .. &amp;&amp;
    186186make</userinput></screen>
     
    225225
    226226    <para>
    227       <parameter>-DWITH_EMBEDDED_SERVER=ON</parameter>: This switch enables
     227      <parameter>-D WITH_EMBEDDED_SERVER=ON</parameter>: This switch enables
    228228      compiling the embedded server library needed by certain applications,
    229229      such as <application>Amarok</application>.
     
    231231
    232232    <para>
    233       <parameter>-DWITH_EXTRA_CHARSETS=complex</parameter>: This switch enables
     233      <parameter>-D WITH_EXTRA_CHARSETS=complex</parameter>: This switch enables
    234234      support for the complex character sets.
    235235    </para>
    236236
    237237    <para>
    238       <parameter>-DSKIP_TESTS=ON</parameter>: This switch disables
     238      <parameter>-D SKIP_TESTS=ON</parameter>: This switch disables
    239239      tests for MariaDB Connector/C which are not supported without
    240240      additional setup.
     
    242242
    243243    <para>
    244       <option>-DWITHOUT_SERVER=ON</option>: Use this
     244      <option>-D WITHOUT_SERVER=ON</option>: Use this
    245245      switch if you don't want the server and would like to build the client
    246246      only.
  • server/databases/sqlite.xml

    r712aa3c r4304a5f  
    126126            --disable-static  \
    127127            --enable-fts{4,5} \
    128             CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1 \
    129                       -DSQLITE_ENABLE_UNLOCK_NOTIFY=1   \
    130                       -DSQLITE_ENABLE_DBSTAT_VTAB=1     \
    131                       -DSQLITE_SECURE_DELETE=1"         &amp;&amp;
     128            CPPFLAGS="-D SQLITE_ENABLE_COLUMN_METADATA=1 \
     129                      -D SQLITE_ENABLE_UNLOCK_NOTIFY=1   \
     130                      -D SQLITE_ENABLE_DBSTAT_VTAB=1     \
     131                      -D SQLITE_SECURE_DELETE=1"         &amp;&amp;
    132132make</userinput></screen>
    133133
     
    166166
    167167    <para>
    168       <parameter>CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1 ... </parameter>:
     168      <parameter>CPPFLAGS="-D SQLITE_ENABLE_COLUMN_METADATA=1 ... </parameter>:
    169169      Some applications require these options to be turned on.
    170170      The only way to do this is to include them in
  • server/mail/postfix.xml

    r712aa3c r4304a5f  
    162162      <note>
    163163        <para>
    164           For all variants of the CCARGS you should ensure that -DNO_NIS is
     164          For all variants of the CCARGS you should ensure that '-D NO_NIS' is
    165165          specified so that the build does not attempt to access an rpcsvc
    166166          header which do not exist in BLFS.  If &berkeley-db; is
    167           not installed, -DNO_DB needs to be specified as well.
     167          not installed, '-D NO_DB' needs to be specified as well.
    168168        </para>
    169169      </note>
     
    178178      </para>
    179179
    180 <screen><userinput>CCARGS="-DNO_NIS -DNO_DB"
     180<screen><userinput>CCARGS="-D NO_NIS -D NO_DB"
    181181AUXLIBS=""</userinput></screen>
    182182
     
    199199
    200200<screen><userinput>if [ -r /usr/lib/libsasl2.so ]; then
    201   CCARGS="$CCARGS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl"
     201  CCARGS="$CCARGS -D USE_SASL_AUTH -D USE_CYRUS_SASL -I/usr/include/sasl"
    202202  AUXLIBS="$AUXLIBS -lsasl2"
    203203fi</userinput></screen>
     
    212212
    213213<screen><userinput>if [ -r /usr/lib/liblmdb.so ]; then
    214   CCARGS="$CCARGS -DHAS_LMDB"
     214  CCARGS="$CCARGS -D HAS_LMDB"
    215215  AUXLIBS="$AUXLIBS -llmdb"
    216216fi</userinput></screen>
     
    226226
    227227<screen><userinput>if [ -r /usr/lib/libldap.so -a -r /usr/lib/liblber.so ]; then
    228   CCARGS="$CCARGS -DHAS_LDAP"
     228  CCARGS="$CCARGS -D HAS_LDAP"
    229229  AUXLIBS="$AUXLIBS -lldap -llber"
    230230fi</userinput></screen>
     
    241241
    242242<screen><userinput>if [ -r /usr/lib/libsqlite3.so ]; then
    243   CCARGS="$CCARGS -DHAS_SQLITE"
     243  CCARGS="$CCARGS -D HAS_SQLITE"
    244244  AUXLIBS="$AUXLIBS -lsqlite3 -lpthread"
    245245fi</userinput></screen>
     
    256256
    257257<screen><userinput>if [ -r /usr/lib/libmysqlclient.so ]; then
    258   CCARGS="$CCARGS -DHAS_MYSQL -I/usr/include/mysql"
     258  CCARGS="$CCARGS -D HAS_MYSQL -I/usr/include/mysql"
    259259  AUXLIBS="$AUXLIBS -lmysqlclient -lz -lm"
    260260fi</userinput></screen>
     
    271271
    272272<screen><userinput>if [ -r /usr/lib/libpq.so ]; then
    273   CCARGS="$CCARGS -DHAS_PGSQL -I/usr/include/postgresql"
     273  CCARGS="$CCARGS -D HAS_PGSQL -I/usr/include/postgresql"
    274274  AUXLIBS="$AUXLIBS -lpq -lz -lm"
    275275fi</userinput></screen>
     
    287287
    288288<screen><literal>if [ -r <replaceable>&lt;/path/to/CDB&gt;</replaceable>/libcdb.a ]; then
    289   CCARGS="$CCARGS -DHAS_CDB"
     289  CCARGS="$CCARGS -D HAS_CDB"
    290290  AUXLIBS="$AUXLIBS <replaceable>&lt;/path/to/CDB&gt;</replaceable>/libcdb.a"
    291291fi</literal></screen>
     
    302302
    303303<screen><userinput>if [ -r /usr/lib/libssl.so -a -r /usr/lib/libcrypto.so ]; then
    304   CCARGS="$CCARGS -DUSE_TLS -I/usr/include/openssl/"
     304  CCARGS="$CCARGS -D USE_TLS -I/usr/include/openssl/"
    305305  AUXLIBS="$AUXLIBS -lssl -lcrypto"
    306306fi</userinput></screen>
     
    369369
    370370    <para>
    371       <option>CCARGS="-DNO_EAI ..."</option>: this will turn off SMTPUTF8
     371      <option>CCARGS="-D NO_EAI ..."</option>: this will turn off SMTPUTF8
    372372      support, for example  if the rest of your email address infrastructure
    373373      cannot handle UTF-8 email addresses and message header values.
  • x/dm/sddm.xml

    r712aa3c r4304a5f  
    134134cd    build &amp;&amp;
    135135
    136 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    137       -DCMAKE_BUILD_TYPE=Release  \
    138       -DENABLE_JOURNALD=OFF       \
    139       -DNO_SYSTEMD=ON             \
    140       -DRUNTIME_DIR=/run/sddm     \
    141       -DUSE_ELOGIND=ON            \
    142       -DBUILD_MAN_PAGES=ON        \
    143       -DDATA_INSTALL_DIR=/usr/share/sddm \
    144       -DDBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf \
     136cmake -D CMAKE_INSTALL_PREFIX=/usr \
     137      -D CMAKE_BUILD_TYPE=Release  \
     138      -D ENABLE_JOURNALD=OFF       \
     139      -D NO_SYSTEMD=ON             \
     140      -D RUNTIME_DIR=/run/sddm     \
     141      -D USE_ELOGIND=ON            \
     142      -D BUILD_MAN_PAGES=ON        \
     143      -D DATA_INSTALL_DIR=/usr/share/sddm \
     144      -D DBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf \
    145145      .. &amp;&amp;
    146146make</userinput></screen>
     
    149149cd    build &amp;&amp;
    150150
    151 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    152       -DCMAKE_BUILD_TYPE=Release  \
    153       -DRUNTIME_DIR=/run/sddm     \
    154       -DBUILD_MAN_PAGES=ON        \
    155       -DDATA_INSTALL_DIR=/usr/share/sddm \
    156       -DDBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf \
     151cmake -D CMAKE_INSTALL_PREFIX=/usr \
     152      -D CMAKE_BUILD_TYPE=Release  \
     153      -D RUNTIME_DIR=/run/sddm     \
     154      -D BUILD_MAN_PAGES=ON        \
     155      -D DATA_INSTALL_DIR=/usr/share/sddm \
     156      -D DBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf \
    157157      .. &amp;&amp;
    158158make</userinput></screen>
     
    176176
    177177    <para>
    178       <parameter>-DCMAKE_BUILD_TYPE=Release</parameter>: This switch is used to
     178      <parameter>-D CMAKE_BUILD_TYPE=Release</parameter>: This switch is used to
    179179      apply additional compiler optimizations.
    180180    </para>
    181181
    182182    <para revision="sysv">
    183       <parameter>-DENABLE_JOURNALD=OFF</parameter> and
    184       <parameter>-DNO_SYSTEMD=ON</parameter>: These switchs are used because
     183      <parameter>-D ENABLE_JOURNALD=OFF</parameter> and
     184      <parameter>-D NO_SYSTEMD=ON</parameter>: These switchs are used because
    185185      this version of BLFS does not support <application>systemd</application>.
    186186    </para>
    187187
    188188    <para>
    189       <parameter>-DDBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf</parameter>:
     189      <parameter>-D DBUS_CONFIG_FILENAME=sddm_org.freedesktop.DisplayManager.conf</parameter>:
    190190      This switch prevents the file <filename>
    191191      /etc/dbus-1/system.d/org.freedesktop.DisplayManager.conf</filename> from
     
    194194
    195195    <para>
    196       <parameter>-DBUILD_MAN_PAGES=ON</parameter>: This switch is used to build
     196      <parameter>-D BUILD_MAN_PAGES=ON</parameter>: This switch is used to build
    197197      and install man pages.
    198198    </para>
  • x/icons/breeze-icons.xml

    r712aa3c r4304a5f  
    9696cd    build &amp;&amp;
    9797
    98 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    99       -DBUILD_TESTING=OFF         \
    100       -Wno-dev ..</userinput></screen>
     98cmake -D CMAKE_INSTALL_PREFIX=/usr \
     99      -D BUILD_TESTING=OFF         \
     100      -W no-dev ..</userinput></screen>
    101101
    102102    <para>
     
    116116
    117117    <para>
    118       <parameter>-DBUILD_TESTING=OFF</parameter>: This parameter disables
     118      <parameter>-D BUILD_TESTING=OFF</parameter>: This parameter disables
    119119      building the testing framework, which requires some modules from
    120120      <xref linkend="kf6-frameworks"/>.
  • x/icons/oxygen-icons.xml

    r712aa3c r4304a5f  
    9595cd    build &amp;&amp;
    9696
    97 cmake -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev ..</userinput></screen>
     97cmake -D CMAKE_INSTALL_PREFIX=/usr -W no-dev ..</userinput></screen>
    9898
    9999    <para>
  • x/lib/glslang.xml

    r712aa3c r4304a5f  
    8787cd    build &amp;&amp;
    8888
    89 cmake -DCMAKE_INSTALL_PREFIX=/usr     \
    90       -DCMAKE_BUILD_TYPE=Release      \
    91       -DALLOW_EXTERNAL_SPIRV_TOOLS=ON \
    92       -DBUILD_SHARED_LIBS=ON          \
    93       -DGLSLANG_TESTS=ON              \
     89cmake -D CMAKE_INSTALL_PREFIX=/usr     \
     90      -D CMAKE_BUILD_TYPE=Release      \
     91      -D ALLOW_EXTERNAL_SPIRV_TOOLS=ON \
     92      -D BUILD_SHARED_LIBS=ON          \
     93      -D GLSLANG_TESTS=ON              \
    9494      -G Ninja .. &amp;&amp;
    9595ninja</userinput></screen>
     
    111111
    112112    <para>
    113       <parameter>-DALLOW_EXTERNAL_SPIRV_TOOLS=ON</parameter>: This switch allows
     113      <parameter>-D ALLOW_EXTERNAL_SPIRV_TOOLS=ON</parameter>: This switch allows
    114114      the build system to use the system-installed copy of
    115115      <xref linkend="spirv-tools" role="nodep"/>, instead of downloading and
     
    118118
    119119    <para>
    120       <parameter>-DBUILD_SHARED_LIBS=ON</parameter>: This switch builds shared
     120      <parameter>-D BUILD_SHARED_LIBS=ON</parameter>: This switch builds shared
    121121      versions of the libraries, and does not install static versions of them.
    122122    </para>
    123123
    124124    <para>
    125       <parameter>-DGLSLANG_TESTS=ON</parameter>: This switch builds the
     125      <parameter>-D GLSLANG_TESTS=ON</parameter>: This switch builds the
    126126      tests for the package.
    127127    </para>
  • x/lib/grantlee.xml

    r712aa3c r4304a5f  
    9999cd    build &amp;&amp;
    100100
    101 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    102       -DCMAKE_BUILD_TYPE=Release  \
     101cmake -D CMAKE_INSTALL_PREFIX=/usr \
     102      -D CMAKE_BUILD_TYPE=Release  \
    103103      .. &amp;&amp;
    104104make</userinput></screen>
  • x/lib/kcolorpicker.xml

    r712aa3c r4304a5f  
    8989cd    build &amp;&amp;
    9090
    91 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    92       -DCMAKE_BUILD_TYPE=Release  \
    93       -DBUILD_SHARED_LIBS=ON      \
    94       -DBUILD_WITH_QT6=ON         \
     91cmake -D CMAKE_INSTALL_PREFIX=/usr \
     92      -D CMAKE_BUILD_TYPE=Release  \
     93      -D BUILD_SHARED_LIBS=ON      \
     94      -D BUILD_WITH_QT6=ON         \
    9595      .. &amp;&amp;
    9696make</userinput></screen>
  • x/lib/kimageannotator.xml

    r712aa3c r4304a5f  
    8686cd    build &amp;&amp;
    8787
    88 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    89       -DCMAKE_BUILD_TYPE=Release  \
    90       -DBUILD_SHARED_LIBS=ON      \
    91       -DBUILD_WITH_QT6=ON         \
     88cmake -D CMAKE_INSTALL_PREFIX=/usr \
     89      -D CMAKE_BUILD_TYPE=Release  \
     90      -D BUILD_SHARED_LIBS=ON      \
     91      -D BUILD_WITH_QT6=ON         \
    9292      .. &amp;&amp;
    9393make</userinput></screen>
  • x/lib/vulkan-headers.xml

    r712aa3c r4304a5f  
    8787cd    build &amp;&amp;
    8888
    89 cmake -DCMAKE_INSTALL_PREFIX=/usr -G Ninja .. &amp;&amp;
     89cmake -D CMAKE_INSTALL_PREFIX=/usr -G Ninja .. &amp;&amp;
    9090ninja</userinput></screen>
    9191
  • x/lib/webkitgtk.xml

    r712aa3c r4304a5f  
    163163cd        build &amp;&amp;
    164164
    165 cmake -DCMAKE_BUILD_TYPE=Release     \
    166       -DCMAKE_INSTALL_PREFIX=/usr    \
    167       -DCMAKE_SKIP_INSTALL_RPATH=ON  \
    168       -DPORT=GTK                     \
    169       -DLIB_INSTALL_DIR=/usr/lib     \
    170       -DUSE_LIBBACKTRACE=OFF         \
    171       -DUSE_LIBHYPHEN=OFF            \
    172       -DENABLE_GAMEPAD=OFF           \
    173       -DENABLE_MINIBROWSER=ON        \
    174       -DENABLE_DOCUMENTATION=OFF     \
    175       -DENABLE_WEBDRIVER=OFF         \
    176       -DUSE_WOFF2=OFF                \
    177       -DUSE_GTK4=OFF                 \
    178       -DENABLE_BUBBLEWRAP_SANDBOX=ON \
    179       -Wno-dev -G Ninja ..           &amp;&amp;
     165cmake -D CMAKE_BUILD_TYPE=Release     \
     166      -D CMAKE_INSTALL_PREFIX=/usr    \
     167      -D CMAKE_SKIP_INSTALL_RPATH=ON  \
     168      -D PORT=GTK                     \
     169      -D LIB_INSTALL_DIR=/usr/lib     \
     170      -D USE_LIBBACKTRACE=OFF         \
     171      -D USE_LIBHYPHEN=OFF            \
     172      -D ENABLE_GAMEPAD=OFF           \
     173      -D ENABLE_MINIBROWSER=ON        \
     174      -D ENABLE_DOCUMENTATION=OFF     \
     175      -D ENABLE_WEBDRIVER=OFF         \
     176      -D USE_WOFF2=OFF                \
     177      -D USE_GTK4=OFF                 \
     178      -D ENABLE_BUBBLEWRAP_SANDBOX=ON \
     179      -W no-dev -G Ninja ..           &amp;&amp;
    180180ninja</userinput></screen>
    181181
     
    183183cd        build &amp;&amp;
    184184
    185 cmake -DCMAKE_BUILD_TYPE=Release     \
    186       -DCMAKE_INSTALL_PREFIX=/usr    \
    187       -DCMAKE_SKIP_INSTALL_RPATH=ON  \
    188       -DPORT=GTK                     \
    189       -DLIB_INSTALL_DIR=/usr/lib     \
    190       -DUSE_LIBBACKTRACE=OFF         \
    191       -DUSE_LIBHYPHEN=OFF            \
    192       -DENABLE_GAMEPAD=OFF           \
    193       -DENABLE_MINIBROWSER=ON        \
    194       -DENABLE_DOCUMENTATION=OFF     \
    195       -DENABLE_WEBDRIVER=OFF         \
    196       -DUSE_WOFF2=OFF                \
    197       -DUSE_GTK4=OFF                 \
    198       -DENABLE_JOURNALD_LOG=OFF      \
    199       -DENABLE_BUBBLEWRAP_SANDBOX=ON \
    200       -Wno-dev -G Ninja ..           &amp;&amp;
     185cmake -D CMAKE_BUILD_TYPE=Release     \
     186      -D CMAKE_INSTALL_PREFIX=/usr    \
     187      -D CMAKE_SKIP_INSTALL_RPATH=ON  \
     188      -D PORT=GTK                     \
     189      -D LIB_INSTALL_DIR=/usr/lib     \
     190      -D USE_LIBBACKTRACE=OFF         \
     191      -D USE_LIBHYPHEN=OFF            \
     192      -D ENABLE_GAMEPAD=OFF           \
     193      -D ENABLE_MINIBROWSER=ON        \
     194      -D ENABLE_DOCUMENTATION=OFF     \
     195      -D ENABLE_WEBDRIVER=OFF         \
     196      -D USE_WOFF2=OFF                \
     197      -D USE_GTK4=OFF                 \
     198      -D ENABLE_JOURNALD_LOG=OFF      \
     199      -D ENABLE_BUBBLEWRAP_SANDBOX=ON \
     200      -W no-dev -G Ninja ..           &amp;&amp;
    201201ninja</userinput></screen>
    202202
     
    221221<screen revision="systemd"><userinput>rm -rf * .[^.]* &amp;&amp;
    222222
    223 cmake -DCMAKE_BUILD_TYPE=Release     \
    224       -DCMAKE_INSTALL_PREFIX=/usr    \
    225       -DCMAKE_SKIP_INSTALL_RPATH=ON  \
    226       -DPORT=GTK                     \
    227       -DLIB_INSTALL_DIR=/usr/lib     \
    228       -DUSE_LIBBACKTRACE=OFF         \
    229       -DUSE_LIBHYPHEN=OFF            \
    230       -DENABLE_GAMEPAD=OFF           \
    231       -DENABLE_MINIBROWSER=ON        \
    232       -DENABLE_DOCUMENTATION=OFF     \
    233       -DUSE_WOFF2=OFF                \
    234       -DUSE_GTK4=ON                  \
    235       -DENABLE_BUBBLEWRAP_SANDBOX=ON \
    236       -Wno-dev -G Ninja ..           &amp;&amp;
     223cmake -D CMAKE_BUILD_TYPE=Release     \
     224      -D CMAKE_INSTALL_PREFIX=/usr    \
     225      -D CMAKE_SKIP_INSTALL_RPATH=ON  \
     226      -D PORT=GTK                     \
     227      -D LIB_INSTALL_DIR=/usr/lib     \
     228      -D USE_LIBBACKTRACE=OFF         \
     229      -D USE_LIBHYPHEN=OFF            \
     230      -D ENABLE_GAMEPAD=OFF           \
     231      -D ENABLE_MINIBROWSER=ON        \
     232      -D ENABLE_DOCUMENTATION=OFF     \
     233      -D USE_WOFF2=OFF                \
     234      -D USE_GTK4=ON                  \
     235      -D ENABLE_BUBBLEWRAP_SANDBOX=ON \
     236      -W no-dev -G Ninja ..           &amp;&amp;
    237237ninja</userinput></screen>
    238238
    239239<screen revision="sysv"><userinput>rm -rf * .[^.]* &amp;&amp;
    240240
    241 cmake -DCMAKE_BUILD_TYPE=Release     \
    242       -DCMAKE_INSTALL_PREFIX=/usr    \
    243       -DCMAKE_SKIP_INSTALL_RPATH=ON  \
    244       -DPORT=GTK                     \
    245       -DLIB_INSTALL_DIR=/usr/lib     \
    246       -DUSE_LIBBACKTRACE=OFF         \
    247       -DUSE_LIBHYPHEN=OFF            \
    248       -DENABLE_GAMEPAD=OFF           \
    249       -DENABLE_MINIBROWSER=ON        \
    250       -DENABLE_DOCUMENTATION=OFF     \
    251       -DUSE_WOFF2=OFF                \
    252       -DUSE_GTK4=ON                  \
    253       -DENABLE_JOURNALD_LOG=OFF      \
    254       -DENABLE_BUBBLEWRAP_SANDBOX=ON \
    255       -Wno-dev -G Ninja ..           &amp;&amp;
     241cmake -D CMAKE_BUILD_TYPE=Release     \
     242      -D CMAKE_INSTALL_PREFIX=/usr    \
     243      -D CMAKE_SKIP_INSTALL_RPATH=ON  \
     244      -D PORT=GTK                     \
     245      -D LIB_INSTALL_DIR=/usr/lib     \
     246      -D USE_LIBBACKTRACE=OFF         \
     247      -D USE_LIBHYPHEN=OFF            \
     248      -D ENABLE_GAMEPAD=OFF           \
     249      -D ENABLE_MINIBROWSER=ON        \
     250      -D ENABLE_DOCUMENTATION=OFF     \
     251      -D USE_WOFF2=OFF                \
     252      -D USE_GTK4=ON                  \
     253      -D ENABLE_JOURNALD_LOG=OFF      \
     254      -D ENABLE_BUBBLEWRAP_SANDBOX=ON \
     255      -W no-dev -G Ninja ..           &amp;&amp;
    256256ninja</userinput></screen>
    257257
     
    263263
    264264    <para>
    265       As the <option>-DENABLE_DOCUMENTATION=OFF</option> option is used,
     265      As the <option>-D ENABLE_DOCUMENTATION=OFF</option> option is used,
    266266      the documentation is not rebuilt nor installed now.  If you need the
    267267      documentation, you can either install <xref linkend='gi-docgen'/>
     
    288288
    289289    <para>
    290       <parameter>-DUSE_LIBBACKTRACE=OFF</parameter>: This switch disables
     290      <parameter>-D USE_LIBBACKTRACE=OFF</parameter>: This switch disables
    291291      the use of libbacktrace for dumping a stack trace when a crash
    292292      happens.  You need to install &libbacktrace; if you wish to enable it
     
    295295
    296296    <para>
    297       <parameter>-DUSE_LIBHYPHEN=OFF</parameter>: This switch disables the
     297      <parameter>-D USE_LIBHYPHEN=OFF</parameter>: This switch disables the
    298298      default automatic hyphenation implementation. You need to install
    299299      <ulink
     
    304304
    305305    <para>
    306       <parameter>-DENABLE_DOCUMENTATION=OFF</parameter>: This switch disables
     306      <parameter>-D ENABLE_DOCUMENTATION=OFF</parameter>: This switch disables
    307307      regenerating the documentation. Remove this switch if you have
    308308      <xref linkend="gi-docgen"/>
     
    311311
    312312    <para>
    313       <parameter>-DENABLE_GAMEPAD=OFF</parameter>: This switch disables
     313      <parameter>-D ENABLE_GAMEPAD=OFF</parameter>: This switch disables
    314314      gamepad support. Remove this switch if you have
    315315      <ulink url="https://gnome.pages.gitlab.gnome.org/libmanette/">libmanette</ulink>
     
    318318
    319319    <para>
    320       <parameter>-DENABLE_MINIBROWSER=ON</parameter>: This switch enables
     320      <parameter>-D ENABLE_MINIBROWSER=ON</parameter>: This switch enables
    321321      compiling and installing the MiniBrowser.
    322322    </para>
    323323
    324324    <para>
    325       <parameter>-DENABLE_WEBDRIVER=OFF</parameter>: This switch disables
     325      <parameter>-D ENABLE_WEBDRIVER=OFF</parameter>: This switch disables
    326326      compiling and installing <command>WebKitWebDriver</command>.  We use
    327327      it for the GTK-3 build because the <command>WebKitWebDriver</command>
     
    333333<!--
    334334    <para>
    335       <parameter>-DUSE_JPEGXL=OFF</parameter>: This switch turns off support
     335      <parameter>-D USE_JPEGXL=OFF</parameter>: This switch turns off support
    336336      for JPEG-XL images. Remove it if you have the optional package
    337337      <ulink url="https://github.com/libjxl/libjxl">libjxl</ulink> installed.
     
    339339-->
    340340    <para>
    341       <parameter>-DENABLE_BUBBLEWRAP_SANDBOX=ON</parameter>: This switch
     341      <parameter>-D ENABLE_BUBBLEWRAP_SANDBOX=ON</parameter>: This switch
    342342      enables the Bubblewrap sandbox, which helps mitigate the impact of most
    343343      security vulnerabilities in this package. Change this switch to OFF if
     
    350350
    351351    <para revision="sysv">
    352       <parameter>-DENABLE_JOURNALD_LOG=OFF</parameter>: This switch disables using the
     352      <parameter>-D ENABLE_JOURNALD_LOG=OFF</parameter>: This switch disables using the
    353353      systemd journal for logging errors and debugging information since it
    354354      is not available on SysV systems.
     
    356356
    357357    <para>
    358       <option>-DUSE_SYSTEM_MALLOC=ON</option>: This switch enables building
     358      <option>-D USE_SYSTEM_MALLOC=ON</option>: This switch enables building
    359359      against the system installed <application>malloc</application>.
    360360    </para>
    361361
    362362    <para>
    363       <option>-DENABLE_GEOLOCATION=OFF</option>: Use this switch if you don't
     363      <option>-D ENABLE_GEOLOCATION=OFF</option>: Use this switch if you don't
    364364      want to install <xref linkend="geoclue2"/>.
    365365    </para>
    366366
    367367    <para>
    368       <option>-DUSE_AVIF=OFF</option>: Use this switch if you don't want to
     368      <option>-D USE_AVIF=OFF</option>: Use this switch if you don't want to
    369369      install <xref linkend="libavif"/>. Note that you will not have support
    370370      for AVIF images if you do this.
     
    372372
    373373    <para>
    374       <option>-DUSE_WOFF2=ON</option>: Use this switch if the optional
     374      <option>-D USE_WOFF2=ON</option>: Use this switch if the optional
    375375      package <xref linkend="woff2"/> is installed. This adds additional
    376376      support for fonts.
     
    378378
    379379    <para>
    380       <option>-DUSE_JPEGXL=OFF</option>: Use this switch if the recommended
     380      <option>-D USE_JPEGXL=OFF</option>: Use this switch if the recommended
    381381      package <xref linkend="libjxl"/> is not installed. Note that you will not
    382382      have support for JPEG XL images if this option is passed.
  • x/wm/icewm.xml

    r712aa3c r4304a5f  
    110110cd    build &amp;&amp;
    111111
    112 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    113       -DCMAKE_BUILD_TYPE=Release  \
    114       -DCFGDIR=/etc               \
    115       -DENABLE_LTO=ON             \
    116       -DDOCDIR=/usr/share/doc/icewm-&icewm-version;  \
     112cmake -D CMAKE_INSTALL_PREFIX=/usr \
     113      -D CMAKE_BUILD_TYPE=Release  \
     114      -D CFGDIR=/etc               \
     115      -D ENABLE_LTO=ON             \
     116      -D DOCDIR=/usr/share/doc/icewm-&icewm-version;  \
    117117      .. &amp;&amp;
    118118make</userinput></screen>
     
    147147
    148148    <para>
    149       <parameter>-DENABLE_LTO=ON</parameter>: This option enables Link
     149      <parameter>-D ENABLE_LTO=ON</parameter>: This option enables Link
    150150      Time Optimization and is required for this package.
    151151    </para>
  • xsoft/graphweb/falkon.xml

    r712aa3c r4304a5f  
    121121cd    build &amp;&amp;
    122122
    123 cmake -DCMAKE_INSTALL_PREFIX=/usr \
    124       -DCMAKE_BUILD_TYPE=Release  \
     123cmake -D CMAKE_INSTALL_PREFIX=/usr \
     124      -D CMAKE_BUILD_TYPE=Release  \
    125125      .. &amp;&amp;
    126126
     
    175175
    176176    <para>
    177       <option>-DBUILD_TESTING=OFF</option>: This will save a little time and space by
     177      <option>-D BUILD_TESTING=OFF</option>: This will save a little time and space by
    178178      not building the test programs, use this if you do not wish to run the test.
    179179    </para>
Note: See TracChangeset for help on using the changeset viewer.