[arch-commits] Commit in gambas3/trunk (PKGBUILD gambas-poppler-0.76.patch)

Antonio Rojas arojas at archlinux.org
Tue Apr 23 22:32:41 UTC 2019


    Date: Tuesday, April 23, 2019 @ 22:32:40
  Author: arojas
Revision: 453256

Fix build with poppler 0.76, take 2

Modified:
  gambas3/trunk/PKGBUILD
  gambas3/trunk/gambas-poppler-0.76.patch

---------------------------+
 PKGBUILD                  |    2 +-
 gambas-poppler-0.76.patch |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-04-23 22:23:15 UTC (rev 453255)
+++ PKGBUILD	2019-04-23 22:32:40 UTC (rev 453256)
@@ -46,7 +46,7 @@
         gambas-poppler-0.76.patch)
 sha512sums=('b6c7cae4b953b4303bf4b7856fd17611c1b2ea0d3253f3d2c19c04cb7836a08da49b50f1d0412353e5fc869935b8a24c4b9a93b1893ecd290bfa54774ad01270'
             'de829f45c874958dc0f60649b13605d67d9173c8676a2accb518131520e366aaf724fd7a817ee69be0c9280f27bef339df6d973e718580754737c3c4640fa37d'
-            '41c633291fd8508f319006e37ade3965cef7e008b3cc0c46400efff423fe2f808ed43723389d43d9b9af95ed2faeccf4a02d3f3f6ada87dd0c67eafb9ac5f5d5')
+            '0452938752b3558a94d1963418342e0957efe3fdd11472a4cdad75be2205ab8fe54c8b58ba2223ecd189a93ec3985c2b68a4eae2926138c8710815cc457ffb2a')
 
 create_dirs() {
   install -dm755 ${pkgdir}/usr/lib/gambas3

Modified: gambas-poppler-0.76.patch
===================================================================
--- gambas-poppler-0.76.patch	2019-04-23 22:23:15 UTC (rev 453255)
+++ gambas-poppler-0.76.patch	2019-04-23 22:32:40 UTC (rev 453256)
@@ -15,7 +15,7 @@
  	if (!THIS->pindex) { GB.ReturnBoolean(true); return; }
  
 -	THIS->index=(GooList*)THIS->pindex[GB.Count(POINTER(THIS->pindex))-1];
-+	THIS->index=(std::vector<void*>)THIS->pindex[GB.Count(POINTER(THIS->pindex))-1];
++	THIS->index=(std::vector<OutlineItem*>*)THIS->pindex[GB.Count(POINTER(THIS->pindex))-1];
  	THIS->currindex=THIS->oldindex[GB.Count(POINTER(THIS->pindex))-1];
  	if (GB.Count(POINTER(THIS->pindex))==1)
  	{
@@ -36,7 +36,7 @@
  
  		void **pindex;            // Parent of current index entries
 -		const_GooList *index;     // Current entries
-+		std::vector<void*> index;     // Current entries
++		std::vector<OutlineItem*> *index;     // Current entries
  		
  		uint currindex;           // Current entry
  		uint *oldindex;           // Parent entry



More information about the arch-commits mailing list