Complete.Org: Mailing Lists: Archives: freeciv-dev: May 2004:
[Freeciv-Dev] (PR#8802) ser isn't created from ser.in
Home

[Freeciv-Dev] (PR#8802) ser isn't created from ser.in

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: undisclosed-recipients: ;
Subject: [Freeciv-Dev] (PR#8802) ser isn't created from ser.in
From: "Raimar Falke" <i-freeciv-lists@xxxxxxxxxxxxx>
Date: Fri, 21 May 2004 22:58:49 -0700
Reply-to: rt@xxxxxxxxxxx

<URL: http://rt.freeciv.org/Ticket/Display.html?id=8802 >

$ rm ser
$ ll ser.in
-rwxr-xr-x    1 hawk     users        1084 Mai 20 17:18 ser.in
$ ./autogen.sh 
+ checking for autoconf >= 2.52 ... found 2.13, not ok !
+ checking for autoconf >= 2.13 ... found 2.13, ok.
+ checking for automake >= 1.4 ... found 1.4-p5, ok.
+ checking for xgettext >= 0.10.36 ... found 0.11.1, ok.
+ checking for msgfmt >= 0.10.36 ... found 0.11.1, ok.
+ creating acinclude.m4
+ running aclocal ...
aclocal: both `configure.ac' and `configure.in' present: ignoring `configure.in'
+ running autoheader ... 
+ running autoconf ... 
+ generating automake files...
+ running automake ... 
automake: both `configure.ac' and `configure.in' present: ignoring 
`configure.in'
+ removing config.cache ... 
+ running configure ... 

I am going to run ./configure with no arguments - if you wish 
to pass any to it, please specify them on the ./autogen.sh command line.

creating cache ./config.cache
checking for a BSD compatible install... /usr/bin/install -c
...
updating cache ./config.cache
creating ./config.status
creating Makefile
creating data/Makefile
...
creating civ
creating ser
creating undep.sh
creating config.h
config.h is unchanged
creating po/POTFILES
creating po/Makefile
extending po/Makefile
silencing po/Makefile
modifying po/Makefile add-comments/escape

Now type 'make' to compile freeciv.
$ cat ser
#!/bin/sh
#/********************************************************************** 
# Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
# script by Rene Schalburg
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 2, or (at your option)
#   any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#***********************************************************************/

# Find absolute paths for srcdir and builddir.
BUILDDIR="@abs_top_builddir@"
SRCDIR="@abs_top_srcdir@"

[ -x $BUILDDIR/server/civserver ] && EXE=$BUILDDIR/server/civserver
[ -x $BUILDDIR/civserver ] && EXE=$BUILDDIR/civserver

if [ "$EXE" = "" ]; then
  echo $0: Unable to find civserver.
  exit 1
fi

cd $SRCDIR && exec $EXE ${1+"$@"}
$ ./ser 
./ser: Unable to find civserver.
$ ls -l server/civserver
-rwxr-xr-x    1 hawk     users     6140782 Mai 22 07:23 server/civserver
$

I have no idea when this broke.

        Raimar

-- 
 email: rf13@xxxxxxxxxxxxxxxxx
 "Your mail could not be delivered to the following Address:
  VTCMC.VTLPR@xxxxxxxxxxxxx        ** Unassigned error message **"




[Prev in Thread] Current Thread [Next in Thread]
  • [Freeciv-Dev] (PR#8802) ser isn't created from ser.in, Raimar Falke <=