diff options
author | Steve Price <steve@FreeBSD.org> | 2000-02-13 17:01:01 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-02-13 17:01:01 +0000 |
commit | b3a62343631045befbc26ccb6a050a6ab206f3c8 (patch) | |
tree | 512336750f8b3114321323bb5aee7c69ef0ba7f8 /devel/t1lib | |
parent | 4c90d536e2c88573973c4ef0ed1ee5033b27e435 (diff) | |
download | ports-b3a62343631045befbc26ccb6a050a6ab206f3c8.tar.gz ports-b3a62343631045befbc26ccb6a050a6ab206f3c8.zip |
Remove hang from configure script. Use .S instead of .s when compiling
ASM and C files on the same commandline to keep cc(1) from hanging
indefinitely.
Notes
Notes:
svn path=/head/; revision=25760
Diffstat (limited to 'devel/t1lib')
-rw-r--r-- | devel/t1lib/files/patch-aa | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/t1lib/files/patch-aa b/devel/t1lib/files/patch-aa new file mode 100644 index 000000000000..9c51bd52ae25 --- /dev/null +++ b/devel/t1lib/files/patch-aa @@ -0,0 +1,13 @@ +--- configure.orig Sat Feb 12 12:26:08 2000 ++++ configure Sat Feb 12 12:26:38 2000 +@@ -2855,8 +2855,8 @@ + echo $ac_n "(cached) $ac_c" 1>&6 + else + saved_libs=$LIBS +-LIBS="conftest_asm.s $LIBS" +-cat > conftest_asm.s <<EOF ++LIBS="conftest_asm.S $LIBS" ++cat > conftest_asm.S <<EOF + .globl _ac_test + _ac_test: + .long 0 |