File: autogen.rc

package info (click to toggle)
gnupg2 2.2.12-1%2Bdeb10u2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 47,260 kB
  • sloc: ansic: 231,704; sh: 7,598; lisp: 6,034; makefile: 1,604; awk: 126; xml: 51; sed: 16; python: 16; php: 14; perl: 13
file content (46 lines) | stat: -rw-r--r-- 1,059 bytes parent folder | download | duplicates (5)
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
# autogen.sh configuration for GnuPG                           -*- sh -*-

display_name=GnuPG

#version_parts=3

case "$myhost:$myhostsub" in
  w32:ce)
    extraoptions="--enable-dirmngr-auto-start --disable-scdaemon "
    extraoptions="$extraoptions --disable-zip"
    ;;
  w32:)
    extraoptions="--enable-gpgtar"
    ;;
esac

case "$myhost" in
  w32)
    configure_opts="
      --with-gpg-error-prefix=@SYSROOT@
      --with-ksba-prefix=@SYSROOT@
      --with-libgcrypt-prefix=@SYSROOT@
      --with-libassuan-prefix=@SYSROOT@
      --with-zlib=@SYSROOT@
      --with-regex=@SYSROOT@
      --with-npth-prefix=@SYSROOT@
      --disable-g13
      "
    ;;

  amd64)
    configure_opts="
      --with-gpg-error-prefix=@SYSROOT@
      --with-ksba-prefix=@SYSROOT@
      --with-libgcrypt-prefix=@SYSROOT@
      --with-libassuan-prefix=@SYSROOT@
      --with-zlib=/usr/x86_64-linux-gnu/usr
      --with-pth-prefix=/usr/x86_64-linux-gnu/usr
     "
    ;;
esac


extra_aclocal_flags=""

final_info="./configure --sysconfdir=/etc --enable-maintainer-mode  && make"