1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235 | `configure' configures LibreOffice 5.2.0.0.alpha0+ to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
To assign environment variables (e.g., CC, CFLAGS...), specify them as
VAR=VALUE. See below for descriptions of some of the useful variables.
Defaults for the options are specified in brackets.
Configuration:
-h, --help display this help and exit
--help=short display options specific to this package
--help=recursive display the short help of all the included packages
-V, --version display version information and exit
-q, --quiet, --silent do not print `checking ...' messages
--cache-file=FILE cache test results in FILE [disabled]
-C, --config-cache alias for `--cache-file=config.cache'
-n, --no-create do not create output files
--srcdir=DIR find the sources in DIR [configure dir or `..']
Installation directories:
--prefix=PREFIX install architecture-independent files in PREFIX
[/usr/local]
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
[PREFIX]
By default, `make install' will install all the files in
`/usr/local/bin', `/usr/local/lib' etc. You can specify
an installation prefix other than `/usr/local' using `--prefix',
for instance `--prefix=$HOME'.
For better control, use the options below.
Fine tuning of the installation directories:
--bindir=DIR user executables [EPREFIX/bin]
--sbindir=DIR system admin executables [EPREFIX/sbin]
--libexecdir=DIR program executables [EPREFIX/libexec]
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
--libdir=DIR object code libraries [EPREFIX/lib]
--includedir=DIR C header files [PREFIX/include]
--oldincludedir=DIR C header files for non-gcc [/usr/include]
--datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
--datadir=DIR read-only architecture-independent data [DATAROOTDIR]
--infodir=DIR info documentation [DATAROOTDIR/info]
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
--mandir=DIR man documentation [DATAROOTDIR/man]
--docdir=DIR documentation root [DATAROOTDIR/doc/libreoffice]
--htmldir=DIR html documentation [DOCDIR]
--dvidir=DIR dvi documentation [DOCDIR]
--pdfdir=DIR pdf documentation [DOCDIR]
--psdir=DIR ps documentation [DOCDIR]
X features:
--x-includes=DIR X include files are in DIR
--x-libraries=DIR X library files are in DIR
System types:
--build=BUILD configure for building on BUILD [guessed]
--host=HOST cross-compile to build programs to run on HOST [BUILD]
Optional Features:
--disable-option-checking ignore unrecognized --enable/--with options
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--disable-extension-integration
Disable integration of the built extensions in the
installer of the product. Use this switch to disable
the integration.
--disable-export Disable (some) code for document export. Useful when
building viewer-only apps that lack save/export
functionality, to avoid having an excessive amount
of code and data used only for exporrt linked in.
Work in progress, use only if you are hacking on it.
--disable-avmedia Disable displaying and inserting AV media in
documents. Work in progress, use only if you are
hacking on it.
--disable-database-connectivity
Disable various database connectivity. Work in
progress, use only if you are hacking on it.
--disable-extensions Disable all add-on extension functionality. Work in
progress, use only if you are hacking on it.
--disable-scripting Disable BASIC, Java and Python. Work in progress,
use only if you are hacking on it.
--disable-dynamic-loading
Disable any use of dynamic loading of code. Work in
progress, use only if you are hacking on it.
--enable-ext-mariadb-connector
Enable the build of the MariaDB/MySQL Connector
extension.
--disable-report-builder
Disable the Report Builder.
--enable-ext-wiki-publisher
Enable the Wiki Publisher extension.
--disable-lpsolve Disable compilation of the lp solve solver
--disable-coinmp Disable compilation of the CoinMP solver
--disable-pdfimport Disable building the PDF import feature.
--enable-hardlink-deliver
Put files into deliver folder as hardlinks instead
of copying them over. Saves space and speeds up
build.
--enable-mergelibs Enables linking of big, merged, library.
Experimental feature, tested only for Linux at some
stage in history, but possibly does not work even
for Linux any more. This will link a core set of
libraries into libmerged.
--disable-graphite Disables the compilation of Graphite smart font
rendering.
--enable-orcus Enables orcus for extra file import filters for
Calc.
--disable-fetch-external
Disables fetching external tarballs from web
sources.
--enable-pch Enables precompiled header support for C++. Forced
default on Windows/VC build
--enable-epm LibreOffice includes self-packaging code, that
requires epm, however epm is useless for large scale
package building.
--disable-odk LibreOffice includes an ODK, office development kit
which some packagers may wish to build without.
--enable-mpl-subset Don't compile any pieces which are not MPL or more
liberally licensed
--enable-evolution2 Allows the built-in evolution 2 addressbook
connectivity build to be enabled.
--disable-directx Remove DirectX implementation for the new XCanvas
interface. The DirectX support requires more stuff
installed on Windows to compile. (DirectX SDK, GDI+
libs)
--disable-activex Disable the use of ActiveX for a Windows build. This
switch is mandatory when using an Express edition of
Visual Studio.
--disable-atl Disable the use of ATL for a Windows build.
This switch is mandatory when using an Express edition of Visual Studio.
--enable-avahi Determines whether to use Avahi to advertise Impress
to remote controls.
--enable-werror Turn warnings to errors. (Has no effect in modules
where the treating of warnings as errors is disabled
explicitly.)
--enable-assert-always-abort
make assert() abort even in release code.
--enable-dbgutil Provide debugging support from --enable-debug and
include additional debugging utilities such as
object counting or more expensive checks. This is
the recommended option for developers. Note that
this makes the build ABI incompatible, it is not
possible to mix object files or libraries from a
--enable-dbgutil and a --disable-dbgutil build.
--enable-debug Include debugging information, disable compiler
optimization and inlining plus extra debugging code
like assertions. Extra large build! (enables -g
compiler flag).
--enable-sal-log Make SAL_INFO and SAL_WARN calls do something even
in a non-debug build.
--enable-selective-debuginfo
If --enable-debug or --enable-dbgutil is used, build
debugging information (-g compiler flag) only for
the specified gbuild build targets (where all means
everything, - prepended means not to enable, /
appended means everything in the directory; there is
no ordering, more specific overrides more general,
and disabling takes precedence). Example:
--enable-selective-debuginfo="all -sw/ -Library_sc".
--enable-symbols Include debugging symbols in output while preserve
optimization. This enables -g compiler flag for GCC
or equivalent, without changing anything else
compared to productive code.
--disable-runtime-optimizations
Statically disable certain runtime optimizations
(like rtl/alloc.h or JVM JIT) that are known to
interact badly with certain dynamic analysis tools
(like -fsanitize=address or Valgrind). By default,
disabled iff CC contains "-fsanitize=*". (For
Valgrind, those runtime optimizations are typically
disabled dynamically via RUNNING_ON_VALGRIND.)
--enable-compiler-plugins
Enable compiler plugins that will perform additional
checks during building. Enabled automatically by
--enable-dbgutil.
--disable-ooenv Disable ooenv for the instdir installation.
--enable-lto Enable link-time optimization. Suitable for
(optimised) product builds. Building might take
longer but libraries and executables are optimized
for speed. For GCC, best to use the 'gold' linker.
For MSVC, this option is broken at the moment. This
is experimental work in progress that shouldn't be
used unless you are working on it.)
--enable-crashdump Enable the crashdump feature.
--enable-python=<no/auto/system/internal/fully-internal>
Enables or disables Python support at run-time and
build-time. Also specifies what Python to use.
'auto' is the default. 'fully-internal' even forces
the internal version for uses of Python during the
build.
--disable-gtk Determines whether to use Gtk+ vclplug on platforms
where Gtk+ is available.
--enable-gtk3 Determines whether to use Gtk+ 3.0 vclplug on
platforms where Gtk+ 3.0 is available. This is
experimental and may not work.
--disable-systray Determines whether to build the systray
quickstarter.
--enable-split-app-modules
Split file lists for app modules, e.g. base, calc.
Has effect only with make distro-pack-install
--enable-split-opt-features
Split file lists for some optional features, .e.g.
pyuno, testtool. Has effect only with make
distro-pack-install
--disable-cairo-canvas Determines whether to build the Cairo canvas on
platforms where Cairo is available.
--disable-dbus Determines whether to enable features that depend on
dbus. e.g. Presentation mode screensaver control,
bluetooth presentation control
--enable-packagekit Determines whether to enable features using
packagekit. Right now that is auto font install
--disable-sdremote Determines whether to enable Impress remote control
(i.e. the server component).
--disable-sdremote-bluetooth
Determines whether to build sdremote with bluetooth
support. Requires dbus on Linux.
--disable-gio Determines whether to use the GIO support.
--enable-telepathy Determines whether to enable Telepathy for
collaboration.
--enable-tde Determines whether to use TQt/TDE vclplug on
platforms where TQt and TDE are available.
--disable-tdeab Disable the TDE address book support.
--enable-kde4 Determines whether to use Qt4/KDE4 vclplug on
platforms where Qt4 and KDE4 are available.
--disable-randr Disable RandR support in the vcl project.
--disable-randr-link Disable linking with libXrandr, instead dynamically
open it at runtime.
--disable-gstreamer-1-0 Disable building with the new gstreamer 1.0 avmedia
backend.
--enable-gstreamer-0-10 Enable building with the gstreamer 0.10 avmedia
backend.
--enable-vlc Enable building with the (experimental) VLC avmedia
backend.
--disable-neon Disable neon and the compilation of webdav binding.
--enable-eot Enable support for Embedded OpenType fonts.
--disable-cve-tests Prevent CVE tests to be executed
--enable-chart-tests Executes chart XShape tests. In a perfect world
these tests would be stable and everyone could run
them, in reality it is best to run them only on a
few machines that are known to work and maintained
by people who can judge if a test failure is a
regression or not.
--enable-build-unowinreg
Do not use the prebuilt unowinreg.dll. Build it
instead. The MinGW C++ compiler is needed on Linux.
Usage: --enable-build-unowinreg
--enable-dependency-tracking
Do not reject slow dependency extractors.
--disable-dependency-tracking
Disables generation of dependency information.
Speed up one-time builds.
--enable-icecream Use the 'icecream' distributed compiling tool to
speedup the compilation. It defaults to
/opt/icecream for the location of the icecream
gcc/g++ wrappers, you can override that using
--with-gcc-home=/the/path switch.
--disable-cups Do not build cups support.
--disable-ccache Do not try to use ccache automatically. By default,
unless on Windows, we will try to detect if ccache
is available; in that case if CC/CXX are not yet
set, and --enable-icecream is not given, we attempt
to use ccache. --disable-ccache disables ccache
completely.
--enable-64-bit Build a 64-bit LibreOffice on platforms where the
normal build is 32-bit. At the moment meaningful
only for iOS and Windows. On Windows this option is
experimental and possibly quite broken, and you
should use it only if you are hacking on 64-bitness
support.
--enable-extra-gallery Add extra gallery content.
--enable-extra-template Add extra template content.
--enable-extra-sample Add extra sample content.
--enable-extra-font Add extra font content.
--enable-online-update Enable the online update service that will check for
new versions of LibreOffice. By default, it is
enabled on Windows and Mac, disabled on Linux. If
the value is "mar", the experimental Mozilla-like
update will be enabled instead of the traditional
update mechanism.
--disable-extension-update
Disable possibility to update installed extensions.
--enable-release-build Enable release build. See
http://wiki.documentfoundation.org/DevBuild
--enable-windows-build-signing
Enable signing of windows binaries (*.exe, *.dll)
--enable-silent-msi Enable MSI with LIMITUI=1 (silent install).
--enable-macosx-code-signing=<identity>
Sign executables, dylibs, frameworks and the app
bundle. If you don't provide an identity the first
suitable certificate in your keychain is used.
--enable-macosx-package-signing=<identity>
Create a .pkg suitable for uploading to the Mac App
Store and sign it. If you don't provide an identity
the first suitable certificate in your keychain is
used.
--enable-macosx-sandbox Make the app bundle run in a sandbox. Requires code
signing. Is required by apps distributed in the Mac
App Store, and implies adherence to App Store rules.
--enable-ios-simulator Build for the iOS Simulator, not iOS device.
--enable-readonly-installset
Prevents any attempts by LibreOffice to write into
its installation. That means at least that no
"system-wide" extensions can be added. Experimental
work in progress.
--disable-postgresql-sdbc
Disable the build of the PostgreSQL-SDBC driver.
--disable-lotuswordpro Disable the build of the Lotus Word Pro filter.
--disable-firebird-sdbc Disable the build of the Firebird-SDBC driver if it
doesn't compile for you.
--enable-winegcc Enable use of winegcc during the build, in order to
create msi* tools needed for MinGW
cross-compilation.
--disable-liblangtag Disable use of liblangtag, and instead use an own
simple implementation.
--enable-bogus-pkg-config
MACOSX only: on MacOSX pkg-config can cause trouble.
by default if one is found in the PATH, an error is
issued. This flag turn that error into a warning.
--disable-openssl Disable using libssl/libcrypto from OpenSSL. If
disabled, components will either use GNUTLS or NSS.
Work in progress, use only if you are hacking on it.
--enable-library-bin-tar
Enable the building and reused of tarball of binary
build for some 'external' libraries. Some libraries
can save their build result in a tarball stored in
TARFILE_LOCATION. That binary tarball is uniquely
identified by the source tarball, the content of the
config_host.mk file and the content of the top-level
directory in core for that library If this option is
enabled, then if such a tarfile exist, it will be
untarred instead of the source tarfile, and the
build step will be skipped for that library. If a
proper tarfile does not exist, then the normal
source-based build is done for that library and a
proper binary tarfile is created for the next time.
--disable-gltf Determines whether to build libraries related to
glTF 3D model rendering.
--disable-collada Disable collada support (Rendering 3D models stored
in *.dae and *.kmz format).
--disable-dconf Disable the dconf configuration backend (enabled by
default where available).
--enable-bundle-mariadb When using MariaDB/MySQL libraries already on
system, bundle them with the MariaDB
Connector/LibreOffice extension.
--disable-scripting-beanshell
Disable support for scripts in BeanShell.
--disable-scripting-javascript
Disable support for scripts in JavaScript.
--disable-largefile omit support for large files
--enable-introspection=[no/auto/yes]
Enable introspection for this build
--enable-ext-watch-window
Enable the Watch Window extension
--enable-ext-diagram Enable the SmART Gallery (Diagram) extension
--enable-ext-validator Enable the Validator extension
--enable-ext-barcode Enable the Barcode extension
--enable-ext-ct2n Enable the ConvertTextToNumber extension
--enable-ext-numbertext Enable the Numbertext extension
--enable-ext-hunart Enable the Hungarian Cross-reference Toolbar
extension
--enable-ext-typo Enable the Typography Toolbar extension
--enable-ext-google-docs
Enable the Google Docs extension
--enable-ext-nlpsolver Enable the NLPSolver extension
--enable-ext-languagetool
Enable the LanguageTool extension
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-android-ndk Specify location of the Android Native Development
Kit. Mandatory when building for Android.
--with-android-ndk-toolchain-version
Specify which toolchain version to use, of those
present in the Android NDK you are using. The
default is 4.9 currently.
--with-android-sdk Specify location of the Android SDK. Mandatory when
building for Android, or when building the Impress
Remote Android app.
--with-macosx-bundle-identifier=tld.mumble.orifice.TheOffice
Define the OS X bundle identifier. Default is the
somewhat weird org.libreoffice.script ("script",
huh?).
--with-macosx-app-name='My Own Office Suite'
Define the OS X app name. Default is
LibreOffice.
--with-prebuilt-openssl Don't build OpenSSL but use prebuilt binaries. Only
for use on Windows, when you can't build it, thanks
to the Cygwin fork() problem when running the Perl
disaster in OpenSSL's build system.
--with-gnu-patch Specify location of GNU patch on Solaris or FreeBSD.
--with-build-platform-configure-options
Specify options for the configure script run for the
*build* platform in a cross-compilation
--with-gnu-cp Specify location of GNU cp on Solaris or FreeBSD.
--with-external-tar=<TARFILE_PATH>
Specify an absolute path of where to find (and
store) tarfiles.
--with-referenced-git=<OTHER_CHECKOUT_DIR>
Specify another checkout directory to reference.
This makes use of git submodule update --reference,
and saves a lot of diskspace when having multiple
trees side-by-side.
--with-linked-git=<submodules repo basedir>
Specify a directory where the repositories of
submodules are located. This uses a method similar
to git-new-workdir to get submodules.
--with-galleries Specify how galleries should be built. It is
possible either to build these internally from
source ("build"), or to disable them ("no")
--with-theme="theme1 theme2..."
Choose which themes to include. By default those
themes with an '*' are included. Possible choices:
*breeze, crystal, *galaxy, *hicontrast, human,
*oxygen, *sifr, *tango, *tango_testing.
--without-helppack-integration It will not integrate the helppacks to the installer
of the product.
Please use this switch to use the online help or separate help packages.
--without-fonts LibreOffice includes some third-party fonts to
provide a reliable basis for help content,
templates, samples, etc. When these fonts are
already known to be available on the system then you
should use this option.
--with-epm Decides which epm to use. Default is to use the one
from the system if one is built. When either this is
not there or you say =internal epm will be built.
--with-package-format Specify package format(s) for LibreOffice
installation sets. The implicit
--without-package-format leads to no installation
sets being generated. Possible values: aix, archive,
bsd, deb, dmg, installed, msi, pkg, and rpm.
Example: --with-package-format='deb rpm'
--with-tls Decides which TLS/SSL and cryptographic
implementations to use for LibreOffice's code.
Notice that this doesn't apply for depending
libraries like "neon", for example. Default is to
use OpenSSL although NSS is also possible. Notice
that selecting NSS restricts the usage of OpenSSL in
LO's code but selecting OpenSSL doesn't restrict by
now the usage of NSS in LO's code. Possible values:
openssl, nss. Example: --with-tls="nss"
--with-system-libs Use libraries already on system -- enables all
--with-system-* flags.
--with-system-bzip2 Use bzip2 already on system. Used only when
--enable-online-update=mar
--with-system-headers Use headers already on system -- enables all
--with-system-* flags for external packages whose
headers are the only entities used i.e.
boost/odbc/sane-header(s).
--without-system-jars When building with --with-system-libs, also the
needed jars are expected on the system. Use this to
disable that
--with-system-cairo Use cairo libraries already on system. Happens
automatically for (implicit) --enable-gtk and for
--enable-gtk3.
--with-myspell-dicts Adds myspell dictionaries to the LibreOffice
installation set
--without-system-dicts Do not use dictionaries from system paths.
--with-external-dict-dir
Specify external dictionary dir.
--with-external-hyph-dir
Specify external hyphenation pattern dir.
--with-external-thes-dir
Specify external thesaurus dir.
--with-system-zlib Use zlib already on system.
--with-system-jpeg Use jpeg already on system.
--with-system-libgltf Use libgltf already on system.
--with-system-clucene Use clucene already on system.
--with-system-expat Use expat already on system.
--with-system-libxml Use libxml/libxslt already on system.
--with-system-icu Use icu already on system.
--with-system-ucpp Use ucpp already on system.
--with-system-opencollada
Use openCOLLADA already on system.
--with-system-collada2gltf
Use collada2gltf already on system.
--with-system-openldap Use the OpenLDAP LDAP SDK already on system.
--with-system-poppler Use system poppler (only needed for PDF import).
--with-system-apache-commons
Use Apache commons libraries already on system.
--with-system-mariadb Use MariaDB/MySQL libraries already on system, for
building the MariaDB Connector/LibreOffice
extension.
--with-system-mysql-cppconn
Use MySQL C++ Connector libraries already on system.
--with-system-postgresql
Use PostgreSQL libraries already on system, for
building the PostgreSQL-SDBC driver. If pg_config is
not in PATH, use PGCONFIG to point to it.
--with-libpq-path Use this PostgreSQL C interface (libpq) installation
for building the PostgreSQL-SDBC extension.
Usage: --with-libpq-path=<absolute path to
your libpq installation>
--with-system-firebird Use Firebird libraries already on system, for
building the Firebird-SDBC driver. If fb_config is
not in PATH, use FBCONFIG to point to it.
--with-system-hsqldb Use hsqldb already on system.
--with-hsqldb-jar=JARFILE
Specify path to jarfile manually.
--with-system-beanshell Use beanshell already on system.
--with-beanshell-jar=JARFILE
Specify path to jarfile manually.
--with-system-rhino Use rhino already on system.
--with-rhino-jar=JARFILE
Specify path to jarfile manually.
--with-commons-codec-jar=JARFILE
Specify path to jarfile manually.
--with-commons-lang-jar=JARFILE
Specify path to jarfile manually.
--with-commons-httpclient-jar=JARFILE
Specify path to jarfile manually.
--with-commons-logging-jar=JARFILE
Specify path to jarfile manually.
--with-system-jfreereport
Use JFreeReport already on system.
--with-sac-jar=JARFILE Specify path to jarfile manually.
--with-libxml-jar=JARFILE
Specify path to jarfile manually.
--with-flute-jar=JARFILE
Specify path to jarfile manually.
--with-jfreereport-jar=JARFILE
Specify path to jarfile manually.
--with-liblayout-jar=JARFILE
Specify path to jarfile manually.
--with-libloader-jar=JARFILE
Specify path to jarfile manually.
--with-libformula-jar=JARFILE
Specify path to jarfile manually.
--with-librepository-jar=JARFILE
Specify path to jarfile manually.
--with-libfonts-jar=JARFILE
Specify path to jarfile manually.
--with-libserializer-jar=JARFILE
Specify path to jarfile manually.
--with-libbase-jar=JARFILE
Specify path to jarfile manually.
--with-system-odbc Use the odbc headers already on system.
--with-system-sane Use sane.h already on system.
--with-system-bluez Use bluetooth.h already on system.
--with-system-curl Use curl already on system.
--with-system-boost Use boost already on system.
--with-system-glm Use glm already on system.
--with-system-hunspell Use libhunspell already on system.
--with-system-mythes Use mythes already on system.
--with-system-altlinuxhyph
Use ALTLinuxhyph already on system.
--with-system-lpsolve Use lpsolve already on system.
--with-system-coinmp Use CoinMP already on system.
--with-system-liblangtag
Use liblangtag library already on system.
--with-jpeg-turbo Use internal libjpeg-turbo library.
--with-webdav Specify which library to use for webdav
implementation. Possible values: "neon", "serf",
"no". The default value is "neon". Example:
--with-webdav="serf"
--with-linker-hash-style
Use linker with --hash-style=<style> when linking
shared objects. Possible values: "sysv", "gnu",
"both". The default value is "gnu" if supported on
the build system, and "sysv" otherwise.
--with-jdk-home If you have installed JDK 1.3 or later on your
system please supply the path here. Note that this
is not the location of the java command but the
location of the entire distribution.
Usage: --with-jdk-home=<absolute path to JDK home>
--with-help Enable the build of help. There is a special
parameter "common" that can be used to bundle only
the common part, .e.g help-specific icons. This is
useful when you build the helpcontent separately.
Usage: --with-help build the entire local help
--without-help no local help (default)
--with-help=common bundle common files for the local
help but do not build the whole help
--with-java Specify the name of the Java interpreter command.
Typically "java" which is the default. To build
without support for Java components, applets,
accessibility or the XML filters written in Java,
use --without-java or --with-java=no.
Usage: --with-java==<java command>
--without-java
--with-jvm-path Use a specific JVM search path at runtime.
Usage: --with-jvm-path=<absolute path to parent of jvm home>
e. g.: --with-jvm-path=/usr/lib/
to find JRE/JDK in /usr/lib/jvm/
--with-ant-home If you have installed Jakarta Ant on your system,
please supply the path here. Note that this is not
the location of the Ant binary but the location of
the entire distribution.
Usage: --with-ant-home=<absolute path to Ant home>
--with-export-validation
If you want the exported files to be validated.
Right now limited to OOXML files in calc export
tests. Note: You need an executable script
officeotron that takes the path to the file.
Usage: --with-export-validation
--with-junit Specifies the JUnit 4 jar file to use for
JUnit-based tests. --without-junit disables those
tests. Not relevant in the --without-java case.
Usage: --with-junit=<absolute path to JUnit 4 jar>
--with-hamcrest Specifies the hamcrest jar file to use for
JUnit-based tests. --without-junit disables those
tests. Not relevant in the --without-java case.
Usage: --with-hamcrest=<absolute path to hamcrest jar>
--with-perl-home If you have installed Perl 5 Distribution, on your
system, please supply the path here. Note that this
is not the location of the Perl binary but the
location of the entire distribution.
Usage: --with-perl-home=<abs. path to Perl 5 home>
--with-doxygen Specifies the doxygen executable to use when
generating ODK C/C++ documentation.
--without-doxygen disables generation of ODK C/C++
documentation. Not relevant in the --disable-odk
case.
Usage: --with-doxygen=<absolute path to doxygen executable>
--with-visual-studio=<2013/2015>
Specify which Visual Studio version to use in case
several are installed. If not specified, only 2013
is detected automatically because 2015 support is
currently experimental.
Usage: --with-visual-studio=<2013/2015>
--with-windows-sdk=<7.1(A)/8.0(A)/8.1(A)/10>
Specify which Windows SDK, or "Windows Kit", version
to use in case the one that came with the selected
Visual Studio is not what you want for some reason.
Note that not all compiler/SDK combinations are
supported. The intent is that this option should not
be needed.
Usage: --with-windows-sdk=<7.1(A)/8.0(A)/8.1(A)/10>
--with-lang Use this option to build LibreOffice with additional
UI language support. English (US) is always included
by default. Separate multiple languages with space.
For all languages, use --with-lang=ALL.
Usage: --with-lang="es sw tu cs sk"
--with-locales Use this option to limit the locale information
built in. Separate multiple locales with space. Very
experimental and might well break stuff. Just a
desperate measure to shrink code and data size. By
default all the locales available is included. This
option is completely unrelated to --with-lang.
Affects also our character encoding conversion
tables for encodings mainly targeted for a
particular locale, like EUC-CN and EUC-TW for
zh, ISO-2022-JP for ja.
Affects also our add-on break iterator data for
some languages.
For the default, all locales, don't use this switch at all.
Specifying just the language part of a locale means all matching
locales will be included.
Usage: --with-locales="en es pt fr zh kr ja"
--with-krb5 Enable MIT Kerberos 5 support in modules that
support it. By default automatically enabled on
platforms where a good system Kerberos 5 is
available.
--with-gssapi Enable GSSAPI support in modules that support it. By
default automatically enabled on platforms where a
good system GSSAPI is available.
--with-iwyu Use given IWYU binary path to check unneeded
includes instead of building. Use only if you are
hacking on it.
--with-branding Use given path to retrieve branding images set.
Search for intro.png about.svg and flat_logo.svg.
If any is missing, default ones will be used instead.
Search also progress.conf for progress
settings on intro screen :
PROGRESSBARCOLOR="255,255,255" Set color of
progress bar. Comma separated RGB decimal values.
PROGRESSSIZE="407,6" Set size of progress bar.
Comma separated decimal values (width, height).
PROGRESSPOSITION="61,317" Set position of progress
bar from left,top. Comma separated decimal values.
PROGRESSFRAMECOLOR="20,136,3" Set color of progress
bar frame. Comma separated RGB decimal values.
PROGRESSTEXTCOLOR="255,255,255" Set color of progress
bar text. Comma separated RGB decimal values.
PROGRESSTEXTBASELINE="287" Set vertical position of
progress bar text from top. Decimal value.
Default values will be used if not found.
Usage: --with-branding=/path/to/images
--with-extra-buildid Show addition build identification in about dialog.
Usage: --with-extra-buildid="Tinderbox: Win-x86@6, Branch:master, Date:2012-11-26_00.29.34"
--with-vendor Set vendor of the build.
Usage: --with-vendor="John the Builder"
--with-android-package-name
Set Android package name of the build.
Usage: --with-android-package-name="org.libreoffice"
--with-compat-oowrappers
Install oo* wrappers in parallel with lo* ones to
keep backward compatibility. Has effect only with
make distro-pack-install
--with-os-version For FreeBSD users, use this option option to
override the detected OSVERSION.
Usage: --with-os-version=<OSVERSION>
--with-mingw-cross-compiler
Specify the MinGW cross-compiler to use.
Usage: --with-mingw-cross-compiler=<mingw32-g++ command>
When building on the ODK on Unix and building unowinreg.dll,
specify the MinGW C++ cross-compiler.
--with-idlc-cpp Specify the C Preprocessor to use for idlc.
Usage: --with-idlc-cpp=cpp
Default is ucpp.
--with-build-version Allows the builder to add a custom version tag that
will appear in the Help/About box for QA purposes.
Usage: --with-build-version="Built by Jim"
--with-alloc Define which allocator to build with (choices are
oo, system, tcmalloc, jemalloc). Note that on
FreeBSD/NetBSD system==jemalloc
--with-sun-templates Integrate Sun template packages.
--with-parallelism Number of jobs to run simultaneously during build.
Parallel builds can save a lot of time on multi-cpu
machines. Defaults to the number of CPUs on the
machine, unless you configure --enable-icecream -
then to 10.
--with-all-tarballs Download all external tarballs unconditionally
--with-gdrive-client-id Provides the client id of the application for OAuth2
authentication on Google Drive. If either this or
--with-gdrive-client-secret is empty, the feature
will be disabled
--with-gdrive-client-secret
Provides the client secret of the application for
OAuth2 authentication on Google Drive. If either
this or --with-gdrive-client-id is empty, the
feature will be disabled
--with-alfresco-cloud-client-id
Provides the client id of the application for OAuth2
authentication on Alfresco Cloud. If either this or
--with-alfresco-cloud-client-secret is empty, the
feature will be disabled
--with-alfresco-cloud-client-secret
Provides the client secret of the application for
OAuth2 authentication on Alfresco Cloud. If either
this or --with-alfresco-cloud-client-id is empty,
the feature will be disabled
--with-onedrive-client-id
Provides the client id of the application for OAuth2
authentication on OneDrive. If either this or
--with-onedrive-client-secret is empty, the feature
will be disabled
--with-onedrive-client-secret
Provides the client secret of the application for
OAuth2 authentication on OneDrive. If either this or
--with-onedrive-client-id is empty, the feature will
be disabled
--with-macosx-sdk Use a specific SDK for building.
Usage: --with-macosx-sdk=<version>
e. g.: --with-macosx-sdk=10.8
there are 3 options to control the MacOSX build:
--with-macosx-sdk (referred as 'sdk' below)
--with-macosx-version-min-required (referred as 'min' below)
--with-macosx-version-max-allowed (referred as 'max' below)
the connection between these value and the default they take is as follow:
( ? means not specified on the command line, s means the SDK version found,
constraint: 8 <= x <= y <= z)
==========================================
command line || config result
==========================================
min | max | sdk || min | max | sdk |
? | ? | ? || 10.8 | 10.s | 10.s |
? | ? | 10.x || 10.8 | 10.x | 10.x |
? | 10.x | ? || 10.8 | 10.s | 10.s |
? | 10.x | 10.y || 10.8 | 10.x | 10.y |
10.x | ? | ? || 10.x | 10.s | 10.s |
10.x | ? | 10.y || 10.x | 10.y | 10.y |
10.x | 10.y | ? || 10.x | 10.y | 10.y |
10.x | 10.y | 10.z || 10.x | 10.y | 10.z |
see: http://developer.apple.com/library/mac/#technotes/tn2064/_index.html
for a detailed technical explanation of these variables
Note: MACOSX_DEPLOYMENT_TARGET will be set to the value of 'min'.
--with-macosx-version-min-required
set the minimum OS version needed to run the built
LibreOffice
Usage: --with-macosx-version-min-required=<version>
e. g.: --with-macos-version-min-required=10.8
see --with-macosx-sdk for more info
--with-macosx-version-max-allowed
set the maximum allowed OS version the LibreOffice
compilation can use APIs from
Usage: --with-macosx-version-max-allowed=<version>
e. g.: --with-macos-version-max-allowed=10.8
see --with-macosx-sdk for more info
--with-system-icu-for-build=yes/no/force
Use icu already on system for build tools
(cross-compilation only).
--with-system-libeot Use libeot from operating system instead of building
and bundling it.
--with-system-librevenge
Use librevenge from operating system instead of
building and bundling it.
--with-system-libebook Use libebook from operating system instead of
building and bundling it.
--with-system-libetonyek
Use libetonyek from operating system instead of
building and bundling it.
--with-system-libfreehand
Use libfreehand from operating system instead of
building and bundling it.
--with-system-libodfgen Use libodfgen from operating system instead of
building and bundling it.
--with-system-libcdr Use libcdr from operating system instead of building
and bundling it.
--with-system-libmspub Use libmspub from operating system instead of
building and bundling it.
--with-system-libmwaw Use libmwaw from operating system instead of
building and bundling it.
--with-system-libpagemaker
Use libpagemaker from operating system instead of
building and bundling it.
--with-system-libvisio Use libvisio from operating system instead of
building and bundling it.
--with-system-libcmis Use libcmis from operating system instead of
building and bundling it.
--with-system-libwpd Use libwpd from operating system instead of building
and bundling it.
--with-system-lcms2 Use lcms2 from operating system instead of building
and bundling it.
--with-system-cppunit Use cppunit from operating system instead of
building and bundling it.
--with-system-libabw Use libabw from operating system instead of building
and bundling it.
--with-system-libwps Use libwps from operating system instead of building
and bundling it.
--with-system-libwpg Use libwpg from operating system instead of building
and bundling it.
--with-system-libatomic_ops
Use libatomic_ops from operating system instead of
building and bundling it.
--with-boost[=ARG] use Boost library from a standard location
(ARG=yes), from the specified location (ARG=<path>),
or disable it (ARG=no) [ARG=yes]
--with-boost-libdir=LIB_DIR
Force given directory for boost libraries. Note that
this will override library path detection, so use
this parameter only if default library detection
fails and you know exactly where your boost
libraries are located.
--with-boost-date-time[=special-lib]
use the Date_Time library from boost - it is
possible to specify a certain library for the linker
e.g.
--with-boost-date-time=boost_date_time-gcc-mt-d-1_33_1
--with-boost-iostreams[=special-lib]
use the IOStreams library from boost - it is
possible to specify a certain library for the linker
e.g.
--with-boost-iostreams=boost_iostreams-gcc-mt-d-1_33_1
--with-system-mdds Use mdds from operating system instead of building
and bundling it.
--with-system-glew Use glew from operating system instead of building
and bundling it.
--with-system-glyphy Use glyphy from operating system instead of building
and bundling it.
--with-system-nss Use nss from operating system instead of building
and bundling it.
--with-system-graphite Use graphite from operating system instead of
building and bundling it.
--with-system-orcus Use orcus from operating system instead of building
and bundling it.
--with-boost-system[=special-lib]
use the System library from boost - it is possible
to specify a certain library for the linker e.g.
--with-boost-system=boost_system-gcc-mt
--with-system-harfbuzz Use harfbuzz from operating system instead of
building and bundling it.
--with-x use the X Window System
--with-system-apr Use apr from operating system instead of building
and bundling it.
--with-system-serf Use serf from operating system instead of building
and bundling it.
--with-system-neon Use neon from operating system instead of building
and bundling it.
--with-system-openssl Use openssl from operating system instead of
building and bundling it.
--with-libgcrypt-prefix=PFX
prefix where LIBGCRYPT is installed (optional)
--with-system-redland Use redland from operating system instead of
building and bundling it.
--with-system-libexttextcat
Use libexttextcat from operating system instead of
building and bundling it.
--with-system-libpng Use libpng from operating system instead of building
and bundling it.
Some influential environment variables:
CC C compiler command
CFLAGS C compiler flags
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
nonstandard directory <lib dir>
LIBS libraries to pass to the linker, e.g. -l<library>
CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
you have headers in a nonstandard directory <include dir>
CPP C preprocessor
PKG_CONFIG path to pkg-config utility
PKG_CONFIG_PATH
directories to add to pkg-config's search path
PKG_CONFIG_LIBDIR
path overriding pkg-config's built-in search path
FONTCONFIG_CFLAGS
C compiler flags for FONTCONFIG, overriding pkg-config
FONTCONFIG_LIBS
linker flags for FONTCONFIG, overriding pkg-config
CXX C++ compiler command
CXXFLAGS C++ compiler flags
CXXCPP C++ preprocessor
CLUCENE_CFLAGS
C compiler flags for CLUCENE, overriding pkg-config
CLUCENE_LIBS
linker flags for CLUCENE, overriding pkg-config
LIBEOT_CFLAGS
C compiler flags for LIBEOT, overriding pkg-config
LIBEOT_LIBS linker flags for LIBEOT, overriding pkg-config
REVENGE_CFLAGS
C compiler flags for REVENGE, overriding pkg-config
REVENGE_LIBS
linker flags for REVENGE, overriding pkg-config
EBOOK_CFLAGS
C compiler flags for EBOOK, overriding pkg-config
EBOOK_LIBS linker flags for EBOOK, overriding pkg-config
ETONYEK_CFLAGS
C compiler flags for ETONYEK, overriding pkg-config
ETONYEK_LIBS
linker flags for ETONYEK, overriding pkg-config
FREEHAND_CFLAGS
C compiler flags for FREEHAND, overriding pkg-config
FREEHAND_LIBS
linker flags for FREEHAND, overriding pkg-config
ODFGEN_CFLAGS
C compiler flags for ODFGEN, overriding pkg-config
ODFGEN_LIBS linker flags for ODFGEN, overriding pkg-config
CDR_CFLAGS C compiler flags for CDR, overriding pkg-config
CDR_LIBS linker flags for CDR, overriding pkg-config
MSPUB_CFLAGS
C compiler flags for MSPUB, overriding pkg-config
MSPUB_LIBS linker flags for MSPUB, overriding pkg-config
MWAW_CFLAGS C compiler flags for MWAW, overriding pkg-config
MWAW_LIBS linker flags for MWAW, overriding pkg-config
PAGEMAKER_CFLAGS
C compiler flags for PAGEMAKER, overriding pkg-config
PAGEMAKER_LIBS
linker flags for PAGEMAKER, overriding pkg-config
VISIO_CFLAGS
C compiler flags for VISIO, overriding pkg-config
VISIO_LIBS linker flags for VISIO, overriding pkg-config
CMIS_CFLAGS C compiler flags for CMIS, overriding pkg-config
CMIS_LIBS linker flags for CMIS, overriding pkg-config
WPD_CFLAGS C compiler flags for WPD, overriding pkg-config
WPD_LIBS linker flags for WPD, overriding pkg-config
LCMS2_CFLAGS
C compiler flags for LCMS2, overriding pkg-config
LCMS2_LIBS linker flags for LCMS2, overriding pkg-config
CPPUNIT_CFLAGS
C compiler flags for CPPUNIT, overriding pkg-config
CPPUNIT_LIBS
linker flags for CPPUNIT, overriding pkg-config
FREETYPE_CFLAGS
C compiler flags for FREETYPE, overriding pkg-config
FREETYPE_LIBS
linker flags for FREETYPE, overriding pkg-config
ABW_CFLAGS C compiler flags for ABW, overriding pkg-config
ABW_LIBS linker flags for ABW, overriding pkg-config
WPS_CFLAGS C compiler flags for WPS, overriding pkg-config
WPS_LIBS linker flags for WPS, overriding pkg-config
WPG_CFLAGS C compiler flags for WPG, overriding pkg-config
WPG_LIBS linker flags for WPG, overriding pkg-config
LIBXSLT_CFLAGS
C compiler flags for LIBXSLT, overriding pkg-config
LIBXSLT_LIBS
linker flags for LIBXSLT, overriding pkg-config
LIBEXSLT_CFLAGS
C compiler flags for LIBEXSLT, overriding pkg-config
LIBEXSLT_LIBS
linker flags for LIBEXSLT, overriding pkg-config
LIBXML_CFLAGS
C compiler flags for LIBXML, overriding pkg-config
LIBXML_LIBS linker flags for LIBXML, overriding pkg-config
PYTHON the Python interpreter
FIREBIRD_CFLAGS
C compiler flags for FIREBIRD, overriding pkg-config
FIREBIRD_LIBS
linker flags for FIREBIRD, overriding pkg-config
ATOMIC_OPS_CFLAGS
C compiler flags for ATOMIC_OPS, overriding pkg-config
ATOMIC_OPS_LIBS
linker flags for ATOMIC_OPS, overriding pkg-config
CURL_CFLAGS C compiler flags for CURL, overriding pkg-config
CURL_LIBS linker flags for CURL, overriding pkg-config
MDDS_CFLAGS C compiler flags for MDDS, overriding pkg-config
MDDS_LIBS linker flags for MDDS, overriding pkg-config
GLEW_CFLAGS C compiler flags for GLEW, overriding pkg-config
GLEW_LIBS linker flags for GLEW, overriding pkg-config
GLYPHY_CFLAGS
C compiler flags for GLYPHY, overriding pkg-config
GLYPHY_LIBS linker flags for GLYPHY, overriding pkg-config
NSS_CFLAGS C compiler flags for NSS, overriding pkg-config
NSS_LIBS linker flags for NSS, overriding pkg-config
GRAPHITE_CFLAGS
C compiler flags for GRAPHITE, overriding pkg-config
GRAPHITE_LIBS
linker flags for GRAPHITE, overriding pkg-config
ORCUS_CFLAGS
C compiler flags for ORCUS, overriding pkg-config
ORCUS_LIBS linker flags for ORCUS, overriding pkg-config
HARFBUZZ_CFLAGS
C compiler flags for HARFBUZZ, overriding pkg-config
HARFBUZZ_LIBS
linker flags for HARFBUZZ, overriding pkg-config
XMKMF Path to xmkmf, Makefile generator for X Window System
XRENDER_CFLAGS
C compiler flags for XRENDER, overriding pkg-config
XRENDER_LIBS
linker flags for XRENDER, overriding pkg-config
XRANDR_CFLAGS
C compiler flags for XRANDR, overriding pkg-config
XRANDR_LIBS linker flags for XRANDR, overriding pkg-config
APR_CFLAGS C compiler flags for APR, overriding pkg-config
APR_LIBS linker flags for APR, overriding pkg-config
SERF_CFLAGS C compiler flags for SERF, overriding pkg-config
SERF_LIBS linker flags for SERF, overriding pkg-config
NEON_CFLAGS C compiler flags for NEON, overriding pkg-config
NEON_LIBS linker flags for NEON, overriding pkg-config
OPENSSL_CFLAGS
C compiler flags for OPENSSL, overriding pkg-config
OPENSSL_LIBS
linker flags for OPENSSL, overriding pkg-config
GNUTLS_CFLAGS
C compiler flags for GNUTLS, overriding pkg-config
GNUTLS_LIBS linker flags for GNUTLS, overriding pkg-config
REDLAND_CFLAGS
C compiler flags for REDLAND, overriding pkg-config
REDLAND_LIBS
linker flags for REDLAND, overriding pkg-config
HUNSPELL_CFLAGS
C compiler flags for HUNSPELL, overriding pkg-config
HUNSPELL_LIBS
linker flags for HUNSPELL, overriding pkg-config
MYTHES_CFLAGS
C compiler flags for MYTHES, overriding pkg-config
MYTHES_LIBS linker flags for MYTHES, overriding pkg-config
COINMP_CFLAGS
C compiler flags for COINMP, overriding pkg-config
COINMP_LIBS linker flags for COINMP, overriding pkg-config
LIBEXTTEXTCAT_CFLAGS
C compiler flags for LIBEXTTEXTCAT, overriding pkg-config
LIBEXTTEXTCAT_LIBS
linker flags for LIBEXTTEXTCAT, overriding pkg-config
GTK3_CFLAGS C compiler flags for GTK3, overriding pkg-config
GTK3_LIBS linker flags for GTK3, overriding pkg-config
DBUS_CFLAGS C compiler flags for DBUS, overriding pkg-config
DBUS_LIBS linker flags for DBUS, overriding pkg-config
GTK_CFLAGS C compiler flags for GTK, overriding pkg-config
GTK_LIBS linker flags for GTK, overriding pkg-config
GTHREAD_CFLAGS
C compiler flags for GTHREAD, overriding pkg-config
GTHREAD_LIBS
linker flags for GTHREAD, overriding pkg-config
GTK_PRINT_CFLAGS
C compiler flags for GTK_PRINT, overriding pkg-config
GTK_PRINT_LIBS
linker flags for GTK_PRINT, overriding pkg-config
GIO_CFLAGS C compiler flags for GIO, overriding pkg-config
GIO_LIBS linker flags for GIO, overriding pkg-config
TELEPATHY_CFLAGS
C compiler flags for TELEPATHY, overriding pkg-config
TELEPATHY_LIBS
linker flags for TELEPATHY, overriding pkg-config
GSTREAMER_1_0_CFLAGS
C compiler flags for GSTREAMER_1_0, overriding pkg-config
GSTREAMER_1_0_LIBS
linker flags for GSTREAMER_1_0, overriding pkg-config
GSTREAMER_0_10_CFLAGS
C compiler flags for GSTREAMER_0_10, overriding pkg-config
GSTREAMER_0_10_LIBS
linker flags for GSTREAMER_0_10, overriding pkg-config
LIBGLTF_CFLAGS
C compiler flags for LIBGLTF, overriding pkg-config
LIBGLTF_LIBS
linker flags for LIBGLTF, overriding pkg-config
DCONF_CFLAGS
C compiler flags for DCONF, overriding pkg-config
DCONF_LIBS linker flags for DCONF, overriding pkg-config
POPPLER_CFLAGS
C compiler flags for POPPLER, overriding pkg-config
POPPLER_LIBS
linker flags for POPPLER, overriding pkg-config
QT4_CFLAGS C compiler flags for QT4, overriding pkg-config
QT4_LIBS linker flags for QT4, overriding pkg-config
KDE_GLIB_CFLAGS
C compiler flags for KDE_GLIB, overriding pkg-config
KDE_GLIB_LIBS
linker flags for KDE_GLIB, overriding pkg-config
GOBJECT_CFLAGS
C compiler flags for GOBJECT, overriding pkg-config
GOBJECT_LIBS
linker flags for GOBJECT, overriding pkg-config
BZIP2_CFLAGS
C compiler flags for BZIP2, overriding pkg-config
BZIP2_LIBS linker flags for BZIP2, overriding pkg-config
CAIRO_CFLAGS
C compiler flags for CAIRO, overriding pkg-config
CAIRO_LIBS linker flags for CAIRO, overriding pkg-config
AVAHI_CFLAGS
C compiler flags for AVAHI, overriding pkg-config
AVAHI_LIBS linker flags for AVAHI, overriding pkg-config
LIBLANGTAG_CFLAGS
C compiler flags for LIBLANGTAG, overriding pkg-config
LIBLANGTAG_LIBS
linker flags for LIBLANGTAG, overriding pkg-config
LIBPNG_CFLAGS
C compiler flags for LIBPNG, overriding pkg-config
LIBPNG_LIBS linker flags for LIBPNG, overriding pkg-config
Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
Report bugs to the package provider.
LibreOffice home page: <http://documentfoundation.org/>.
|