head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.54 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.52 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.50 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.48 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.46 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.44 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.42 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.40 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.38 pkgsrc-2008Q2-base:1.5 pkgsrc-2008Q1:1.5.0.36 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.34 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.5.0.32 pkgsrc-2007Q3-base:1.5 pkgsrc-2007Q2:1.5.0.30 pkgsrc-2007Q2-base:1.5 pkgsrc-2007Q1:1.5.0.28 pkgsrc-2007Q1-base:1.5 pkgsrc-2006Q4:1.5.0.26 pkgsrc-2006Q4-base:1.5 pkgsrc-2006Q3:1.5.0.24 pkgsrc-2006Q3-base:1.5 pkgsrc-2006Q2:1.5.0.22 pkgsrc-2006Q2-base:1.5 pkgsrc-2006Q1:1.5.0.20 pkgsrc-2006Q1-base:1.5 pkgsrc-2005Q4:1.5.0.18 pkgsrc-2005Q4-base:1.5 pkgsrc-2005Q3:1.5.0.16 pkgsrc-2005Q3-base:1.5 pkgsrc-2005Q2:1.5.0.14 pkgsrc-2005Q2-base:1.5 pkgsrc-2005Q1:1.5.0.12 pkgsrc-2005Q1-base:1.5 pkgsrc-2004Q4:1.5.0.10 pkgsrc-2004Q4-base:1.5 pkgsrc-2004Q3:1.5.0.8 pkgsrc-2004Q3-base:1.5 pkgsrc-2004Q2:1.5.0.6 pkgsrc-2004Q2-base:1.5 pkgsrc-2004Q1:1.5.0.4 pkgsrc-2004Q1-base:1.5 pkgsrc-2003Q4:1.5.0.2 pkgsrc-2003Q4-base:1.5 buildlink2-base:1.5; locks; strict; comment @# @; 1.5 date 98.04.28.22.54.08; author tron; state dead; branches; next 1.4; 1.4 date 98.04.23.10.33.30; author mycroft; state Exp; branches; next 1.3; 1.3 date 98.03.21.01.54.30; author tron; state dead; branches; next 1.2; 1.2 date 97.12.29.03.42.28; author hubertf; state Exp; branches; next 1.1; 1.1 date 97.12.29.03.31.47; author hubertf; state Exp; branches; next ; desc @@ 1.5 log @Update to KDE Beta 4 'Kirkland'. @ text @--- config.h.in.orig Fri Jan 30 19:53:24 1998 +++ config.h.in Thu Apr 23 06:25:01 1998 @@@@ -31,8 +31,8 @@@@ /* Define to 1 if NLS is requested. */ #undef ENABLE_NLS -/* Define if you have the fabsl function. */ -#undef HAVE_FABSL +/* Define if you have the sqrtl function. */ +#undef HAVE_SQRTL /* Define if you have the socket function. */ #undef HAVE_SOCKET --- configure.in.orig Sat Jan 24 19:51:01 1998 +++ configure.in Thu Apr 23 06:24:18 1998 @@@@ -56,7 +56,7 @@@@ AC_C_LONG_DOUBLE dnl Checks for library functions. MISCOBJS is for kdecore -AC_CHECK_FUNCS(socket fabsl strdup) +AC_CHECK_FUNCS(socket sqrtl strdup) AC_CHECK_KSIZE_T AC_CHECK_SETENV --- configure.orig Thu Apr 23 06:14:22 1998 +++ configure Thu Apr 23 06:24:15 1998 @@@@ -3501,7 +3501,7 @@@@ fi -for ac_func in socket fabsl strdup +for ac_func in socket sqrtl strdup do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 echo "configure:3508: checking for $ac_func" >&5 --- kcalc/configdlg.cpp.orig Fri Dec 12 19:14:04 1997 +++ kcalc/configdlg.cpp Thu Apr 23 06:26:37 1998 @@@@ -86,7 +86,7 @@@@ label5->setText("Precision:"); int maxprec; -#ifdef HAVE_FABSL +#ifdef HAVE_SQRTL maxprec = 16 ; #else maxprec = 12 ; @@@@ -109,7 +109,7 @@@@ cb->setChecked(true); int fixprec; -#ifdef HAVE_FABSL +#ifdef HAVE_SQRTL fixprec = 14 ; #else fixprec = 10 ; --- kcalc/kcalc.cpp.orig Fri Dec 12 19:14:07 1997 +++ kcalc/kcalc.cpp Thu Apr 23 06:26:40 1998 @@@@ -1528,7 +1528,7 @@@@ "\n\n"; labelstring += -#ifdef HAVE_FABSL +#ifdef HAVE_SQRTL "Base type: long double\n"; #else "Base type: double\n"; @@@@ -1635,7 +1635,7 @@@@ config->setGroup("Precision"); -#ifdef HAVE_FABSL +#ifdef HAVE_SQRTL kcalcdefaults.precision = config->readNumEntry("precision",(int)14); #else kcalcdefaults.precision = config->readNumEntry("precision",(int)10); --- kcalc/kcalc_core.cpp.orig Fri Dec 12 19:14:10 1997 +++ kcalc/kcalc_core.cpp Thu Apr 23 06:26:45 1998 @@@@ -1446,7 +1446,7 @@@@ str_size = sprintf(display_str, -#ifdef HAVE_FABSL +#ifdef HAVE_SQRTL "%.*Lg", // was *Lg kcalcdefaults.precision +1, @@@@ -1461,7 +1461,7 @@@@ str_size = sprintf(display_str, -#ifdef HAVE_FABSL +#ifdef HAVE_SQRTL "%.*Lf", // was *Lg kcalcdefaults.fixedprecision , @@@@ -1478,7 +1478,7 @@@@ if ( input_count > 0 && !strpbrk(display_str,"e") && last_input == DIGIT ) { -#ifdef HAVE_FABSL +#ifdef HAVE_SQRTL str_size = sprintf(display_str, "%.*Lf", (kcalcdefaults.precision +1 > input_count)? --- kcalc/kcalctype.h.orig Sat Jan 10 19:59:04 1998 +++ kcalc/kcalctype.h Thu Apr 23 06:26:50 1998 @@@@ -34,10 +34,10 @@@@ // I guess it's time to switch to LINUX guys ..... -#ifdef HAVE_FABSL +#ifdef HAVE_SQRTL /* should be detected by autoconf and defined in config.h - Be carefull when modifying these lines. HAVE_FABSL + Be carefull when modifying these lines. HAVE_SQRTL is used all over kcalc's sources to determine whether long double of double is the fundamental data type for kcalc*/ @@@@ -49,7 +49,7 @@@@ #endif -#ifdef HAVE_FABSL +#ifdef HAVE_SQRTL #define FABS(X) fabsl(X) #define MODF(X,Y) modfl(X,Y) #define FMOD(X,Y) fmodl(X,Y) @ 1.4 log @Switch the long double support on sqrtl() rather than fabsl(), since egcs has fabsl() built in. @ text @@ 1.3 log @Update to KDE Beta 3 'Huesten'. @ text @d1 128 a128 83 --- karm/Makefile.in.orig Thu Dec 18 17:29:26 1997 +++ karm/Makefile.in Thu Dec 18 17:30:49 1997 @@@@ -1,5 +1,7 @@@@ # This file was autogenerated by kmake 0.2. +SHELL=/bin/sh + # this variables are needed for rpath support kde_libraries = @@kde_libraries@@ qt_libraries = @@qt_libraries@@ @@@@ -16,7 +18,7 @@@@ install = @@INSTALL@@ INSTALL = $(install) -m 0755 INSTALL_DATA = $(install) -m 0644 -INSTALL_DIR = $(install) -d -m 0755 +INSTALL_DIR = $(SHELL) @@top_srcdir@@/mkinstalldirs INSTALL_DIR_PRIVATE = $(install) -d -m 0700 prefix = @@prefix@@ --- kcalc/Makefile.in.orig Thu Dec 18 17:29:26 1997 +++ kcalc/Makefile.in Thu Dec 18 17:31:50 1997 @@@@ -2,6 +2,8 @@@@ # Makefile for kcalc # +SHELL=/bin/sh + # this variables are needed for rpath support kde_libraries = @@kde_libraries@@ qt_libraries = @@qt_libraries@@ @@@@ -36,7 +38,7 @@@@ INSTALL = @@INSTALL@@ -m 0755 INSTALL_DATA = @@INSTALL@@ -m 0644 -INSTALL_DIR = @@INSTALL@@ -d -m 0755 +INSTALL_DIR = $(SHELL) @@top_srcdir@@/mkinstalldirs prefix = @@prefix@@ BINDIR = $(prefix)/bin --- kjots/Makefile.in.orig Thu Dec 18 17:29:26 1997 +++ kjots/Makefile.in Thu Dec 18 17:32:42 1997 @@@@ -1,3 +1,4 @@@@ +SHELL=/bin/sh # this variables are needed for rpath support kde_libraries = @@kde_libraries@@ @@@@ -17,7 +18,7 @@@@ INSTALL = $(install) -m 0755 INSTALL_SHELL = $(install) -m 0755 INSTALL_DATA = $(install) -m 0644 -INSTALL_DIR = $(install) -d -m 0755 +INSTALL_DIR = $(SHELL) @@top_srcdir@@/mkinstalldirs INSTALL_DIR_PRIVATE = $(install) -d -m 0700 prefix = @@prefix@@ --- kedit/docs/Makefile.in.orig Thu Dec 18 17:29:26 1997 +++ kedit/docs/Makefile.in Thu Dec 18 17:33:40 1997 @@@@ -1,9 +1,11 @@@@ +SHELL=/bin/sh + prefix = @@prefix@@ FILES = index.html index-1.html index-2.html index-3.html index-4.html index-5.html DOCDIR = $(prefix)/share/doc/HTML/en/kedit -INSTALL_DIR = @@INSTALL@@ -d -m 0755 +INSTALL_DIR = $(SHELL) @@top_srcdir@@/mkinstalldirs INSTALL_DATA = @@INSTALL@@ -m 644 all: --- kjots/icons/Makefile.in.orig Thu Dec 18 17:29:26 1997 +++ kjots/icons/Makefile.in Thu Dec 18 17:33:59 1997 @@@@ -1,7 +1,9 @@@@ +SHELL=/bin/sh + prefix = @@prefix@@ INSTALL_DATA = @@INSTALL@@ -m 0644 -INSTALL_DIR = @@INSTALL@@ -d -m 0755 +INSTALL_DIR = $(SHELL) @@top_srcdir@@/mkinstalldirs PICS = OpenBook.xpm filedel.xpm ICONDIR= $(prefix)/share/icons DESTDIR = $(prefix)/share/apps/kjots/toolbar @ 1.2 log @RCS IDs in patches are *evil* @ text @@ 1.1 log @Update for NetBSD, by boquist@@cs.chalmers.se. @ text @a39 20 --- kedit/Makefile.in.orig Thu Dec 18 17:29:26 1997 +++ kedit/Makefile.in Thu Dec 18 17:32:11 1997 @@@@ -6,6 +6,8 @@@@ # $Id: Makefile.in,v 1.25 1997/11/15 12:47:22 kulow Exp $ # +SHELL=/bin/sh + # this variables are needed for rpath support kde_libraries = @@kde_libraries@@ qt_libraries = @@qt_libraries@@ @@@@ -23,7 +25,7 @@@@ INSTALL = @@INSTALL@@ -m 0755 INSTALL_DATA = @@INSTALL@@ -m 0644 -INSTALL_DIR = @@INSTALL@@ -d -m 0755 +INSTALL_DIR = $(SHELL) @@top_srcdir@@/mkinstalldirs prefix = @@prefix@@ BINDIR = $(prefix)/bin a55 19 --- knotes/Makefile.in.orig Thu Dec 18 17:29:26 1997 +++ knotes/Makefile.in Thu Dec 18 17:33:11 1997 @@@@ -1,5 +1,7 @@@@ # $Id: Makefile.in,v 1.11 1997/11/23 02:58:01 wuebben Exp $ +SHELL=/bin/sh + # this variables are needed for rpath support kde_libraries = @@kde_libraries@@ qt_libraries = @@qt_libraries@@ @@@@ -18,7 +20,7 @@@@ install = @@INSTALL@@ INSTALL = $(install) -m 0755 INSTALL_DATA = $(install) -m 0644 -INSTALL_DIR = $(install) -d -m 0755 +INSTALL_DIR = $(SHELL) @@top_srcdir@@/mkinstalldirs ################################################################### @