83509d9a0f
version was left at 1.0. Oops. The old tiff (3.3) installed as libtiff.so.3.3. Install tiff34 as libtiff.so.3.4 but keep the libtiff34 link at version 1.0. confusing but it seems to work correctly. Update all ports that depend upon tiff so the dependency is on tiff.3.4.
27 lines
521 B
Plaintext
27 lines
521 B
Plaintext
--- configure.orig Tue Apr 30 00:16:17 1996
|
|
+++ configure Wed Feb 11 01:04:47 1998
|
|
@@ -1140,6 +1140,23 @@
|
|
DSOOPTS='-shared'
|
|
DSO=OSF
|
|
;;
|
|
+ *-freebsd*)
|
|
+ DSOSUF=so
|
|
+ DSOSUF_VERSION=${DSOSUF}.1.0
|
|
+ LIBCOPTS='-fpic -DPIC'
|
|
+ DSOOPTS='-Bshareable'
|
|
+ DSO=FREEBSD
|
|
+ ;;
|
|
+ alpha-*-openbsd*)
|
|
+ DSO=no
|
|
+ ;;
|
|
+ *-openbsd*)
|
|
+ DSOSUF=so
|
|
+ DSOSUF_VERSION=${DSOSUF}.3.4
|
|
+ LIBCOPTS='-fpic -DPIC'
|
|
+ DSOOPTS='-Bshareable'
|
|
+ DSO=FREEBSD
|
|
+ ;;
|
|
*) DSO=no;;
|
|
esac
|
|
test -z "$DSOSUF_VERSION" && DSOSUF_VERSION=${DSOSUF}
|