diff options
author | adam <adam> | 2010-11-11 07:44:10 +0000 |
---|---|---|
committer | adam <adam> | 2010-11-11 07:44:10 +0000 |
commit | f82082c4aa54457ce5d9f7c144da5af1ddb8d22d (patch) | |
tree | e71bde077c25ef489730bb63bdd057fd43fe1df5 /lang/f2c/files | |
parent | 6625f87183836e584891fb73eefc0bd38033f5b4 (diff) | |
download | pkgsrc-f82082c4aa54457ce5d9f7c144da5af1ddb8d22d.tar.gz |
* Accept -isysroot option (Darwin)
* On Darwin, optionally set F2C_F77_CPP, so it can be set in mk.conf
Diffstat (limited to 'lang/f2c/files')
-rw-r--r-- | lang/f2c/files/f2c-f77.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/f2c/files/f2c-f77.in b/lang/f2c/files/f2c-f77.in index f59c5aadba1..dd9a8711429 100644 --- a/lang/f2c/files/f2c-f77.in +++ b/lang/f2c/files/f2c-f77.in @@ -28,6 +28,8 @@ PATH=$PATH:/bin:/usr/bin:@PREFIX@/bin # # -arch Compile for the specified architecture (Darwin) # +# -isysroot Change root directory for headers and libraries +# # -c Do not call linker, leave relocatables in *.o. # # -C Check that subscripts are in bounds. @@ -294,7 +296,11 @@ do shift 2; ;; - -arch) CFLAGS="$CFLAGS -arch $2" + -arch) CFLAGS="$CFLAGS $1 $2" + shift 2 + ;; + + -isysroot) CFLAGS="$CFLAGS $1 $(shell_quote "$2")" shift 2 ;; |