]> granicus.if.org Git - poly2tri-c/commitdiff
some autotools foo to fix compilation on linux
authorMichael Muré <mure.michael@gmail.com>
Sun, 6 May 2012 14:29:59 +0000 (23:29 +0900)
committerBarak Itkin <lightningismyname@gmail.com>
Sat, 12 May 2012 15:21:22 +0000 (18:21 +0300)
configure.ac

index 045c94f4f96ded85a0a62dab3f1459c019514fd5..5259d046cc82b2945c3f84de38f28cc17f8004b9 100644 (file)
@@ -5,13 +5,22 @@ AC_INIT([poly2tri-c], [0.9], [lightningismyname@gmail.com])
 AC_CONFIG_AUX_DIR([build-aux])
 
 # Tell autoconf where to look for macros
-AC_CONFIG_MACRO_DIR([m4macros])
+AC_CONFIG_MACRO_DIR([m4])
 
 # Initialize Automake with the following settings:
 # Relax some of the GNU requirements
 # Report all potential warnings and report all warnings as errors
 AM_INIT_AUTOMAKE([foreign -Wall -Werror])
 
+# Enable silent rules is available
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+
+# Define maintainer mode
+AM_MAINTAINER_MODE
+
+# Locate archiver
+AM_PROG_AR
+
 # Initialize libtool
 LT_INIT