[Pcsclite-cvs-commit] MCardPluginDDK configure.in,1.1.1.1,1.2

rousseau@quantz.debian.org rousseau@quantz.debian.org
Tue, 30 Sep 2003 14:47:31 +0200


Update of /cvsroot/muscleplugins/MCardPluginDDK
In directory quantz:/tmp/cvs-serv14400

Modified Files:
	configure.in 
Log Message:
use AM_MAINTAINER_MODE
release 1.0.1


Index: configure.in
===================================================================
RCS file: /cvsroot/muscleplugins/MCardPluginDDK/configure.in,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- configure.in	19 Feb 2002 22:01:37 -0000	1.1.1.1
+++ configure.in	30 Sep 2003 12:47:29 -0000	1.2
@@ -1,13 +1,14 @@
 dnl Process this file with autoconf to produce a configure script.
 AC_INIT(src/genericPlugin.h)
-AC_CONFIG_AUX_DIR(build)
 
 AC_CANONICAL_SYSTEM
-AM_INIT_AUTOMAKE(genericPlugin, 1.0.0)
+AM_INIT_AUTOMAKE(genericPlugin, 1.0.1)
+
+AM_MAINTAINER_MODE
 
 dnl Select OS specific versions of source files.
 case "${build_os}" in
- linux-gnu)     arch=linux ;;
+ *linux*)     arch=linux ;;
  *bsd*)         arch=bsd ;;
  *darwin*)      arch=darwin ;;
  *solaris*)     arch=solaris ;;
@@ -101,7 +102,7 @@
 
  
 LIBS="$PTHREAD_LIBS $LIBS"
-CFLAGS="$CFLAGS -fno-common $PTHREAD_CFLAGS -I/usr/local/include"
+CFLAGS="$CFLAGS -fno-common $PTHREAD_CFLAGS -I/usr/local/include -Wall"
 CC="$PTHREAD_CC"
 
 dnl Checks for typedefs, structures, and compiler characteristics.
@@ -130,11 +131,9 @@
   AC_DEFINE(MSC_DEBUG, 1, [enable full MSC debug messaging.])
 fi
 
-AC_MSG_RESULT([system target type     : $build_os])
+AC_MSG_RESULT([system target type     : $arch])
 AC_MSG_RESULT([enable status callback : $callback])
 AC_MSG_RESULT([enable mcard debug     : $debug]) 
 
- 
-AC_OUTPUT(Makefile src/Makefile)
-
+AC_OUTPUT(Makefile aclocal/Makefile src/Makefile)