Wed May 28 19:33:45 CEST 2014 <seiler@b1-systems.de>

Added the library version to file name


--- luaexpat-1.3.0/Makefile.old	2014-05-27 17:45:05.353973837 +0200
+++ luaexpat-1.3.0/Makefile	2014-05-27 18:45:28.939123556 +0200
@@ -7,7 +7,8 @@ LUA_V		?= 5.1
 LUA_LDIR	?= /usr/share/lua/$(LUA_V)
 LUA_CDIR	?= /usr/lib/lua/$(LUA_V)
 T		= lxp
-LIBNAME		= $(T).so
+V       = 1.3.0
+LIBNAME		= $(T).so.$(V)
 
 COMMON_CFLAGS	 = -g -pedantic -Wall -O2 -fPIC -DPIC -ansi
 LUA_INC		?= -I/usr/include/lua$(LUA_V)
@@ -28,6 +29,7 @@ src/$(LIBNAME):
 
 install:
 	$(INSTALL_PROGRAM) -D src/$(LIBNAME) $(DESTDIR)$(LUA_CDIR)/$(LIBNAME)
+	ln -s $(LIBNAME) $(DESTDIR)$(LUA_CDIR)/$(T).so
 	$(INSTALL_PROGRAM) -D src/$T/lom.lua $(DESTDIR)$(LUA_LDIR)/$T/lom.lua
 
 clean: