svn commit: r555572 - in head/lang/rexx-imc: . files

Mark Linimon linimon at FreeBSD.org
Tue Nov 17 17:42:48 UTC 2020


Author: linimon
Date: Tue Nov 17 17:42:48 2020
New Revision: 555572
URL: https://svnweb.freebsd.org/changeset/ports/555572

Log:
  Fix build on aarch64.
  
  While here, pet portlint.
  
  PR:		251098
  Submitted by:	mikael

Modified:
  head/lang/rexx-imc/Makefile
  head/lang/rexx-imc/files/patch-Makefile.REXXimc

Modified: head/lang/rexx-imc/Makefile
==============================================================================
--- head/lang/rexx-imc/Makefile	Tue Nov 17 17:37:53 2020	(r555571)
+++ head/lang/rexx-imc/Makefile	Tue Nov 17 17:42:48 2020	(r555572)
@@ -11,10 +11,10 @@ MASTER_SITES=	http://www.cs.ox.ac.uk/people/ian.collie
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Procedural programming language designed by IBM's UK Laboratories
 
-CONFLICTS=	rexx-regina-* oorexx-[0-9]*
-
 BROKEN_armv6=		fails to link: /nxb-bin/usr/bin/ld: hidden symbol __aeabi_uidivmod in libgcc.a is referenced by DSO
 BROKEN_armv7=		fails to link: /nxb-bin/usr/bin/ld: hidden symbol __aeabi_uidivmod in libgcc.a is referenced by DSO
+
+CONFLICTS=	rexx-regina-* oorexx-[0-9]*
 
 HAS_CONFIGURE=		yes
 CONFIGURE_SCRIPT=	Make

Modified: head/lang/rexx-imc/files/patch-Makefile.REXXimc
==============================================================================
--- head/lang/rexx-imc/files/patch-Makefile.REXXimc	Tue Nov 17 17:37:53 2020	(r555571)
+++ head/lang/rexx-imc/files/patch-Makefile.REXXimc	Tue Nov 17 17:42:48 2020	(r555572)
@@ -35,3 +35,12 @@
  
  $(LIBDIR)/librexx.a: $(LIBFILES)
  	$(VERBOSE) "$(LIBDIR)/librexx.a:"
+@@ -143,7 +144,7 @@ interface.o: $(SRC)/interface.c $(HFILES)
+ rxmathfn.rxfn: $(SRC)/rxmathfn.c $(SRC)/const.h $(SRC)/functions.h
+ 	$(VERBOSE) "rxmathfn.rxfn:"
+ 	$(CC) $(OPTFLAG) $(CCFLAG) -c $(PIC) -I$(SRC) $(SRC)/rxmathfn.c
+-	$(LD) $(SOFLAG) -o rxmathfn.rxfn rxmathfn.o -lm
++	$(LD) $(SOFLAG) -o rxmathfn.rxfn rxmathfn.o -L/usr/lib -lm
+ 	@rm rxmathfn.o
+ 
+ # If the source is in the current directory, this rule can be used.


More information about the svn-ports-all mailing list