[Fink-users] kdebase3-ssl-3.1.1-2 built successfully

2003-04-01 Thread Kow K
kdebase3-ssl-3.1.1-2 has just built successfully as well as 
kdelibs3-ssl-3.1.1-2. I'm now going to update koffice-1.2.1-5. I'll be 
reporting as soon as it ends. Thanks, Benjamin.

Kow



---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/
___
Fink-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-users


Re: [Fink-users] simply Sawfish?

2003-04-01 Thread Kurt P Lloyd
Nicholas Riley wrote:
 
 On Mon, Mar 31, 2003 at 08:49:32PM -0500, Kurt P. Lloyd wrote:
  Hello,
  I am considering using Sawfish as my window manager with Apple X11.
  I was impressed with its mix of features when using it with GNOME
  on Linux.  But I'm not sure I want the full GNOME features on my
  iBook.  It seems Sawfish by itself may be sufficient.  Especially
  since I have the Aqua and X11 windows intermixed on the desktop.
  So I installed Sawfish via Fink, and it seems to run mostly fine.
  However, if I minimize a window, it disappears.  Unlike with twm
  or lesstif, where I'd get a little icon-like thingy I could
  subsequently click on to open it back up.  Is this because of a
  bug?  Or do I really need some additional software, like GNOME,
  for handling the minimized Sawfish window?
 
 You do.  When I used Sawfish by itself on OS X, I used a very minimal
 panel-like program called 'fspanel' which you may find useful.  (Now I
 just use Apple's quartz-wm instead).
 
 --
 =Nicholas Riley [EMAIL PROTECTED] | http://www.uiuc.edu/ph/www/njriley
 Pablo Research Group, Department of Computer Science and
   Medical Scholars Program, University of Illinois at Urbana-Champaign

Thanks!  That did the trick.  Now I have a lightweight,
flexible, visually appealing window manager within Aqua.
-- 
-Kurt Lloyd, [EMAIL PROTECTED], (978) 960-6276


---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/
___
Fink-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-users


[Fink-users] AM_PATH_GTKGL trouble

2003-04-01 Thread Jonathan Brandmeyer
I am a developer for a python extension module project.  We are trying
to support OSX using fink, due to its support for gtkglarea.  We are
using a slightly modified version of the autoconf macro 'AM_PATH_GTKGL'
(its contents are appended to this message).  The test fails with these
linker errors:
_glPointParameterf referenced from libGL expected to be defined in
OpenGL
_glPointParameterfv referenced from libGL expected to be defined in
OpenGL

Our test system is configured with:
OS 10.2,
Fink stable
Apple X11 0.3 with SDK
Apple's Python distro
Developer tools dated June 2002.
The following fink packages (with automatic dependancies):
automake
autoconf
gtkglarea

We attempted to build gtkglarea from its source package and recieved the
same errors during a related check.

Thanks for your assistance,
Jonathan Brandmeyer



The content of the test macro follows.  I have added comments in all
caps, prefixed with ##.

-
# configure paths for GtkGLArea
# Janne Lof 1999-17-2
# AM_PATH_GTKGL([ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]])
AC_DEFUN(AM_PATH_GTKGL,
[
AC_PROVIDE([AM_PATH_GTKGL])

AC_ARG_WITH(gl-prefix,[  --with-gl-prefix=PFXPrefix where OpenGL
or Mesa is installed],
 gl_prefix=$withval,
 gl_prefix=)

AC_ARG_WITH(gtkgl-prefix, [  --with-gtkgl-prefix=PFX Prefix where
GtkGLArea is installed],
 gtkgl_prefix=$withval,
 gtkgl_prefix=)

# tests for OpenGL
if test x$gl_prefix != x ; then
 GL_CFLAGS=-I$gl_prefix/include
 GL_LDOPTS=-L$gl_prefix/lib
else
 GL_CFLAGS=
 GL_LDOPTS=
fi

saved_LIBS=$LIBS
saved_CFLAGS=$CFLAGS

# test for plain OpenGL

## THIS TEST PASSES, SEVERAL ALTERNATES FOLLOW WHICH ARE NOT SEEN

AC_MSG_CHECKING([GL])
LIBS=$saved_LIBS $GTK_LIBS $GL_LDOPTS -lGLU -lGL
AC_TRY_LINK( ,[ char glBegin(); glBegin(); ], have_GL=yes, have_GL=no)
AC_MSG_RESULT($have_GL)

if test x$have_GL = xyes; then

 GL_LIBS=-lGLU -lGL

 else
  # test for GL with Pthreads.

  ## THIS TEST IS NOT SEEN (NOT NEEDED)

  AC_MSG_CHECKING([GL with threads])
  LIBS=$saved_LIBS $GTK_LIBS $GL_LDOPTS -lGLU -lGL -lpthread
  AC_TRY_LINK( ,[char glBegin(); glBegin(); ], have_GL=yes, have_GL=no)
  AC_MSG_RESULT($have_GL)

 if test x$have_GL = xyes; then

  GL_LIBS=-lGLU -lGL -lpthread
 
 else
  # test for Mesa

  ## THIS TEST IS NOT SEEN (NOT NEEDED)

  AC_MSG_CHECKING([Mesa])
  LIBS=$saved_LIBS $GTK_LIBS $GL_LDOPTS -lMesaGLU -lMesaGL
  AC_TRY_LINK( ,[ char glBegin(); glBegin(); ], have_Mesa=yes,
have_Mesa=no)
  AC_MSG_RESULT($have_Mesa)

  if test x$have_Mesa = xyes; then

   GL_LIBS=-lMesaGLU -lMesaGL

  else

   # test for Mesa with threads

   ## THIS TEST IS NOT SEEN (NOT NEEDED)

   AC_MSG_CHECKING([Mesa with pthreads])
   LIBS=$saved_LIBS $GTK_LIBS $GL_LDOPTS -lMesaGLU -lMesaGL -lpthread
   AC_TRY_LINK( ,[ char glBegin(); glBegin(); ], have_Mesa_pthread=yes,
have_Mesa_pthread=no)
   AC_MSG_RESULT($have_Mesa_pthread)

   if test x$have_Mesa_pthread = xyes; then

 GL_LIBS=-lMesaGLU -lMesaGL -lpthread

   else
#all failed
LIBS=$saved_LIBS
CFLAGS=$saved_CFLAGS
GTKGL_LIBS=
GTKGL_CFLAGS=
ifelse([$2], , :, [$2])

   fi
  fi
 fi
fi

# tests for GtkGLArea

## THIS TEST FAILS WITH LINKER ERRORS.

if test x$gtkgl_prefix != x; then
 GTKGL_CFLAGS=-I$gtkgl_prefix/include
 GTKGL_LDOPTS=-L$gtkgl_prefix/lib
else
 GTKGL_CFLAGS=
 GTKGL_LDOPTS=
fi

AC_MSG_CHECKING([GtkGLArea])
LIBS=$save_LIBS -lgtkgl $GTK_LIBS $GL_LDOPTS $GL_LIBS $GTKGL_LDOPTS
AC_TRY_LINK( ,[ char gtk_gl_area_new(); gtk_gl_area_new(); ],
have_gtkgl=yes, have_gtkgl=no)
AC_MSG_RESULT($have_gtkgl)

if test x$have_gtkgl = xyes; then

 LIBS=$saved_LIBS
 CFLAGS=$saved_CFLAGS
 GTKGL_CFLAGS=$GTKGL_CFLAGS $GL_CFLAGS
 GTKGL_LIBS=$GTKGL_LDOPTS -lgtkgl $GL_LDOPTS $GL_LIBS
 ifelse([$1], , :, [$1])

else

 LIBS=$saved_LIBS
 CFLAGS=$saved_CFLAGS
 GTKGL_LIBS=
 GTKGL_CFLAGS=
 ifelse([$2], , :, [$2])

fi

AC_SUBST(GTKGL_CFLAGS)
AC_SUBST(GTKGL_LIBS)

])



---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/
___
Fink-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-users


[Fink-users] postgresql-python (ImportError: no mod named _pg)

2003-04-01 Thread Sagar Damle
Hi all,
  I'm having trouble getting postgresql-python to work.  Has anyone  
been able to install it?  Seems it can't find the _pg module, and I  
noticed that I have a _pgmodule.dylib and NOT a  _pgmodule.so in my  
python/site-packages directory.
Here's the error message I get in the python interpreter.

 import pg
Traceback (most recent call last):
  File stdin, line 1, in ?
  File /sw/lib/python2.3/site-packages/pg.py, line 8, in ?
from _pg import *
ImportError: No module named _pg
I don't know what's going on, but there was an earlier thread  
discussing problems installing postgresql-tcl (see below)

 
 

From: Benjamin Reed [EMAIL PROTECTED]
Date: Sun Dec 15, 2002  7:39:16  PM America/Los_Angeles
To: jfm [EMAIL PROTECTED]
Cc: Martin Costabel [EMAIL PROTECTED], Kow K [EMAIL PROTECTED],  
[EMAIL PROTECTED]
Subject: Re: [Fink-users] postgresql-tcl fails to install

On Sunday, December 15, 2002, at 04:52 PM, jfm wrote:
Sorry: but I had there :

cc -dynamiclib -L/sw/lib  -undefined suppress -flat_namespace -o  
pltcl.dylib pltcl.o -L/sw/lib -ltcl8.3

so, probably due to changes in /sw/lib/tclConfig.sh between versions  
8.3 and 8.4 of tcltk
Yeah, it appears that sometime recently, tclConfig.sh started creating  
dylib files instead of .so files.

The postgresql makefile hacks I made basically decide whether to make a  
dylib or bundle depending on the file extension (easiest way to do it  
without rewriting large bits of their make system  :P)

So now that it's making a dylib, it's not adding undefined suppress and  
flat_namespace.

I'll have to figure out how to make it play nicely.  The problem is it  
appears most of the settings in the postgresql makefile don't do  
anything, because tclConfig.sh has it's own link line that doesn't end  
up including postgresql's flags.



---
This SF.net email is sponsored by: ValueWeb: 
Dedicated Hosting for just $79/mo with 500 GB of bandwidth! 
No other company gives more support or power for your dedicated server
http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/
___
Fink-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-users