1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/graphics/tiff/files/patch-ab
Steve Price 92c1a433ea Update to version 3.4-beta37.
PR:		9641
Submitted by:	Mikhail Teterin <mi@aldan.algebra.com>
1999-05-10 19:57:21 +00:00

19 lines
438 B
Plaintext

--- configure.orig Tue Sep 2 13:54:16 1997
+++ configure Sat Jan 23 10:58:22 1999
@@ -1146,5 +1146,13 @@
*-freebsd*)
- DSOSUF=so.${DIST_MAJOR}.0
+ DSOSUF=so
LIBCOPTS='-fpic -fPIC'
- DSO=FREEBSD
+ if [ $PORTOBJFORMAT = elf ]; then
+ DSOSUF_VERSION=${DSOSUF}.4
+ DSOOPTS='-shared'
+ DSO=FREEBSD_ELF
+ else
+ DSOSUF_VERSION=${DSOSUF}.4.0
+ DSOOPTS='-Bshareable'
+ DSO=FREEBSD_AOUT
+ fi
TIFFLIBREF='-L${DEPTH}/libtiff -ltiff'