diff options
author | markd <markd@pkgsrc.org> | 2004-10-13 11:47:51 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2004-10-13 11:47:51 +0000 |
commit | fd432fb8bc2fa0a1126ec4de3ae3d37d14dfa87a (patch) | |
tree | f1fa205c36aa7b6ddd3e9492150a4d685b8019c6 /x11/kdelibs3/Makefile | |
parent | 18a6981ec819c7836743fcb90f13d844e96473bd (diff) | |
download | pkgsrc-fd432fb8bc2fa0a1126ec4de3ae3d37d14dfa87a.tar.gz |
Update to KDE 3.3.1
Changes:
* KHTML: fixed spurious deletion of textarea contents
* KHTML: fixed innerHTML getter to not behave like outerHTML
* KHTML: fix crash in caret mode
* KHTML: added missing <marquee> ECMAScript bindings
* KHTML: fixed missing Javascript-support for HTMLDocument.compatMode
* KHTML: fixed off-by-one error which caused decorations to exceed the
selection-end by one pixel
* KHTML: fixed wrong positioning of text-decorations in selections
* KHTML: small paint optimization for render texts
* KHTML: fixed spurious scrollbars on the canvas when overflow of clipped
children exceeds the viewport boundaries
* KHTML: fixed unreachable relatively positioned content on viewport
* KHTML: fixed unreachable positioned content in clipped blocks
* KHTML: fixed selection not being redrawn in overflow-area
* KHTML: jump-to-anchor fixes
* KHTML: Don't warn that a form was not submitted after pressing back button
* KHTML: fix crash on illegal CSS
* KHTML: On popular demand, double-click between two words selects both
again as in KDE 3.2.
* kfile: Added "New Folder..." in context menu within KDirSelectDialog
* kfile: Enabled dragging of directories within KDirSelectDialog
* kfile: KURLRequester now popups KDirSelectDialog when a directory is
requested
* kfile: Toggling hidden files didn't refresh the file selection list
* kio: Separate general from meta info in filetips
* don't crash when right clicking on a toolbar in some applications that
are using KParts
Diffstat (limited to 'x11/kdelibs3/Makefile')
-rw-r--r-- | x11/kdelibs3/Makefile | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/x11/kdelibs3/Makefile b/x11/kdelibs3/Makefile index b2380bd4439..49fb419e735 100644 --- a/x11/kdelibs3/Makefile +++ b/x11/kdelibs3/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.68 2004/10/03 00:18:36 tv Exp $ +# $NetBSD: Makefile,v 1.69 2004/10/13 11:47:51 markd Exp $ DISTNAME= kdelibs-${_KDE_VERSION} -PKGREVISION= 2 CATEGORIES= x11 COMMENT= Support libraries for the KDE integrated X11 desktop @@ -46,9 +45,15 @@ pre-configure: done .if defined(USE_CUPS) && (${USE_CUPS} == "YES") -.include "../../print/cups/buildlink3.mk" -BUILD_DEFS+= USE_CUPS +PKG_DEFAULT_OPTIONS+= cups +.endif + +PKG_OPTIONS_VAR= PKG_OPTIONS.kdelibs +PKG_SUPPORTED_OPTIONS= cups +.include "../../mk/bsd.options.mk" +.if !empty(PKG_OPTIONS:Mcups) +.include "../../print/cups/buildlink3.mk" PLIST_SUBST+= CUPS= .else PLIST_SUBST+= CUPS="@comment " @@ -138,6 +143,11 @@ CFLAGS:= ${CFLAGS:C/-O[0-9]*/-O/g} CONFIGURE_ENV+= CXXFLAGS="${CXXFLAGS}" CONFIGURE_ENV+= CFLAGS="${CFLAGS}" . endif +# +# Configure finds these but apparently they are not ready for primetime +# and build will blow up as declarations in netdb.h are not visible +CONFIGURE_ENV+= ac_cv_func_getservbyname_r='no' +CONFIGURE_ENV+= ac_cv_func_getprotobyname_r='no' .endif .if ${OPSYS} == "SunOS" |