[Lemon-commits] [lemon_svn] ladanyi: r1700 - in hugo/branches/akos: . config src/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:47:04 CET 2006


Author: ladanyi
Date: Tue Mar 29 11:37:33 2005
New Revision: 1700

Modified:
   hugo/branches/akos/   (props changed)
   hugo/branches/akos/bootstrap
   hugo/branches/akos/config/   (props changed)
   hugo/branches/akos/configure.ac
   hugo/branches/akos/src/lemon/   (props changed)
   hugo/branches/akos/src/lemon/Makefile.am

Log:
Added libtool.

Modified: hugo/branches/akos/bootstrap
==============================================================================
--- hugo/branches/akos/bootstrap	(original)
+++ hugo/branches/akos/bootstrap	Tue Mar 29 11:37:33 2005
@@ -30,7 +30,7 @@
 
 Options:
   -h, --help            display this help and exit
-      --amver=VERSION   use VERSION version of automake and aclocal
+      --amver=VERSION   use VERSION version of automake
       --acver=VERSION   use VERSION version of autoconf
 
 Expamle:
@@ -66,5 +66,6 @@
 fi
 
 $aclocal \
-&& $automake --gnu --add-missing \
+&& libtoolize --force --copy \
+&& $automake --add-missing --copy --gnu \
 && $autoconf

Modified: hugo/branches/akos/configure.ac
==============================================================================
--- hugo/branches/akos/configure.ac	(original)
+++ hugo/branches/akos/configure.ac	Tue Mar 29 11:37:33 2005
@@ -6,8 +6,9 @@
 AC_PREREQ(2.57)
 
 dnl Checks for programs.
-AC_PROG_CC
 AC_PROG_CXX
+AC_PROG_INSTALL
+AC_PROG_LIBTOOL
 
 CXXFLAGS="$CXXFLAGS -Wall"
 

Modified: hugo/branches/akos/src/lemon/Makefile.am
==============================================================================
--- hugo/branches/akos/src/lemon/Makefile.am	(original)
+++ hugo/branches/akos/src/lemon/Makefile.am	Tue Mar 29 11:37:33 2005
@@ -1,6 +1,9 @@
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = lemon.pc
 
+lib_LTLIBRARIES = libemon.la
+libemon_la_SOURCES =
+
 pkginclude_HEADERS =							\
 	array_map.h                                                     \
 	bezier.h                                                        \



More information about the Lemon-commits mailing list