View | Details | Raw Unified | Return to bug 222424
Collapse All | Expand All

(-)liblas12/Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	liblas12
4
PORTNAME=	liblas12
5
PORTVERSION=	1.2.1
5
PORTVERSION=	1.2.1
6
PORTREVISION=	1
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
8
8
MAINTAINER=	rhurlin@gwdg.de
9
MAINTAINER=	rhurlin@gwdg.de
(-)liblas12/files/patch-src_las__c__api.cpp (+20 lines)
Line 0 Link Here
1
--- src/las_c_api.cpp.orig	2009-10-02 17:48:41 UTC
2
+++ src/las_c_api.cpp
3
@@ -745,7 +745,7 @@ LAS_DLL LASErrorEnum LASHeader_SetProjectId(LASHeaderH
4
 
5
     try {
6
         liblas::guid id;
7
-        id = liblas::guid::guid(value);
8
+        id = liblas::guid(value);
9
         ((LASHeader*) hHeader)->SetProjectId(id);    
10
     } catch (std::exception const& e)
11
     {
12
@@ -1542,7 +1542,7 @@ LAS_DLL LASGuidH LASGuid_CreateFromString(const char* 
13
     VALIDATE_LAS_POINTER1(string, "LASGuid_CreateFromString", NULL);    
14
     liblas::guid id;
15
     try {
16
-        id = liblas::guid::guid(string);
17
+        id = liblas::guid(string);
18
         return (LASGuidH) new liblas::guid(id);
19
     }
20
     catch (std::exception const& e) {

Return to bug 222424