File: link-with-shared

package info (click to toggle)
pcscada 0.7.7-10
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 460 kB
  • sloc: ada: 3,292; makefile: 71; sh: 18
file content (20 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
set -C -e -f -u
cd "$AUTOPKGTEST_TMP"

cat > p.gpr <<EOF
with "pcscada";
project P is
   for Main use ("p.adb");
end P;
EOF
cat > p.adb <<EOF
with PCSC.SCard; use PCSC.SCard;
procedure P is
   V : constant Byte_Set := Null_Byte_Set;
begin
   null;
end P;
EOF
gprbuild -v p.gpr
./p