[rkward-cvs] rkward ChangeLog,1.107,1.108 acinclude.m4,1.9,1.10 aclocal.m4,1.9,1.10 configure,1.33,1.34 configure.files,1.8,1.9 configure.in,1.28,1.29 subdirs,1.11,1.12

Thomas Friedrichsmeier tfry at users.sourceforge.net
Mon Apr 10 21:37:09 UTC 2006


Update of /cvsroot/rkward/rkward
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5666

Modified Files:
	ChangeLog acinclude.m4 aclocal.m4 configure configure.files 
	configure.in subdirs 
Log Message:
Try to guess --prefix for ./configure

Index: configure
===================================================================
RCS file: /cvsroot/rkward/rkward/configure,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** configure	5 Apr 2006 20:33:52 -0000	1.33
--- configure	10 Apr 2006 21:37:00 -0000	1.34
***************
*** 427,431 ****
  
  ac_unique_file="acinclude.m4"
! ac_default_prefix=${KDEDIR:-/usr/local/kde}
  # Factoring default headers for most tests.
  ac_includes_default="\
--- 427,431 ----
  
  ac_unique_file="acinclude.m4"
! ac_default_prefix=${KDEDIR:-`kde-config --prefix`}
  # Factoring default headers for most tests.
  ac_includes_default="\
***************
*** 30747,30760 ****
  
  
- #MIN_CONFIG(3)
- 
- 
- 
- 
- #MIN_CONFIG(3)
- 
- 
- 
- 
  
  
--- 30747,30750 ----

Index: configure.in
===================================================================
RCS file: /cvsroot/rkward/rkward/configure.in,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** configure.in	5 Apr 2006 20:33:55 -0000	1.28
--- configure.in	10 Apr 2006 21:37:01 -0000	1.29
***************
*** 67,92 ****
  dnl AC_PROG_YACC dnl __kdevelop__
  
- #MIN_CONFIG(3)
- 
- dnl PACKAGE set before
- 
- dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__
- dnl CFLAGS="$NOOPT_CFLAGS" dnl __kdevelop[noopt]__
- dnl CXXFLAGS="$CXXFLAGS $USE_EXCEPTIONS" dnl __kdevelop[exc]__
- 
- dnl KDE_NEED_FLEX dnl __kdevelop__
- dnl AC_PROG_YACC dnl __kdevelop__
- 
- #MIN_CONFIG(3)
- 
- dnl PACKAGE set before
- 
- dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__
- dnl CFLAGS="$NOOPT_CFLAGS" dnl __kdevelop[noopt]__
- dnl CXXFLAGS="$CXXFLAGS $USE_EXCEPTIONS" dnl __kdevelop[exc]__
- 
- dnl KDE_NEED_FLEX dnl __kdevelop__
- dnl AC_PROG_YACC dnl __kdevelop__
- 
  KDE_CREATE_SUBDIRSLIST
  AC_CONFIG_FILES([ Makefile ])
--- 67,70 ----

Index: ChangeLog
===================================================================
RCS file: /cvsroot/rkward/rkward/ChangeLog,v
retrieving revision 1.107
retrieving revision 1.108
diff -C2 -d -r1.107 -r1.108
*** ChangeLog	10 Apr 2006 11:25:49 -0000	1.107
--- ChangeLog	10 Apr 2006 21:37:00 -0000	1.108
***************
*** 1,2 ****
--- 1,7 ----
+ - configure: if not overriden, and $KDEDIR is not set, assume --prefix=`kde-config --prefix` instead of /usr/local/kde/
+ - remove some GUI clutter for Script File editor
+ - rename "Command File" to "Script File"
+ - rename "Command Stack" window to "Pending Jobs"
+ - backspace or del clear cells in data.frame editor
  - reworked factor levels editor
  - in trailing rows/columns of the data.frame editor, change background color, when selected
***************
*** 15,19 ****
  - handle non-existing and non-local URLs (links) in help window
  - use a shell wrapper around rkward to do some setup just like R. This should fix a number of minor quirks
! - Configure: use single configure option for location of R_HOME, and add check for libR.so
  - yet more code cleanups
  - keep main window caption up to date
--- 20,24 ----
  - handle non-existing and non-local URLs (links) in help window
  - use a shell wrapper around rkward to do some setup just like R. This should fix a number of minor quirks
! - configure: use single configure option for location of R_HOME, and add check for libR.so
  - yet more code cleanups
  - keep main window caption up to date

Index: subdirs
===================================================================
RCS file: /cvsroot/rkward/rkward/subdirs,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** subdirs	5 Apr 2006 20:33:55 -0000	1.11
--- subdirs	10 Apr 2006 21:37:01 -0000	1.12
***************
*** 3,6 ****
  po
  rkward
- rkward-0.3.4
- rkward-0.3.5
--- 3,4 ----

Index: acinclude.m4
===================================================================
RCS file: /cvsroot/rkward/rkward/acinclude.m4,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** acinclude.m4	29 Mar 2006 13:25:06 -0000	1.9
--- acinclude.m4	10 Apr 2006 21:37:00 -0000	1.10
***************
*** 4584,4588 ****
    unset CDPATH
    dnl make $KDEDIR the default for the installation
!   AC_PREFIX_DEFAULT(${KDEDIR:-/usr/local/kde})
  
    if test "x$prefix" = "xNONE"; then
--- 4584,4592 ----
    unset CDPATH
    dnl make $KDEDIR the default for the installation
! dnl ############################################ RKWARD specific change begin #################################
!   AC_PREFIX_DEFAULT(${KDEDIR:-`kde-config --prefix`})
! dnl ############################################ RKWARD specific change previous: #############################
! dnl  AC_PREFIX_DEFAULT(${KDEDIR:-/usr/local/kde})
! dnl ############################################ RKWARD specific change end ###################################
  
    if test "x$prefix" = "xNONE"; then

Index: aclocal.m4
===================================================================
RCS file: /cvsroot/rkward/rkward/aclocal.m4,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** aclocal.m4	29 Mar 2006 13:25:06 -0000	1.9
--- aclocal.m4	10 Apr 2006 21:37:00 -0000	1.10
***************
*** 4596,4600 ****
    unset CDPATH
    dnl make $KDEDIR the default for the installation
!   AC_PREFIX_DEFAULT(${KDEDIR:-/usr/local/kde})
  
    if test "x$prefix" = "xNONE"; then
--- 4596,4604 ----
    unset CDPATH
    dnl make $KDEDIR the default for the installation
! dnl ############################################ RKWARD specific change begin #################################
!   AC_PREFIX_DEFAULT(${KDEDIR:-`kde-config --prefix`})
! dnl ############################################ RKWARD specific change previous: #############################
! dnl  AC_PREFIX_DEFAULT(${KDEDIR:-/usr/local/kde})
! dnl ############################################ RKWARD specific change end ###################################
  
    if test "x$prefix" = "xNONE"; then

Index: configure.files
===================================================================
RCS file: /cvsroot/rkward/rkward/configure.files,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** configure.files	5 Apr 2006 20:33:55 -0000	1.8
--- configure.files	10 Apr 2006 21:37:01 -0000	1.9
***************
*** 1,4 ****
  ./admin/configure.in.min
  configure.in.in
- ./rkward-0.3.4/configure.in.in
- ./rkward-0.3.5/configure.in.in
--- 1,2 ----





More information about the rkward-tracker mailing list