summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@redhat.com>2010-04-20 18:09:49 -0400
committerNalin Dahyabhai <nalin@redhat.com>2010-04-20 18:09:49 -0400
commitc876843e329c96f6b196e0e27417f74856f5269a (patch)
treee03349619f44e0450c133a4851f43d9cdbdd8ec4
parent4858c55beff8d1a6e890b3070e6d7deb14fae01d (diff)
downloadpam_rps-c876843e329c96f6b196e0e27417f74856f5269a.tar.gz
pam_rps-c876843e329c96f6b196e0e27417f74856f5269a.tar.xz
pam_rps-c876843e329c96f6b196e0e27417f74856f5269a.zip
- start building new build machinery
-rw-r--r--Makefile.am21
-rw-r--r--configure.ac5
2 files changed, 5 insertions, 21 deletions
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index 756d68b..0000000
--- a/Makefile.am
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# Copyright (c) 2005 Thorsten Kukuk <kukuk@suse.de>
-# Copyright (c) 2005 Red Hat, Inc.
-#
-
-CLEANFILES = *~
-
-man_MANS = pam_rps.8
-EXTRA_DIST = README $(man_MANS)
-
-securelibdir = $(SECUREDIR)
-secureconfdir = $(SCONFIGDIR)
-
-AM_CFLAGS = -I$(top_srcdir)/libpam/include -I$(top_srcdir)/libpamc/include
-AM_LDFLAGS = -no-undefined -avoid-version -module \
- -L$(top_builddir)/libpam -lpam
-if HAVE_VERSIONING
- AM_LDFLAGS += -Wl,--version-script=$(srcdir)/../modules.map
-endif
-
-securelib_LTLIBRARIES = pam_rps.la
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..35861ea
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,5 @@
+AC_INIT(pam_rps,0.1)
+AM_INIT_AUTOMAKE(foreign)
+AC_PROG_LIBTOOL
+AC_CHECK_HEADERS(security/pam_modules.h)
+AC_OUTPUT(Makefile src/Makefile)