mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
92c1a433ea
PR: 9641 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
19 lines
438 B
Plaintext
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'
|