From 1cefa7c219a805f79558385afd71ec01f72190d7 Mon Sep 17 00:00:00 2001 From: Leonardo Godinho Date: Thu, 15 Mar 2007 22:59:04 +0000 Subject: pointing to Kepler default Windows directories --- lualdap/config.win | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'lualdap') diff --git a/lualdap/config.win b/lualdap/config.win index 199ea25..1b45d70 100755 --- a/lualdap/config.win +++ b/lualdap/config.win @@ -1,24 +1,30 @@ # Installation directories # System's libraries directory (where binary libraries are installed) -LUA_LIBDIR= e:\leonardo\dev\kepler1.1\lua511 +LUA_LIBDIR= c:\lua5.1\lib # Lua includes directory -#LDAP_INC= c:\dev\openldap-2.1.17_bin\include -LUA_INC= e:\leonardo\dev\kepler1.1\lua511\include +LUA_INC= c:\lua5.1\include + +# OpenLDAP requires extra include. Comment this line if using ADSI (WinLDAP) +#LDAP_INC=/IC:\openldap-2.1.17_bin\include # Lua library -LUA_LIB= e:\leonardo\dev\kepler1.1\lua511\lua5.1.lib +LUA_LIB= c:\lua5.1\bin\lua5.1.lib # LDAP library -#LDAP_LIB= c:\dev\openldap-2.1.17_bin\DLLRelease\openldap.lib +#LDAP_LIB= C:\openldap-2.1.17_bin\DLLRelease\openldap.lib LDAP_LIB= Wldap32.lib LIBNAME= $T.dll # Compilation directives WARN= /O2 -INCS= /I$(LUA_INC) + +INCS= /I$(LUA_INC) $(LDAP_INC) + # CFLAGS should include -DWINLDAP to use native windows library instead of OpenLDAP +#CFLAGS= $(WARN) $(INCS) -DWIN32 CFLAGS= $(WARN) $(INCS) -DWIN32 -DWINLDAP + CC= cl -- cgit v1.2.3-59-g8ed1b