mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
bf57334ca0
- The maintainer is now a committer. Reviewed by: Kim Culhan <kimc@w8hd.org>
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
--- src/config/InterViews/rules.def.orig Wed Aug 25 07:47:08 1993
|
|
+++ src/config/InterViews/rules.def Sun Sep 5 16:21:37 1999
|
|
@@ -399,6 +399,30 @@
|
|
/*
|
|
* Make a shared library.
|
|
*/
|
|
+#if defined(FreeBSDArchitecture)
|
|
+#define NormalDynamicSharedLibraryTarget(libname,rev,depobjs,ldobjs) @@\
|
|
+AOUT = Concat(lib,libname.so.rev) @@\
|
|
+SHARED_CCFLAGS = SharedCCFlags @@\
|
|
+ @@\
|
|
+AllTarget(Concat(lib,libname.so.rev)) @@\
|
|
+ @@\
|
|
+Concat(lib,libname.so.rev): depobjs @@\
|
|
+ @echo "building $@" @@\
|
|
+ $(RM) $@~ @@\
|
|
+.if defined(PORTOBJFORMAT) && ($(PORTOBJFORMAT) == "elf") @@\
|
|
+ $(CC) -shared -Wl,-soname,Concat(lib,libname.so.rev) -o $@~ ldobjs @@\
|
|
+.else @@\
|
|
+ $(LD) -o $@~ -Bshareable ldobjs @@\
|
|
+.endif @@\
|
|
+ $(RM) $@ @@\
|
|
+ $(MV) $@~ $@ @@\
|
|
+.if defined(PORTOBJFORMAT) && ($(PORTOBJFORMAT) == "elf") @@\
|
|
+ $(LN) $@ Concat(lib,libname.so) @@\
|
|
+.endif @@\
|
|
+ @@\
|
|
+clean:: @@\
|
|
+ $(RM) Concat(lib,libname.so.rev)
|
|
+#else
|
|
#ifndef NormalDynamicSharedLibraryTarget
|
|
#if defined(sun) && OSMajorVersion < 5
|
|
#define NormalDynamicSharedLibraryTarget(libname,rev,depobjs,ldobjs) @@\
|
|
@@ -432,6 +456,7 @@
|
|
@@\
|
|
clean:: @@\
|
|
$(RM) Concat(lib,libname.so.rev)
|
|
+#endif
|
|
#endif
|
|
#endif
|
|
|