svn commit: r510748 - head/devel/pecl-eio/files

Mark Linimon linimon at FreeBSD.org
Sun Sep 1 23:23:53 UTC 2019


Author: linimon
Date: Sun Sep  1 23:23:52 2019
New Revision: 510748
URL: https://svnweb.freebsd.org/changeset/ports/510748

Log:
  Fix obvious typo in upstream code:
  
    ./libeio/ecb.h:481:3: error: use of undeclared identifier 'retrurn'
  
  This only affects big-endian systems, but still needs to be reported
  to the upstream maintainers.
  
  Approved by:	portmgr (tier-2 blankent)

Modified:
  head/devel/pecl-eio/files/patch-libeio__ecb.h

Modified: head/devel/pecl-eio/files/patch-libeio__ecb.h
==============================================================================
--- head/devel/pecl-eio/files/patch-libeio__ecb.h	Sun Sep  1 22:48:46 2019	(r510747)
+++ head/devel/pecl-eio/files/patch-libeio__ecb.h	Sun Sep  1 23:23:52 2019	(r510748)
@@ -15,3 +15,12 @@
  #endif
  
  /* try to tell the compiler that some condition is definitely true */
+@@ -478,7 +478,7 @@ ecb_byteorder_helper (void)
+ #elif __BYTE_ORDER__ && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
+   return 0x44;
+ #elif __BYTE_ORDER__ && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
+-  retrurn 0x11;
++  return 0x11;
+ #else
+   union
+   {


More information about the svn-ports-all mailing list