File: xmlada-config.in

package info (click to toggle)
libxmlada 4.4.2014-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,612 kB
  • ctags: 74
  • sloc: ada: 44,182; sh: 3,077; makefile: 345; perl: 128; xml: 105; python: 48
file content (116 lines) | stat: -rw-r--r-- 2,223 bytes parent folder | download
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
#!/bin/sh
# @configure_input@

prefix=/usr

exec_prefix=@exec_prefix@
libdir=@libdir@
ali_dir=@libdir@/ada/adalib/xmlada
includedir=/usr/share/ada/adainclude/xmlada

cflags="-I${includedir}"
mflags_relocatable="-aI${includedir} -aO${ali_dir}"
mflags_static="-aI${includedir} -aO${ali_dir}"
libs_relocatable="-L${libdir} -lxmlada"
libs_static="${libdir}/libxmlada.a"

show_cflags=0
show_mflags=1
show_libs=1
libtype=relocatable

usage()
{
   cat <<EOF
Usage: xmlada-config [OPTIONS]
Options:
        No option:
            Output all the flags (compiler and linker) required
            to compiler your program
        [--prefix]
            Output the directory in which XML/Ada is installed
        [--version|-v]
            Output the version of XML/Ada
        [--libs]
            Output the linker flags to use for XML/Ada
        [--cflags]
            Output the compiler flags to use for XML/Ada
        [--static]
            Output all the flags (compiler and linker) required to
            compile a static version of your program
        [--shared]
            Output flags to link with a shared library
EOF
}

while test $# -gt 0; do
  case "$1" in
  -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  *) optarg= ;;
  esac

  case $1 in
    --help|-h)
      usage 1>&2
      exit 1
      ;;
    --prefix)
      echo $prefix
      exit 0
      ;;
    --version|-v)
      echo XmlAda @PACKAGE_VERSION@
      exit 0
      ;;
    --libs)
      show_libs=1
      show_cflags=0
      show_mflags=0
      ;;
    --cflags)
      show_libs=0
      show_cflags=1
      show_mflags=0
      ;;
    --static)
      libtype=static
      ;;
    --shared)
      libtype=relocatable
      ;;
    *)
      usage 1>&2
      exit 1
      ;;
  esac
  shift
done

result=""

if [ $show_cflags = 1 ]; then
   result="$cflags"
fi

if [ $show_mflags = 1 ]; then
   if [ $libtype = static ]; then
      result="$mflags_static"
   else
      result="$mflags_relocatable"
   fi

   if [ $show_libs = 1 ]; then
      result="$result -largs "
   fi
fi

if [ $show_libs = 1 ]; then
   if [ $libtype = static ]; then
      result="${result}${libs_static}"
   else
      result="${result}${libs_relocatable}"
   fi
fi

echo $result