summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/librdkafka-2.1.0/mklove/modules/configure.builtin
blob: 796528008de0e503088eae34c4465a41993b6bd8 (plain)
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
#!/bin/bash
#
# mklove builtin checks and options
# Sets:
#  prefix, etc..


mkl_option "Standard" prefix "--prefix=PATH" \
    "Install arch-independent files in PATH" "/usr/local"
mkl_option "Standard" exec_prefix "--exec-prefix=PATH" \
    "Install arch-dependent files in PATH" "\$prefix"
mkl_option "Standard" bindir "--bindir=PATH" "User executables" "\$exec_prefix/bin"
mkl_option "Standard" sbindir "--sbindir=PATH" "System admin executables" \
    "\$exec_prefix/sbin"
mkl_option "Standard" libexecdir "--libexecdir=PATH" "Program executables" \
    "\$exec_prefix/libexec"
mkl_option "Standard" datadir "--datadir=PATH" "Read-only arch-independent data" \
    "\$prefix/share"
mkl_option "Standard" sysconfdir "--sysconfdir=PATH" "Configuration data" \
    "\$prefix/etc"
mkl_option "Standard" sharedstatedir "--sharedstatedir=PATH" \
    "Modifiable arch-independent data" "\$prefix/com"
mkl_option "Standard" localstatedir "--localstatedir=PATH" \
    "Modifiable local state data" "\$prefix/var"
mkl_option "Standard" runstatedir "--runstatedir=PATH" \
    "Modifiable per-process data" "\$prefix/var/run"
mkl_option "Standard" libdir "--libdir=PATH" "Libraries" "\$exec_prefix/lib"
mkl_option "Standard" includedir "--includedir=PATH" "C/C++ header files" \
    "\$prefix/include"
mkl_option "Standard" infodir "--infodir=PATH" "Info documentation" "\$prefix/info"
mkl_option "Standard" mandir "--mandir=PATH" "Manual pages" "\$prefix/man"

mkl_option "Configure tool" "" "--list-modules" "List loaded mklove modules"
mkl_option "Configure tool" "" "--list-checks" "List checks"
mkl_option "Configure tool" env:MKL_FAILFATAL "--fail-fatal" "All failures are fatal"
mkl_option "Configure tool" env:MKL_NOCACHE "--no-cache" "Dont use or generate config.cache"
mkl_option "Configure tool" env:MKL_DEBUG "--debug" "Enable configure debugging"
mkl_option "Configure tool" env:MKL_CLEAN "--clean" "Remove generated configure files"
mkl_option "Configure tool" "" "--reconfigure" "Rerun configure with same arguments as last run"
mkl_option "Configure tool" env:MKL_NO_DOWNLOAD "--no-download" "Disable downloads of required mklove modules"
mkl_option "Configure tool" env:MKL_UPDATE_MODS "--update-modules" "Update modules from global repository"
mkl_option "Configure tool" env:MKL_REPO_URL "--repo-url=URL_OR_PATH" "Override mklove modules repo URL" "$MKL_REPO_URL"
mkl_option "Configure tool" "" "--help" "Show configure usage"


# These autoconf compatibility options are ignored by mklove
mkl_toggle_option "Compatibility" "mk:COMPAT_MAINT_MODE" "--enable-maintainer-mode" "Maintainer mode (no-op)"
mkl_option "Compatibility" "mk:PROGRAM_PREFIX" "--program-prefix=PFX" "Program prefix (no-op)"
mkl_option "Compatibility" "mk:COMPAT_DISABLE_DEP_TRACK" "--disable-dependency-tracking" "Disable dependency tracking (no-op)"
mkl_option "Compatibility" "mk:COMPAT_DISABLE_SILENT_RULES" "--disable-silent-rules" "Verbose build output (no-op)"
mkl_option "Compatibility" "mk:COMPAT_SILENT" "--silent" "Less verbose build output (no-op)"
mkl_toggle_option "Compatibility" "mk:COMPAT_ENABLE_SHARED" "--enable-shared" "Build shared library (no-op)"
mkl_toggle_option "Compatibility" "mk:COMPAT_DISABLE_OPT_CHECK" '--enable-option-checking=*' "Disable configure option checking (no-op)"


mkl_option "Dependency"  env:MKL_INSTALL_DEPS "--install-deps" "Attempt to install missing dependencies"
mkl_option "Dependency" env:MKL_SOURCE_DEPS_ONLY "--source-deps-only" "Only perform source builds of dependencies, not using any package managers"


function checks {

    if [[ ! -z $libdir ]]; then
	mkl_mkvar_append "libdir" LDFLAGS "-L${libdir}"
    fi

    if [[ ! -z $includedir ]]; then
	mkl_mkvar_append "includedir" CPPFLAGS "-I${includedir}"
    fi

}