Re: Failure in make dist

2013-05-06 Thread Jason Curl
On 04/05/2013 22:31, Stefano Lattarini wrote: On 05/01/2013 03:06 PM, Jason Curl wrote: On 01/05/2013 12:55, Stefano Lattarini wrote: On 04/27/2013 08:53 PM, Jason Curl wrote: Hello, I'm running autoconf-2.69 and automake-1.11.6 on Lubuntu12.10 and when I run distmake for my project

Re: Failure in make dist

2013-05-02 Thread Jason Curl
On 01/05/2013 12:55, Stefano Lattarini wrote: [dropping the autoconf list, since this is in all likelihood an automake issue] On 04/27/2013 08:53 PM, Jason Curl wrote: Hello, I'm running autoconf-2.69 and automake-1.11.6 on Lubuntu12.10 and when I run distmake for my project, it aborts

Failure in make dist

2013-04-27 Thread Jason Curl
Hello, I'm running autoconf-2.69 and automake-1.11.6 on Lubuntu12.10 and when I run distmake for my project, it aborts with the error: jcurl@lubuntu1210:~/winlib/build/Linux$ make dist if test -d winproglib-1.1.0.50.svn_20130427; then find winproglib-1.1.0.50.svn_20130427 -type d ! -perm

Re: Copy files in VPATH build

2010-10-31 Thread Jason Curl
On 31/10/2010 10:20, Ralf Wildenhues wrote: * Paul J. Davis wrote on Sun, Oct 31, 2010 at 12:10:01AM CEST: On Oct 30, 2010, at 5:17 PM, Jason Curljcurln...@arcor.de wrote: When building my package with ./configure everything works well as some datafiles that are required for tests are in the

Copy files in VPATH build

2010-10-30 Thread Jason Curl
Hello, When building my package with ./configure everything works well as some datafiles that are required for tests are in the correct place (my tests don't need to be installed with make install). However, when I use VPATH builds with ../configure, I don't know how to get my data files

Re: Makefile.in and Makefile not generated when using a static library

2010-04-11 Thread Jason Curl
On 11/04/2010 03:10, isulsz wrote: Hi, I am new to GNU Auto tools and I am trying to build a project that contains several source files and a static library. My directory is like: (project root)/src/app/: This contains the source files to build a binary (project root)/src/Random/: This contains

Checking versions and defining macros

2008-03-04 Thread Jason Curl
Hello, To achieve my goals, I've borrowed some of the internals of the auto* tools (and libtool). I'd like to somehow check the version of the autotools during autoreconf time and include macros specific to a particular version. If I see a version that I haven't tested with, then I'd like to

Re: What to check into repository?

2007-12-03 Thread Jason Curl
Hongliang Wang wrote: Hello all, My company decides to make part of our software source code open-sourced. For this part, we will use automake autoconf tools to generate the installation package (.tar.gz). However, the current problem is that we cannot decide what to check into our own

Re: Creating makefile for using Linux-PAM-0.99.6.2

2007-11-20 Thread Jason Curl
PoWah Wong wrote: I downloaded the Linux-PAM-0.99.6.2 (which use automake) and configured and compiled it successfully. snip I want to develop my programs based on the examples directory but I want to put those programs outside the Linux-PAM-0.99.6.2 directory, so I copied the examples

Re: Creating makefile for using Linux-PAM-0.99.6.2

2007-11-20 Thread Jason Curl
Benoit Sigoure wrote: On Nov 20, 2007, at 7:22 PM, PoWah Wong wrote: I am a newbie for the Linux-PAM and automake so please help. Hi, I suggest you read this wonderful tutorial: http://www-src.lip6.fr/homepages/Alexandre.Duret-Lutz/autotools.html It will teach you everything you need to

Aw: Re: Generating 'cat' pages on make install

2007-11-05 Thread Jason Curl
Von: Benoit SIGOURE [EMAIL PROTECTED] On Nov 4, 2007, at 7:59 PM, Jason Curl wrote: I've implemented the following: -8 Makefile.am man_MANS = \ libmofo.3

Re: Aw: Re: Generating 'cat' pages on make install

2007-11-05 Thread Jason Curl
Jason Curl wrote: - configure.ac - ... AC_PATH_PROG([RMAN], [rman]) test x$RMAN = x $ac_unset RMAN AM_MISSING_PROG([RMAN], [rman]) ... - Makefile.am - man_MANS = file1.3 file2.3 html_DATA = ($man_MANS:.3=.html) BUILT_SOURCES = $(html_DATA) EXTRA_DIST = $(man_MANS) $(html_DATA

Re: Generating 'cat' pages on make install

2007-11-04 Thread Jason Curl
Bob Proulx wrote: Jason Curl wrote: Continuing with my efforts of making a library designed for Linux a bit usable for colleagues on Windows I'd like to figure out how to install cat pages, i.e. conversions of man pages. Hmm... Would it make more sense to set up 'man' on ms-windows

Re: Generating 'cat' pages on make install

2007-11-04 Thread Jason Curl
Benoit SIGOURE wrote: On Nov 4, 2007, at 2:40 PM, Jason Curl wrote: So let's assume I've got a command on my build environment groff -Tascii -mandoc myman.3 | col -b mycat.3 I might even extend this to generate HTML instead of ASCII. Later I'd be implementing a Perl script to convert what

Generating 'cat' pages on make install

2007-11-03 Thread Jason Curl
Hello, Continuing with my efforts of making a library designed for Linux a bit usable for colleagues on Windows I'd like to figure out how to install cat pages, i.e. conversions of man pages. I can write a script that will do the conversion for me, but I'd ideally like to have a rule that

Re: Internal Error with 1.10, unterminated IF

2007-08-10 Thread Jason Curl
Ralf Wildenhues wrote: Hello Jason, * Jason Curl wrote on Mon, Jul 30, 2007 at 04:06:44PM CEST: Makefile.am FILES = dir1 dir2 if BUILD_DIR3 FILES += dir3 fi SUBDIRS = $(FILES) Then you get an error output like: Makefile.am:19: unterminated conditionals: BUILD_DIR3_TRUE automake

Re: Internal Error with 1.10, unterminated IF

2007-08-10 Thread Jason Curl
Ralf Wildenhues wrote: I just didn't think it was necessary to explicitly deal with fi except for those who get confused between sh and automake :). But that's a good reason, no? But given GCC diagnostics for unterminated if's, it might be a real nightmare to do anything other than

make distcheck and the /etc dir

2007-06-04 Thread Jason Curl
Hello, I have a project where the program expects the configuration files to be stored in '/etc/lx2005'. Appropriately, I've got such a Makefile.am: # Makefile.am for installing configuration data etcdir=/etc/lx2005 etc_DATA = serlog.conf CLEANFILES = serlog.conf EXTRA_DIST =

Re: make distcheck and the /etc dir

2007-06-04 Thread Jason Curl
deckrider wrote: On 6/4/07, Jason Curl [EMAIL PROTECTED] wrote: Hello, I have a project where the program expects the configuration files to be stored in '/etc/lx2005'. Appropriately, I've got such a Makefile.am: # Makefile.am for installing configuration data etcdir=/etc/lx2005 I