aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-07 10:52:54 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-12-07 10:52:54 +0100
commit7099005f38ff72fa5de5f245eb15077d8708efd6 (patch)
treed36ed5a050e51e3a08214eefde036176a39b9b7e /configure.ac
parentba427b6fd4b84e9f20c016c949f526dbe2893e94 (diff)
downloadlibpam-freerdp2-7099005f38ff72fa5de5f245eb15077d8708efd6.tar.gz
libpam-freerdp2-7099005f38ff72fa5de5f245eb15077d8708efd6.tar.bz2
libpam-freerdp2-7099005f38ff72fa5de5f245eb15077d8708efd6.zip
Continue development of libpam-freerdp under the name libpam-freerdp2 (with support of FreeRDPv2 API).
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac20
1 files changed, 3 insertions, 17 deletions
diff --git a/configure.ac b/configure.ac
index 424c5f9..68656f6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([libpam-freerdp], [1.0.1])
+AC_INIT([libpam-freerdp2], [1.0.1])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([1.11 -Wno-portability])
@@ -25,27 +25,13 @@ fi
# FreeRDP
###########################
-PKG_CHECK_MODULES(FREERDP, freerdp)
-
-###########################
-# Local Install
-###########################
-
-with_localinstall="no"
-AC_ARG_ENABLE(localinstall, AS_HELP_STRING([--enable-localinstall],
- [install all files locally (for distcheck)]),
- with_localinstall=$enableval,
- with_localinstall=no)
+PKG_CHECK_MODULES(FREERDP2, freerdp2)
###########################
# PAM Module dir
###########################
-if test "x$with_localinstall" = "xyes"; then
- PAMMODULEDIR="${libdir}/security/"
-else
- PAMMODULEDIR="/lib/security"
-fi
+PAMMODULEDIR="/lib/security"
AC_SUBST(PAMMODULEDIR)
###########################