Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Apr 2001 16:07:45 +0800 (CST)
From:      gugod@gugod.ath.cx
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        gugod@gugod.ath.cx
Subject:   ports/26639: editor/abiword installation problem
Message-ID:  <200104170807.f3H87jA15811@gugod.ath.cx>

next in thread | raw e-mail | index | archive | help

>Number:         26639
>Category:       ports
>Synopsis:       AbiWord 0.7.13 's libole2 conflict witn devel/libole2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Apr 17 01:50:00 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Kang-min Liu
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
National Taiwan Univ. CSIE Dep.
>Environment:
System: FreeBSD gugod.ath.cx 5.0-CURRENT FreeBSD 5.0-CURRENT #3: Fri Mar 30 09:21:05 CST 2001 root@gugod.ath.cx:/usr/obj/usr/src/sys/X20 i386

>Description:


The editor/abiword (Abiword 0.7.13) has an installation problem.
In the file work/wv/libole2/ms-ole.c , there is 

#include <libole2/ms-ole.h>

in it. In the Makefile, '/usr/local/include' is the first include
path.  But /usr/local/include/libole2 will exist if
'ports/devel/libole2 is' installed, which cause compilation failed.


>How-To-Repeat:
	install ports/devel/libole2 first. Then make install
	ports/editor/AbiWord
>Fix:
pkg_delete libole2 first befor install AbiWord
or apply this patch to work/wv/lilbole2/ms-ole.c


--- ms-ole.c.orig       Fri Jan 26 00:52:17 2001
+++ ms-ole.c    Tue Apr 17 16:00:02 2001
@@ -36,7 +36,7 @@
 #include <glib.h>
 #include <string.h>
 
-#include <libole2/ms-ole.h>
+#include <ms-ole.h>
 
 #ifdef HAVE_MMAP
 #include <sys/mman.h>



>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200104170807.f3H87jA15811>