mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-03-02 02:06:59 +08:00
13 lines
304 B
Bash
Executable File
13 lines
304 B
Bash
Executable File
#!/bin/sh
|
|
trap "/bin/rm -f /tmp/$$.*" 0 1 2 3 15
|
|
/bin/cat >$$.c <<EOF
|
|
extern int foo;
|
|
EOF
|
|
for i in `cc -v -c $$.c 2>&1`
|
|
do
|
|
case "$i" in
|
|
-D*) echo "$i" | /usr/bin/sed 's/^-D//';;
|
|
-A*) /bin/test "2.7.2.1" && echo "$i" | /usr/bin/sed 's/^-A\(.*\)(\(.*\))/\1=\2/';;
|
|
esac
|
|
done
|