aboutsummaryrefslogtreecommitdiffstats
path: root/lualdap/config
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2015-03-09 18:13:13 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2015-03-10 14:35:22 +0100
commit25400cb17e2e531266e0e1c7149800c3fa0609dd (patch)
tree23d813c1daa7c004e0456c8e132dac03dbf007c5 /lualdap/config
parentLink to version 1.0 (diff)
downloadlualdap-25400cb17e2e531266e0e1c7149800c3fa0609dd.tar.xz
lualdap-25400cb17e2e531266e0e1c7149800c3fa0609dd.zip
Modernize project1.2.0
Diffstat (limited to 'lualdap/config')
-rwxr-xr-xlualdap/config26
1 files changed, 0 insertions, 26 deletions
diff --git a/lualdap/config b/lualdap/config
deleted file mode 100755
index 84543b3..0000000
--- a/lualdap/config
+++ /dev/null
@@ -1,26 +0,0 @@
-# Installation directories
-# System's libraries directory (where binary libraries are installed)
-LUA_LIBDIR= /usr/local/lib/lua/5.0
-# Lua includes directory
-LUA_INC= /usr/local/include
-# OpenLDAP includes directory
-OPENLDAP_INC= /usr/local/include
-# OpenLDAP library (an optional directory can be specified with -L<dir>)
-OPENLDAP_LIB= -lldap
-
-# OS dependent
-LIB_OPTION= -shared #for Linux
-#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X
-
-# Lua version number (first and second digits of target version)
-LUA_VERSION_NUM= 500
-LIBNAME= $T.so.$V
-COMPAT_DIR= ../compat/src
-
-# Compilation parameters
-WARN= -O2 -Wall -fPIC -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings -ansi
-INCS= -I$(LUA_INC) -I$(OPENLDAP_INC) -I$(COMPAT_DIR)
-CFLAGS= $(WARN) $(INCS)
-CC= gcc
-
-# $Id: config,v 1.5 2006-07-24 01:42:06 tomas Exp $