1998-03-05 00:53:54 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
2008-10-14 19:46:33 +08:00
|
|
|
export CPPFLAGS
|
1999-07-27 07:39:34 +08:00
|
|
|
export CFLAGS
|
|
|
|
export LDFLAGS
|
|
|
|
|
2009-11-26 15:46:48 +08:00
|
|
|
autoreconf -i
|
1998-03-05 00:53:54 +08:00
|
|
|
|
2008-10-14 19:46:33 +08:00
|
|
|
case "$1" in
|
|
|
|
"--noconfigure")
|
1998-03-05 00:53:54 +08:00
|
|
|
exit 0;
|
2008-10-14 19:46:33 +08:00
|
|
|
;;
|
|
|
|
"--rpmconfigure")
|
|
|
|
shift
|
|
|
|
eval "`rpm --eval %configure`" "$@"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
./configure "$@"
|
|
|
|
;;
|
|
|
|
esac
|