diff options
author | tomas <tomas> | 2005-06-24 01:49:16 +0000 |
---|---|---|
committer | tomas <tomas> | 2005-06-24 01:49:16 +0000 |
commit | 1a1f08c803046e6812d1046d305e957a9274b550 (patch) | |
tree | 41cd6e58e6ee65989c6de4e59d64437670ba1afd /config | |
parent | 3479c6d9354a0574364ea05b3d3b56cc095e5d39 (diff) | |
download | luafilesystem-1a1f08c803046e6812d1046d305e957a9274b550.tar.gz luafilesystem-1a1f08c803046e6812d1046d305e957a9274b550.tar.bz2 luafilesystem-1a1f08c803046e6812d1046d305e957a9274b550.zip |
Library name without prefix: <lib>.so.<ver>
Adding symbolic link: <lib>.so -> <lib.so.<ver>
Diffstat (limited to '')
-rw-r--r-- | config | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,13 +2,13 @@ | |||
2 | # System's libraries directory (where binary libraries are installed) | 2 | # System's libraries directory (where binary libraries are installed) |
3 | LUA_LIBDIR= /usr/local/lib/lua/5.0 | 3 | LUA_LIBDIR= /usr/local/lib/lua/5.0 |
4 | # Lua includes directory | 4 | # Lua includes directory |
5 | LUA_INC= /usr/local/include/lua5 | 5 | LUA_INC= /usr/local/include |
6 | 6 | ||
7 | # OS dependent | 7 | # OS dependent |
8 | LIB_OPTION= -shared #for Linux | 8 | LIB_OPTION= -shared #for Linux |
9 | #LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X | 9 | #LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X |
10 | 10 | ||
11 | LIBNAME= lib$T-$V.so | 11 | LIBNAME= $T.so.$V |
12 | COMPAT_DIR= ../compat/src | 12 | COMPAT_DIR= ../compat/src |
13 | 13 | ||
14 | # Compilation directives | 14 | # Compilation directives |
@@ -17,4 +17,4 @@ INCS= -I$(LUA_INC) -I$(COMPAT_DIR) | |||
17 | CFLAGS= $(WARN) $(INCS) | 17 | CFLAGS= $(WARN) $(INCS) |
18 | CC= gcc | 18 | CC= gcc |
19 | 19 | ||
20 | # $Id: config,v 1.13 2005/06/10 13:01:15 tomas Exp $ | 20 | # $Id: config,v 1.14 2005/06/24 01:49:16 tomas Exp $ |