Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/pynslcd/constants.py.in
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2012-12-15 12:13:35 +0100
committerArthur de Jong <arthur@arthurdejong.org>2012-12-15 12:13:35 +0100
commit99933fd3561df12ed81304eaf444c1d7d1060f38 (patch)
tree6ea4c358358901c27f828437d12b92e2f20fae5f /pynslcd/constants.py.in
parent5d7483715aceb4f1f50d0b2dfbca5510b598191a (diff)
merge config.py into constants.py and generate it from configure
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1863 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'pynslcd/constants.py.in')
-rw-r--r--pynslcd/constants.py.in51
1 files changed, 51 insertions, 0 deletions
diff --git a/pynslcd/constants.py.in b/pynslcd/constants.py.in
new file mode 100644
index 0000000..4f57e34
--- /dev/null
+++ b/pynslcd/constants.py.in
@@ -0,0 +1,51 @@
+
+# constants.py - configured information and constants, this file is processed
+# and extended by the configure script
+#
+# Copyright (C) 2012 Arthur de Jong
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+# 02110-1301 USA
+
+
+# Name of package
+PACKAGE = '''@PACKAGE@'''
+
+# Define to the address where bug reports for this package should be sent.
+PACKAGE_BUGREPORT = '''@PACKAGE_BUGREPORT@'''
+
+# Define to the full name of this package.
+PACKAGE_NAME = '''@PACKAGE_NAME@'''
+
+# Define to the full name and version of this package.
+PACKAGE_STRING = '''@PACKAGE_STRING@'''
+
+# Define to the home page for this package.
+PACKAGE_URL = '''@PACKAGE_URL@'''
+
+# Version number of package
+VERSION = '''@VERSION@'''
+
+# Path to nslcd configuration file.
+NSLCD_CONF_PATH = '''@NSLCD_CONF_PATH@'''
+
+# The location of the pidfile used for checking availability of the nslcd.
+NSLCD_PIDFILE = '''@NSLCD_PIDFILE@'''
+
+# The location of the socket used for communicating.
+NSLCD_SOCKET = '''@NSLCD_SOCKET@'''
+
+# The SONAME of the NSS library module.
+NSS_LDAP_SONAME = '''@NSS_LDAP_SONAME@'''