[Tux4kids-commits] r1457 - branches/commonification/tux4kids-common/trunk

David Bruce dbruce-guest at alioth.debian.org
Thu Aug 20 23:18:19 UTC 2009


Author: dbruce-guest
Date: 2009-08-20 23:18:19 +0000 (Thu, 20 Aug 2009)
New Revision: 1457

Added:
   branches/commonification/tux4kids-common/trunk/COPYING
   branches/commonification/tux4kids-common/trunk/INSTALL
   branches/commonification/tux4kids-common/trunk/Makefile.am
   branches/commonification/tux4kids-common/trunk/configure.ac
Log:
Start of autoconfiscation - DSB



Added: branches/commonification/tux4kids-common/trunk/COPYING
===================================================================
--- branches/commonification/tux4kids-common/trunk/COPYING	                        (rev 0)
+++ branches/commonification/tux4kids-common/trunk/COPYING	2009-08-20 23:18:19 UTC (rev 1457)
@@ -0,0 +1 @@
+link /usr/share/automake-1.10/COPYING
\ No newline at end of file


Property changes on: branches/commonification/tux4kids-common/trunk/COPYING
___________________________________________________________________
Added: svn:special
   + *

Added: branches/commonification/tux4kids-common/trunk/INSTALL
===================================================================
--- branches/commonification/tux4kids-common/trunk/INSTALL	                        (rev 0)
+++ branches/commonification/tux4kids-common/trunk/INSTALL	2009-08-20 23:18:19 UTC (rev 1457)
@@ -0,0 +1 @@
+link /usr/share/automake-1.10/INSTALL
\ No newline at end of file


Property changes on: branches/commonification/tux4kids-common/trunk/INSTALL
___________________________________________________________________
Added: svn:special
   + *

Added: branches/commonification/tux4kids-common/trunk/Makefile.am
===================================================================
--- branches/commonification/tux4kids-common/trunk/Makefile.am	                        (rev 0)
+++ branches/commonification/tux4kids-common/trunk/Makefile.am	2009-08-20 23:18:19 UTC (rev 1457)
@@ -0,0 +1,5 @@
+## Top-level Makefile.am for tux4kids-common
+## Process with Automake to create Makefile.in
+
+SUBDIRS = src
+

Added: branches/commonification/tux4kids-common/trunk/configure.ac
===================================================================
--- branches/commonification/tux4kids-common/trunk/configure.ac	                        (rev 0)
+++ branches/commonification/tux4kids-common/trunk/configure.ac	2009-08-20 23:18:19 UTC (rev 1457)
@@ -0,0 +1,30 @@
+#                                               -*- Autoconf -*-
+# Process this file with autoconf to produce a configure script.
+
+AC_PREREQ([2.63])
+AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
+AC_CONFIG_SRCDIR([config.h.in])
+AC_CONFIG_HEADERS([config.h])
+
+AM_INIT_AUTOMAKE
+
+# Checks for programs.
+AC_PROG_CC
+AC_PROG_RANLIB
+
+# Checks for libraries.
+
+# Checks for header files.
+AC_CHECK_HEADERS([stdlib.h string.h])
+
+# Checks for typedefs, structures, and compiler characteristics.
+AC_HEADER_STDBOOL
+AC_C_RESTRICT
+
+# Checks for library functions.
+AC_FUNC_MALLOC
+AC_CHECK_FUNCS([floor strchr strdup strrchr])
+
+AC_CONFIG_FILES([Makefile
+                 src/Makefile])
+AC_OUTPUT




More information about the Tux4kids-commits mailing list