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) (unidiff) | |
tree | d3b1ca4400d1d314ca7b2d9cf9b30421b7a9ec44 | |
parent | cd17ec39ed233d729afc23e870f68ef03fb9e94a (diff) | |
download | exp005-master.zip exp005-master.tar.gz exp005-master.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 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | # This script was developed against a Debian GNU/Linux Sid | ||
4 | # distribution. | ||
5 | |||
6 | echo "Setting CPPFLAGS." | ||
7 | |||
8 | export CPPFLAGS="\ | ||
9 | -I${INSTHOME}/sqllib/include \ | ||
10 | -I/usr/include/xulrunner-1.9.1/unstable" | ||
11 | |||
12 | echo CPPFLAGS=$CPPFLAGS | ||
13 | |||
14 | echo "Setting LDFLAGS." | ||
15 | |||
16 | export LDFLAGS="\ | ||
17 | -L${INSTHOME}/sqllib/lib" | ||
18 | |||
19 | echo LDFLAGS=$LDFLAGS | ||