Complete.Org: Mailing Lists: Archives: freeciv-dev: May 2004:
[Freeciv-Dev] Re: (PR#8634) [Patch] Fix AC_CONFIG_FILES call for cygwin
Home

[Freeciv-Dev] Re: (PR#8634) [Patch] Fix AC_CONFIG_FILES call for cygwin

[Top] [All Lists]

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: undisclosed-recipients: ;
Subject: [Freeciv-Dev] Re: (PR#8634) [Patch] Fix AC_CONFIG_FILES call for cygwin autoheader
From: "Marko Lindqvist" <marko.lindqvist@xxxxxxxxxxx>
Date: Sat, 1 May 2004 09:46:37 -0700
Reply-to: rt@xxxxxxxxxxx

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


  Ok, it was linefeed problem after all, only other way around I thought 
it could be. My cvs -client was set to convert fetched files to DOS LF. 
So when I even tested converting files to DOS LF format, I actually did 
nothing...

  So, if all files are in unix LF mode, ./autogen.sh + make works all 
the way to finished compilation (but with default parameters generate 
unusable client). With attached patch they work even with 'wrong' LF 
characters.


  - Caz


diff -Nurd freeciv/configure.ac freeciv/configure.ac
--- freeciv/configure.ac        2004-04-29 08:37:14.000000000 +0300
+++ freeciv/configure.ac        2004-05-01 18:51:32.421875000 +0300
@@ -672,42 +672,42 @@
   CFLAGS="$EXTRA_GCC_DEBUG_CFLAGS $CFLAGS"
 fi
 
-AC_CONFIG_FILES([Makefile
-          data/Makefile 
-         data/misc/Makefile 
-         data/trident/Makefile 
-         data/isotrident/Makefile 
-         data/default/Makefile 
-         data/civ1/Makefile 
-         data/civ2/Makefile 
-         data/scenario/Makefile 
-         data/nation/Makefile 
-         data/history/Makefile 
-         common/Makefile 
-         common/aicore/Makefile 
-         ai/Makefile 
-         tests/Makefile
-         client/Makefile 
-         client/agents/Makefile
-         client/include/Makefile 
-         client/gui-sdl/Makefile 
-         client/gui-gtk/Makefile 
-         client/gui-gtk-2.0/Makefile
-         client/gui-xaw/Makefile 
-         client/gui-win32/Makefile 
-         client/gui-stub/Makefile 
-         server/Makefile 
-         server/userdb/Makefile
-         intl/Makefile
-         po/Makefile.in
-         doc/Makefile
-         doc/de/Makefile
-         doc/fr/Makefile
-         doc/it/Makefile
-         doc/ja/Makefile
-         doc/nl/Makefile
-         doc/sv/Makefile
-         undep.sh])
+AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([data/Makefile])
+AC_CONFIG_FILES([data/misc/Makefile])
+AC_CONFIG_FILES([data/trident/Makefile])
+AC_CONFIG_FILES([data/isotrident/Makefile])
+AC_CONFIG_FILES([data/default/Makefile])
+AC_CONFIG_FILES([data/civ1/Makefile])
+AC_CONFIG_FILES([data/civ2/Makefile])
+AC_CONFIG_FILES([data/scenario/Makefile])
+AC_CONFIG_FILES([data/nation/Makefile])
+AC_CONFIG_FILES([data/history/Makefile])
+AC_CONFIG_FILES([common/Makefile])
+AC_CONFIG_FILES([common/aicore/Makefile])
+AC_CONFIG_FILES([ai/Makefile])
+AC_CONFIG_FILES([tests/Makefile])
+AC_CONFIG_FILES([client/Makefile])
+AC_CONFIG_FILES([client/agents/Makefile])
+AC_CONFIG_FILES([client/include/Makefile])
+AC_CONFIG_FILES([client/gui-sdl/Makefile])
+AC_CONFIG_FILES([client/gui-gtk/Makefile])
+AC_CONFIG_FILES([client/gui-gtk-2.0/Makefile])
+AC_CONFIG_FILES([client/gui-xaw/Makefile])
+AC_CONFIG_FILES([client/gui-win32/Makefile])
+AC_CONFIG_FILES([client/gui-stub/Makefile])
+AC_CONFIG_FILES([server/Makefile])
+AC_CONFIG_FILES([server/userdb/Makefile])
+AC_CONFIG_FILES([intl/Makefile])
+AC_CONFIG_FILES([po/Makefile.in])
+AC_CONFIG_FILES([doc/Makefile])
+AC_CONFIG_FILES([doc/de/Makefile])
+AC_CONFIG_FILES([doc/fr/Makefile])
+AC_CONFIG_FILES([doc/it/Makefile])
+AC_CONFIG_FILES([doc/ja/Makefile])
+AC_CONFIG_FILES([doc/nl/Makefile])
+AC_CONFIG_FILES([doc/sv/Makefile])
+AC_CONFIG_FILES([undep.sh])
 AC_CONFIG_FILES([civ], [chmod +x civ])
 AC_CONFIG_FILES([ser], [chmod +x ser])
 AC_CONFIG_COMMANDS([default],[[ chmod +x undep.sh ; ./undep.sh ]],[[]])

[Prev in Thread] Current Thread [Next in Thread]