author | Don Pellegrino <don@drexel.edu> | 2011-01-18 04:51:54 (GMT) |
---|---|---|
committer | Don Pellegrino <don@drexel.edu> | 2011-01-18 04:51:54 (GMT) |
commit | b5f41e0b9d5d7fa9924342a3039e9ce11616f5cd (patch) (side-by-side diff) | |
tree | d3b1ca4400d1d314ca7b2d9cf9b30421b7a9ec44 | |
parent | cd17ec39ed233d729afc23e870f68ef03fb9e94a (diff) | |
download | exp005-b5f41e0b9d5d7fa9924342a3039e9ce11616f5cd.zip exp005-b5f41e0b9d5d7fa9924342a3039e9ce11616f5cd.tar.gz exp005-b5f41e0b9d5d7fa9924342a3039e9ce11616f5cd.tar.bz2 |
Added a shell script with examples for setting up the pre-configure environment on a Debian GNU/Linux system.master
-rwxr-xr-x | doc/env-debian.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/env-debian.sh b/doc/env-debian.sh new file mode 100755 index 0000000..e040043 --- a/dev/null +++ b/doc/env-debian.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# This script was developed against a Debian GNU/Linux Sid +# distribution. + +echo "Setting CPPFLAGS." + +export CPPFLAGS="\ +-I${INSTHOME}/sqllib/include \ +-I/usr/include/xulrunner-1.9.1/unstable" + +echo CPPFLAGS=$CPPFLAGS + +echo "Setting LDFLAGS." + +export LDFLAGS="\ +-L${INSTHOME}/sqllib/lib" + +echo LDFLAGS=$LDFLAGS |