Re: Producing MS Developer Studio Project files

2007-08-30 Thread Paul F. Kunz
On Thu, 30 Aug 2007 09:49:47 -0500, Gurpreet Sachdeva [EMAIL PROTECTED] said: --=_Part_4924_3805551.1188485387830 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Paul, I read your post (very old) about producing MSVC

Re: autotools on mac os x

2007-05-04 Thread Paul F. Kunz
On Fri, 4 May 2007 09:10:24 -0700 (PDT), didyeah971 [EMAIL PROTECTED] said: Hi, i am using Mac OS X 10.4.9, distributed with autoconf 2.59, automake 1.6.3 and i need at least automake 1.9.6 to run some apache software. The problem is that i am new to autotools and i can't find any manual

Re: Mixing C and C++

2005-09-07 Thread Paul F. Kunz
On Wed, 7 Sep 2005 09:22:25 -0500 , Adams Samuel D Contr AFRL/HEDR [EMAIL PROTECTED] said: I am writing a new program in C++ as it can use complex numbers and C does not have that functionality, but I am also trying to use a C library that I wrote before for another program that handles all

Re: Support for precompiled C++ headers

2004-12-01 Thread Paul F. Kunz
On Thu, 2 Dec 2004 00:25:48 +0100, Christian Parpart [EMAIL PROTECTED] said: On Wednesday 01 December 2004 1:30 am, Dale E. Martin wrote: Are there short-term plans to facilitate the generation and use of GCC's precompiled headers? Can anyone point me to a C++ project that is working

Re: Silent compilation

2004-06-17 Thread Paul F. Kunz
On Fri, 18 Jun 2004 01:02:54 +0200, Steffen Boerm [EMAIL PROTECTED] said: Of course I would like to have an _option_ to view the full command line when porting my library to a new operating environment, but when I'm working on the C sources, it is much easier to find compiler warnings if

Re: Creating shared object without lib prefix

2003-07-15 Thread Paul F. Kunz
On Tue, 15 Jul 2003 13:03:04 +0200, Bram Stolk [EMAIL PROTECTED] said: Hello, I want to build a python module, which should be created as _foo.so However, automake/autoconf (as well as libtool) only let me create sharedobjects with a lib prefix: libfoo.so What I do is add something like

No dependencies in distribution

2003-03-05 Thread Paul F. Kunz
Is there a way to NOT have dependencies in the distributed Makefile.in file but still use dependency feature in the developer's build? I'm using automake 1.4p5.

Re: empty dir

2003-02-26 Thread Paul F. Kunz
On Wed, 26 Feb 2003 13:26:59 -0500, Roger D. Vargas [EMAIL PROTECTED] said: I need to compile a project with an empty directory. For some reason it is include in the configure script and it fails always with an error: config.status: creating plugins/Makefile config.status: error: cannot

Re: AM_PATH_PYTHON and Python C interface headers

2003-02-20 Thread Paul F. Kunz
Paul F. Kunz [EMAIL PROTECTED] dnl @version $Id: pfk_python_include.m4,v 1.4 2002/12/18 23:23:34 pfkeb Exp $ dnl AC_DEFUN(PFK_PYTHON_PATH,[ AC_MSG_CHECKING(Python include path ) AC_ARG_WITH(python-include, [ --with-python-include=PATH path to where Python.h lives

Building application on Mac OS X with automake

2003-02-08 Thread Paul F. Kunz
I have an application based on Qt that I build with automake on Linux and other UNIX platforms. Now I'm attempting to build it on Mac OS X. After I upgrade to libtool 1.4.3, I can build the application, even with older version of autoconf and automake. However, the applicatons's main window

Re: automake or libtool question on Red Hat 7.2

2001-10-30 Thread Paul F. Kunz
I just upgraded (?) my machine to Red Hat 7.2. Now my make check fails with... make[2]: Leaving directory `/home/pfkeb/hippodraw-BUILD/testsuite' make check-TESTS make[2]: Entering directory `/home/pfkeb/hippodraw-BUILD/testsuite' /bin/sh: -c: line 1: syntax error near unexpected token `;'

Re: automake or libtool question on Red Hat 7.2

2001-10-30 Thread Paul F. Kunz
On Wed, 31 Oct 2001 10:50:29 +1000, Kevin Ryde [EMAIL PROTECTED] said: Paul F. Kunz [EMAIL PROTECTED] writes: /bin/sh: -c: line 1: syntax error near unexpected token `;' /bin/sh: ... for tst in ; ... bash doesn't like an empty list like that. Is $(TESTS) empty for some reason? Ah

Re: Auto-tools Win32 Borland C++ Builder

2001-05-25 Thread Paul F. Kunz
On Fri, 25 May 2001 10:39:14 + (GMT), Martin Hollmichel [EMAIL PROTECTED] said: really multiplatform. And I think at the moment the autotools don't want/can to support native non Unix platforms. For my own needs, I've written a tool, `am2msdev', which creates MS Dev Studio project

Re: MS Dev Studio

2001-05-18 Thread Paul F. Kunz
On Thu, 17 May 2001 20:00:19 -0600, Tom Tromey [EMAIL PROTECTED] said: Paul == Paul F Kunz [EMAIL PROTECTED] writes: Paul For Windows users, I use my am2msdev tool to read Makefile.am Paul files and generate MS Visual Studio project files. How much of the automake syntax does it understand

Re: Mac OS X

2001-05-17 Thread Paul F. Kunz
On Thu, 17 May 2001 18:03:33 -0600, Tom Tromey [EMAIL PROTECTED] said: Paul == Paul F Kunz [EMAIL PROTECTED] writes: Paul bundle: rm -rf */*.o c++ -bundle Paul -I/System/Library/Frameworks/JavaVM.framework/Headers \ -I. -o Paul libhippoplot.jnilib -framework JavaVM \ jni/*.cxx pattern/*.cxx

automake on Mac OS X

2001-05-06 Thread Paul F. Kunz
I just came back from a workshop in Boston where I presented my project and said that people should have no problems configuring my software on their machines because I use automake/autoconf. But one of the 30-40 people there was running Mac OS X on his laptop. Well Steve Jobs and company

Re: Bad dependencies generation

2001-04-19 Thread Paul F. Kunz
To answer my own question about bad dependency generation with the combination of Red Hat 7.1beta, gcc 2.96, and autoconf/automake released version. It is gcc 2.96 causing the problem, as it went away after installing gcc 2.95.3.

automake on Red Hat 7.1beta

2001-04-18 Thread Paul F. Kunz
The generation of the .dep/*.P files is incorrect on my Red Hat 7.1beta (with imfamous gcc 2.96). When I configure in build directory outside of source directory, I get a first line like ../../hippodraw/src/AxisModelBase.lo ../../hippodraw/src/AxisModelBase.o ; (i.e. pointing to the source

problem with make install and java

2001-02-28 Thread Paul F. Kunz
I'm using automake with mix C++ and Java code. Everything is fine, even the creating of JNI header files, except for one thing. On "make install", the .class files get copied into the installation directory. Since, I'm creating a .jar file, which gets installed in $prefix/share, I don't

Re: .jar files.

2001-01-22 Thread Paul F. Kunz
On Mon, 22 Jan 2001 11:41:50 -0700, Tom Tromey [EMAIL PROTECTED] said: You can probably do it by hand: foo_DATA = my.jar my.jar: $(my_java_sources) ... Works, Thanks (stupid mistake on my part kept it from working before I posted to the list).

.jar files.

2001-01-21 Thread Paul F. Kunz
I'm trying to get automake to build a Makefile that will update the project's `.jar' file whenenver any `.java' files get compiled. No success so far. Can someone give me a solution to this?

Re: HP 11.0 acc 3.25 help with purify

2000-11-14 Thread Paul F. Kunz
On Tue, 14 Nov 2000 14:39:07 -0700, Tim Heath [EMAIL PROTECTED] said: I have modified the make file generated by automake because aCC does not support the same dependency generation that CC does. What I don't understand is how to add another make target so that I can compile for usage

Dependency tracking

2000-10-17 Thread Paul F. Kunz
I have a project being worked on by two people; both with gmake but one not using gcc. Is there a way to allow the gcc developer to use automake dependency tracking, while the other developer uses some other system. The other developer has gcc (but doesn't use it for the code), so is there

Re: Non-trivial example of Java automake?

2000-07-14 Thread Paul F. Kunz
On Fri, 14 Jul 2000 17:35:27 -0400, Paul Berrevoets [EMAIL PROTECTED] said: Does anyone know of a Java project that uses autoconf/automake that I could use as a template example for using autoconf/automake in our project? I asked the same question of myself several weeks ago and came up

Fortran 90

2000-05-07 Thread Paul F. Kunz
I know Fortran 77 is supported, so I put the following in my Makefile.am --- bin_PROGRAMS = readfits readfits_SOURCES = readfits.f90 SUFFIXES = .f90 .f90.o f90 -c $ --- but then from automake I get warning --- automake: Makefile.am: Fortran 77 source seen but `F77' not defined