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

Antonio Rojas arojas at archlinux.org
Wed Apr 24 06:24:21 UTC 2019


    Date: Wednesday, April 24, 2019 @ 06:24:21
  Author: arojas
Revision: 453266

Fix build with poppler 0.76, take 4

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-24 03:05:02 UTC (rev 453265)
+++ PKGBUILD	2019-04-24 06:24:21 UTC (rev 453266)
@@ -46,7 +46,7 @@
         gambas-poppler-0.76.patch)
 sha512sums=('b6c7cae4b953b4303bf4b7856fd17611c1b2ea0d3253f3d2c19c04cb7836a08da49b50f1d0412353e5fc869935b8a24c4b9a93b1893ecd290bfa54774ad01270'
             'de829f45c874958dc0f60649b13605d67d9173c8676a2accb518131520e366aaf724fd7a817ee69be0c9280f27bef339df6d973e718580754737c3c4640fa37d'
-            '076297e49a1a056c76d376a29b4301ee1f1a71f44973679d4fb15eb5f724fb90ff782f2ed25555279e596cb6df3b0d32da6e9a15161a5eda3303e6de04f7c69a')
+            'a30c3607a84b17f2f2872545386b9fbad2e2c64bcf6333953d1cdfbf39f929d290b72528cdd49df3edb1651f0d4aa1daf420fc2786d33fbd5328a32da954dc3f')
 
 create_dirs() {
   install -dm755 ${pkgdir}/usr/lib/gambas3

Modified: gambas-poppler-0.76.patch
===================================================================
--- gambas-poppler-0.76.patch	2019-04-24 03:05:02 UTC (rev 453265)
+++ gambas-poppler-0.76.patch	2019-04-24 06:24:21 UTC (rev 453266)
@@ -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<OutlineItem*>*)THIS->pindex[GB.Count(POINTER(THIS->pindex))-1];
++	THIS->index=(const 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)
  	{
@@ -37,7 +37,7 @@
  
  		void **pindex;            // Parent of current index entries
 -		const_GooList *index;     // Current entries
-+		std::vector<OutlineItem*> *index;     // Current entries
++		const std::vector<OutlineItem*> *index;     // Current entries
  		
  		uint currindex;           // Current entry
  		uint *oldindex;           // Parent entry



More information about the arch-commits mailing list