mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 06:10:30 -04:00
Update afnix to 2.0.0
Feature safe: yes
This commit is contained in:
parent
a79f4d36c3
commit
94e6ee59e9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=267758
5 changed files with 91 additions and 46 deletions
|
@ -7,7 +7,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= afnix
|
PORTNAME= afnix
|
||||||
PORTVERSION= 1.9.0
|
PORTVERSION= 2.0.0
|
||||||
CATEGORIES= lang
|
CATEGORIES= lang
|
||||||
MASTER_SITES= http://www.afnix.org/ftp/ \
|
MASTER_SITES= http://www.afnix.org/ftp/ \
|
||||||
ftp://ftp.stack.nl/pub/users/johans/afnix/
|
ftp://ftp.stack.nl/pub/users/johans/afnix/
|
||||||
|
@ -32,10 +32,10 @@ AFNIX_VERSION= ${PORTVERSION:S,.,-,g}
|
||||||
PLIST_SUB= PORTVER=${PORTVERSION:R}
|
PLIST_SUB= PORTVER=${PORTVERSION:R}
|
||||||
|
|
||||||
MAN1= adp::afnix.1 axc::afnix.1 axd::afnix.1 \
|
MAN1= adp::afnix.1 axc::afnix.1 axd::afnix.1 \
|
||||||
axi::afnix.1 axl::afnix.1 axs::afnix.1
|
axi::afnix.1 axl::afnix.1
|
||||||
MAN3= gfx::afnix.3 mth::afnix.3 net::afnix.3 nwg::afnix.3 \
|
MAN3= gfx::afnix.3 mth::afnix.3 net::afnix.3 nwg::afnix.3 \
|
||||||
pim::afnix.3 sec::afnix.3 sio::afnix.3 sps::afnix.3 \
|
pim::afnix.3 sec::afnix.3 sio::afnix.3 sps::afnix.3 \
|
||||||
sys::afnix.3 txt::afnix.3 xml::afnix.3
|
sys::afnix.3 txt::afnix.3 xml::afnix.3 itu::afnix.3
|
||||||
MAN4= wax::afnix.4 xpe::afnix.4
|
MAN4= wax::afnix.4 xpe::afnix.4
|
||||||
MAN7= eul::afnix.7 vol-0::afnix.7 vol-1::afnix.7 vol-2::afnix.7
|
MAN7= eul::afnix.7 vol-0::afnix.7 vol-1::afnix.7 vol-2::afnix.7
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
MD5 (afnix-src-1-9-0.tgz) = f20c6399fa66715889248302624edc59
|
SHA256 (afnix-src-2-0-0.tgz) = e5853f5fabfc9ffa6c177752cff52820a01aef3d6239d73f121e79f0708d60e4
|
||||||
SHA256 (afnix-src-1-9-0.tgz) = c65eb6ef773b23bedc28be84f473eeba713f0935df3f9ec814cae9660c010acb
|
SIZE (afnix-src-2-0-0.tgz) = 1868002
|
||||||
SIZE (afnix-src-1-9-0.tgz) = 1741827
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
--- cnf/mak/afnix-freebsd.mak.orig 2009-07-30 15:29:26.000000000 +0200
|
--- cnf/mak/afnix-freebsd.mak.orig 2011-01-13 18:27:28.000000000 +0100
|
||||||
+++ cnf/mak/afnix-freebsd.mak 2009-07-30 15:30:41.000000000 +0200
|
+++ cnf/mak/afnix-freebsd.mak 2011-01-13 18:27:28.000000000 +0100
|
||||||
@@ -18,21 +18,21 @@
|
@@ -18,21 +18,21 @@
|
||||||
# - compiler and linker section -
|
# - compiler and linker section -
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
DBGDEFINES = -DDEBUG
|
DBGDEFINES = -DDEBUG
|
||||||
OPTDEFINES =
|
OPTDEFINES =
|
||||||
STDINCLUDE =
|
STDINCLUDE =
|
||||||
@@ -75,14 +75,11 @@ endif
|
@@ -75,8 +75,8 @@ endif
|
||||||
|
|
||||||
# adjust for freebsd platform
|
# adjust for freebsd platform
|
||||||
ifeq ($(PLATNAME),freebsd)
|
ifeq ($(PLATNAME),freebsd)
|
||||||
|
@ -39,13 +39,7 @@
|
||||||
ARFLAGS = rc
|
ARFLAGS = rc
|
||||||
LDFLAGS = -shared
|
LDFLAGS = -shared
|
||||||
AFXCPPLIBS =
|
AFXCPPLIBS =
|
||||||
-ifeq ($(LKMODE),soname)
|
@@ -102,7 +102,7 @@ LKFLAGS =
|
||||||
-LDFLAGS += -Wl,-soname,$(SOMIN)
|
|
||||||
-endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
# adjust for gnu/freebsd platform
|
|
||||||
@@ -102,7 +99,7 @@ LKFLAGS =
|
|
||||||
|
|
||||||
# adjust linker flags for freebsd
|
# adjust linker flags for freebsd
|
||||||
ifeq ($(PLATNAME),freebsd)
|
ifeq ($(PLATNAME),freebsd)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- cnf/mak/afnix-rule.mak.orig Fri Apr 20 08:10:38 2007
|
--- cnf/mak/afnix-rule.mak.orig 2011-01-13 11:16:23.000000000 +0100
|
||||||
+++ cnf/mak/afnix-rule.mak Sat May 26 23:59:55 2007
|
+++ cnf/mak/afnix-rule.mak 2011-01-13 18:26:39.000000000 +0100
|
||||||
@@ -24,7 +24,7 @@
|
@@ -24,7 +24,7 @@ endif
|
||||||
ifeq ($(CCMODE),optimized)
|
ifeq ($(CCMODE),optimized)
|
||||||
ENVFLAGS = $(STDEVFLAGS) $(PLTEVFLAGS)
|
ENVFLAGS = $(STDEVFLAGS) $(PLTEVFLAGS)
|
||||||
CPPFLAGS = $(STDCCFLAGS) $(PLTCCFLAGS) $(CPPCCFLAGS) $(OPTCCFLAGS)
|
CPPFLAGS = $(STDCCFLAGS) $(PLTCCFLAGS) $(CPPCCFLAGS) $(OPTCCFLAGS)
|
||||||
|
@ -9,7 +9,16 @@
|
||||||
CCDEFINE = $(STDDEFINES) $(PLTDEFINES) $(OPTDEFINES)
|
CCDEFINE = $(STDDEFINES) $(PLTDEFINES) $(OPTDEFINES)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -95,7 +95,7 @@
|
@@ -69,7 +69,7 @@ endif
|
||||||
|
|
||||||
|
ifeq ($(LKMODE),soname)
|
||||||
|
SOMAJ = $(DYLIB).$(MAJOR)
|
||||||
|
-SOMIN = $(DYLIB).$(MAJOR).$(MINOR)
|
||||||
|
+SOMIN = $(DYLIB).$(MAJOR)
|
||||||
|
SOVRS = $(DYLIB).$(MAJOR).$(MINOR).$(PATCH)
|
||||||
|
endif
|
||||||
|
|
||||||
|
@@ -95,7 +95,7 @@ else
|
||||||
-include *.d
|
-include *.d
|
||||||
|
|
||||||
%.o : %.cpp
|
%.o : %.cpp
|
||||||
|
@ -18,7 +27,7 @@
|
||||||
|
|
||||||
%.o : %.cxx
|
%.o : %.cxx
|
||||||
$(ENVFLAGS) $(CC) $(XXFLAGS) $(DEFINES) $(XXINCLS) -o $@ -c $<
|
$(ENVFLAGS) $(CC) $(XXFLAGS) $(DEFINES) $(XXINCLS) -o $@ -c $<
|
||||||
@@ -124,7 +124,7 @@
|
@@ -124,7 +124,7 @@ endif
|
||||||
|
|
||||||
install-arlib: $(ARLIB)
|
install-arlib: $(ARLIB)
|
||||||
@$(MKDIR) $(LIBDIR)
|
@$(MKDIR) $(LIBDIR)
|
||||||
|
@ -27,7 +36,7 @@
|
||||||
.PHONY: install-arlib
|
.PHONY: install-arlib
|
||||||
else
|
else
|
||||||
install-arlib: $(ARLIB)
|
install-arlib: $(ARLIB)
|
||||||
@@ -148,7 +148,7 @@
|
@@ -148,7 +148,7 @@ $(DYLIB) : $(OBJECTS)
|
||||||
|
|
||||||
install-dylib : $(DYLIB)
|
install-dylib : $(DYLIB)
|
||||||
@$(MKDIR) $(LIBDIR)
|
@$(MKDIR) $(LIBDIR)
|
||||||
|
@ -36,7 +45,7 @@
|
||||||
.PHONY: install-dylib
|
.PHONY: install-dylib
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -167,11 +167,8 @@
|
@@ -167,11 +167,8 @@ $(DYLIB) : $(SOVRS)
|
||||||
|
|
||||||
install-dylib : $(DYLIB)
|
install-dylib : $(DYLIB)
|
||||||
@$(MKDIR) $(LIBDIR)
|
@$(MKDIR) $(LIBDIR)
|
||||||
|
@ -50,7 +59,7 @@
|
||||||
.PHONY: install-dylib
|
.PHONY: install-dylib
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -194,7 +191,7 @@
|
@@ -194,7 +191,7 @@ $(DYLIB) : $(DYVRS)
|
||||||
|
|
||||||
install-dylib : $(DYLIB)
|
install-dylib : $(DYLIB)
|
||||||
@$(MKDIR) $(LIBDIR)
|
@$(MKDIR) $(LIBDIR)
|
||||||
|
|
|
@ -2,7 +2,6 @@ bin/axc
|
||||||
bin/axd
|
bin/axd
|
||||||
bin/axi
|
bin/axi
|
||||||
bin/axl
|
bin/axl
|
||||||
bin/axs
|
|
||||||
etc/afnix/afnix-gud.el
|
etc/afnix/afnix-gud.el
|
||||||
etc/afnix/afnix-mode.el
|
etc/afnix/afnix-mode.el
|
||||||
include/afnix/eng/ArgsList.hpp
|
include/afnix/eng/ArgsList.hpp
|
||||||
|
@ -42,14 +41,49 @@ include/afnix/gfx/Graph.hpp
|
||||||
include/afnix/gfx/Libgfx.hpp
|
include/afnix/gfx/Libgfx.hpp
|
||||||
include/afnix/gfx/Predgfx.hpp
|
include/afnix/gfx/Predgfx.hpp
|
||||||
include/afnix/gfx/Vertex.hpp
|
include/afnix/gfx/Vertex.hpp
|
||||||
|
include/afnix/itu/AsnBits.hpp
|
||||||
|
include/afnix/itu/AsnBmps.hpp
|
||||||
|
include/afnix/itu/AsnBoolean.hpp
|
||||||
|
include/afnix/itu/AsnBuffer.hpp
|
||||||
|
include/afnix/itu/AsnEoc.hpp
|
||||||
|
include/afnix/itu/AsnGtm.hpp
|
||||||
|
include/afnix/itu/AsnIas.hpp
|
||||||
|
include/afnix/itu/AsnInteger.hpp
|
||||||
|
include/afnix/itu/AsnNode.hpp
|
||||||
|
include/afnix/itu/AsnNull.hpp
|
||||||
|
include/afnix/itu/AsnNums.hpp
|
||||||
|
include/afnix/itu/AsnOctets.hpp
|
||||||
|
include/afnix/itu/AsnOid.hpp
|
||||||
|
include/afnix/itu/AsnPrts.hpp
|
||||||
|
include/afnix/itu/AsnRandom.hpp
|
||||||
|
include/afnix/itu/AsnRoid.hpp
|
||||||
|
include/afnix/itu/AsnSequence.hpp
|
||||||
|
include/afnix/itu/AsnSet.hpp
|
||||||
|
include/afnix/itu/AsnUnvs.hpp
|
||||||
|
include/afnix/itu/AsnUtc.hpp
|
||||||
|
include/afnix/itu/AsnUtfs.hpp
|
||||||
|
include/afnix/itu/AsnUtils.hpp
|
||||||
|
include/afnix/itu/Libitu.hpp
|
||||||
|
include/afnix/itu/Oid.hpp
|
||||||
|
include/afnix/itu/Preditu.hpp
|
||||||
|
include/afnix/mth/Algebra.hpp
|
||||||
|
include/afnix/mth/Cramer.hpp
|
||||||
|
include/afnix/mth/Krylov.hpp
|
||||||
include/afnix/mth/Libmth.hpp
|
include/afnix/mth/Libmth.hpp
|
||||||
include/afnix/mth/Mpia.hpp
|
include/afnix/mth/Mpia.hpp
|
||||||
|
include/afnix/mth/MthCalls.hpp
|
||||||
|
include/afnix/mth/Predmth.hpp
|
||||||
include/afnix/mth/Primality.hpp
|
include/afnix/mth/Primality.hpp
|
||||||
include/afnix/mth/Random.hpp
|
include/afnix/mth/Random.hpp
|
||||||
|
include/afnix/mth/Rmatrix.hpp
|
||||||
|
include/afnix/mth/Rmi.hpp
|
||||||
|
include/afnix/mth/Rsi.hpp
|
||||||
|
include/afnix/mth/Rsparse.hpp
|
||||||
|
include/afnix/mth/Rvector.hpp
|
||||||
|
include/afnix/mth/Rvi.hpp
|
||||||
include/afnix/net/Address.hpp
|
include/afnix/net/Address.hpp
|
||||||
include/afnix/net/Datagram.hpp
|
include/afnix/net/Datagram.hpp
|
||||||
include/afnix/net/Libnet.hpp
|
include/afnix/net/Libnet.hpp
|
||||||
include/afnix/net/Mail.hpp
|
|
||||||
include/afnix/net/Multicast.hpp
|
include/afnix/net/Multicast.hpp
|
||||||
include/afnix/net/NetCalls.hpp
|
include/afnix/net/NetCalls.hpp
|
||||||
include/afnix/net/Prednet.hpp
|
include/afnix/net/Prednet.hpp
|
||||||
|
@ -95,7 +129,6 @@ include/afnix/plt/cthr.hpp
|
||||||
include/afnix/plt/ctrm.hpp
|
include/afnix/plt/ctrm.hpp
|
||||||
include/afnix/plt/cucd.hpp
|
include/afnix/plt/cucd.hpp
|
||||||
include/afnix/sec/Aes.hpp
|
include/afnix/sec/Aes.hpp
|
||||||
include/afnix/sec/Blkmsg.hpp
|
|
||||||
include/afnix/sec/BlockCipher.hpp
|
include/afnix/sec/BlockCipher.hpp
|
||||||
include/afnix/sec/Cipher.hpp
|
include/afnix/sec/Cipher.hpp
|
||||||
include/afnix/sec/Crypto.hpp
|
include/afnix/sec/Crypto.hpp
|
||||||
|
@ -129,6 +162,7 @@ include/afnix/sec/Sha512.hpp
|
||||||
include/afnix/sec/Signature.hpp
|
include/afnix/sec/Signature.hpp
|
||||||
include/afnix/sec/Signer.hpp
|
include/afnix/sec/Signer.hpp
|
||||||
include/afnix/sio/Directory.hpp
|
include/afnix/sio/Directory.hpp
|
||||||
|
include/afnix/sio/Intercom.hpp
|
||||||
include/afnix/sio/Libsio.hpp
|
include/afnix/sio/Libsio.hpp
|
||||||
include/afnix/sio/Logtee.hpp
|
include/afnix/sio/Logtee.hpp
|
||||||
include/afnix/sio/NamedFifo.hpp
|
include/afnix/sio/NamedFifo.hpp
|
||||||
|
@ -147,12 +181,15 @@ include/afnix/sps/Sheet.hpp
|
||||||
include/afnix/sps/SpsCalls.hpp
|
include/afnix/sps/SpsCalls.hpp
|
||||||
include/afnix/sps/Xref.hpp
|
include/afnix/sps/Xref.hpp
|
||||||
include/afnix/std/Ascii.hpp
|
include/afnix/std/Ascii.hpp
|
||||||
include/afnix/std/BitSet.hpp
|
include/afnix/std/Bitset.hpp
|
||||||
|
include/afnix/std/BlockBuffer.hpp
|
||||||
include/afnix/std/Boolean.hpp
|
include/afnix/std/Boolean.hpp
|
||||||
include/afnix/std/Buffer.hpp
|
include/afnix/std/Buffer.hpp
|
||||||
include/afnix/std/Byte.hpp
|
include/afnix/std/Byte.hpp
|
||||||
|
include/afnix/std/Central.hpp
|
||||||
include/afnix/std/Character.hpp
|
include/afnix/std/Character.hpp
|
||||||
include/afnix/std/Cilo.hpp
|
include/afnix/std/Cilo.hpp
|
||||||
|
include/afnix/std/Collectable.hpp
|
||||||
include/afnix/std/Combo.hpp
|
include/afnix/std/Combo.hpp
|
||||||
include/afnix/std/Condvar.hpp
|
include/afnix/std/Condvar.hpp
|
||||||
include/afnix/std/Cons.hpp
|
include/afnix/std/Cons.hpp
|
||||||
|
@ -160,8 +197,8 @@ include/afnix/std/Cursor.hpp
|
||||||
include/afnix/std/Date.hpp
|
include/afnix/std/Date.hpp
|
||||||
include/afnix/std/Encoding.hpp
|
include/afnix/std/Encoding.hpp
|
||||||
include/afnix/std/Exception.hpp
|
include/afnix/std/Exception.hpp
|
||||||
|
include/afnix/std/Fifo.hpp
|
||||||
include/afnix/std/FileInfo.hpp
|
include/afnix/std/FileInfo.hpp
|
||||||
include/afnix/std/Freeable.hpp
|
|
||||||
include/afnix/std/HashTable.hpp
|
include/afnix/std/HashTable.hpp
|
||||||
include/afnix/std/Heap.hpp
|
include/afnix/std/Heap.hpp
|
||||||
include/afnix/std/InputBound.hpp
|
include/afnix/std/InputBound.hpp
|
||||||
|
@ -183,6 +220,7 @@ include/afnix/std/Literal.hpp
|
||||||
include/afnix/std/Loader.hpp
|
include/afnix/std/Loader.hpp
|
||||||
include/afnix/std/Lockrw.hpp
|
include/afnix/std/Lockrw.hpp
|
||||||
include/afnix/std/Logger.hpp
|
include/afnix/std/Logger.hpp
|
||||||
|
include/afnix/std/Math.hpp
|
||||||
include/afnix/std/Monitor.hpp
|
include/afnix/std/Monitor.hpp
|
||||||
include/afnix/std/Mutex.hpp
|
include/afnix/std/Mutex.hpp
|
||||||
include/afnix/std/NameTable.hpp
|
include/afnix/std/NameTable.hpp
|
||||||
|
@ -190,6 +228,7 @@ include/afnix/std/Nameable.hpp
|
||||||
include/afnix/std/Number.hpp
|
include/afnix/std/Number.hpp
|
||||||
include/afnix/std/Object.hpp
|
include/afnix/std/Object.hpp
|
||||||
include/afnix/std/Options.hpp
|
include/afnix/std/Options.hpp
|
||||||
|
include/afnix/std/OutputBuffer.hpp
|
||||||
include/afnix/std/OutputFile.hpp
|
include/afnix/std/OutputFile.hpp
|
||||||
include/afnix/std/OutputStream.hpp
|
include/afnix/std/OutputStream.hpp
|
||||||
include/afnix/std/OutputString.hpp
|
include/afnix/std/OutputString.hpp
|
||||||
|
@ -204,7 +243,6 @@ include/afnix/std/QuarkArray.hpp
|
||||||
include/afnix/std/QuarkTable.hpp
|
include/afnix/std/QuarkTable.hpp
|
||||||
include/afnix/std/QuarkZone.hpp
|
include/afnix/std/QuarkZone.hpp
|
||||||
include/afnix/std/Queue.hpp
|
include/afnix/std/Queue.hpp
|
||||||
include/afnix/std/Reactor.hpp
|
|
||||||
include/afnix/std/Real.hpp
|
include/afnix/std/Real.hpp
|
||||||
include/afnix/std/Regex.hpp
|
include/afnix/std/Regex.hpp
|
||||||
include/afnix/std/Relatif.hpp
|
include/afnix/std/Relatif.hpp
|
||||||
|
@ -222,6 +260,7 @@ include/afnix/std/System.hpp
|
||||||
include/afnix/std/Terminal.hpp
|
include/afnix/std/Terminal.hpp
|
||||||
include/afnix/std/Thread.hpp
|
include/afnix/std/Thread.hpp
|
||||||
include/afnix/std/Thrmap.hpp
|
include/afnix/std/Thrmap.hpp
|
||||||
|
include/afnix/std/Thrset.hpp
|
||||||
include/afnix/std/Time.hpp
|
include/afnix/std/Time.hpp
|
||||||
include/afnix/std/Transcoder.hpp
|
include/afnix/std/Transcoder.hpp
|
||||||
include/afnix/std/Trie.hpp
|
include/afnix/std/Trie.hpp
|
||||||
|
@ -331,55 +370,59 @@ include/afnix/xpe/XmlProcessor.hpp
|
||||||
lib/afnix/afnix-std-adp.axl
|
lib/afnix/afnix-std-adp.axl
|
||||||
lib/libafnix-eng.a
|
lib/libafnix-eng.a
|
||||||
lib/libafnix-eng.so
|
lib/libafnix-eng.so
|
||||||
lib/libafnix-eng.so.1
|
lib/libafnix-eng.so.2
|
||||||
lib/libafnix-gfx.a
|
lib/libafnix-gfx.a
|
||||||
lib/libafnix-gfx.so
|
lib/libafnix-gfx.so
|
||||||
lib/libafnix-gfx.so.1
|
lib/libafnix-gfx.so.2
|
||||||
|
lib/libafnix-itu.a
|
||||||
|
lib/libafnix-itu.so
|
||||||
|
lib/libafnix-itu.so.2
|
||||||
lib/libafnix-mth.a
|
lib/libafnix-mth.a
|
||||||
lib/libafnix-mth.so
|
lib/libafnix-mth.so
|
||||||
lib/libafnix-mth.so.1
|
lib/libafnix-mth.so.2
|
||||||
lib/libafnix-net.a
|
lib/libafnix-net.a
|
||||||
lib/libafnix-net.so
|
lib/libafnix-net.so
|
||||||
lib/libafnix-net.so.1
|
lib/libafnix-net.so.2
|
||||||
lib/libafnix-nwg.a
|
lib/libafnix-nwg.a
|
||||||
lib/libafnix-nwg.so
|
lib/libafnix-nwg.so
|
||||||
lib/libafnix-nwg.so.1
|
lib/libafnix-nwg.so.2
|
||||||
lib/libafnix-pim.a
|
lib/libafnix-pim.a
|
||||||
lib/libafnix-pim.so
|
lib/libafnix-pim.so
|
||||||
lib/libafnix-pim.so.1
|
lib/libafnix-pim.so.2
|
||||||
lib/libafnix-plt.a
|
lib/libafnix-plt.a
|
||||||
lib/libafnix-plt.so
|
lib/libafnix-plt.so
|
||||||
lib/libafnix-plt.so.1
|
lib/libafnix-plt.so.2
|
||||||
lib/libafnix-sec.a
|
lib/libafnix-sec.a
|
||||||
lib/libafnix-sec.so
|
lib/libafnix-sec.so
|
||||||
lib/libafnix-sec.so.1
|
lib/libafnix-sec.so.2
|
||||||
lib/libafnix-sio.a
|
lib/libafnix-sio.a
|
||||||
lib/libafnix-sio.so
|
lib/libafnix-sio.so
|
||||||
lib/libafnix-sio.so.1
|
lib/libafnix-sio.so.2
|
||||||
lib/libafnix-sps.a
|
lib/libafnix-sps.a
|
||||||
lib/libafnix-sps.so
|
lib/libafnix-sps.so
|
||||||
lib/libafnix-sps.so.1
|
lib/libafnix-sps.so.2
|
||||||
lib/libafnix-std.a
|
lib/libafnix-std.a
|
||||||
lib/libafnix-std.so
|
lib/libafnix-std.so
|
||||||
lib/libafnix-std.so.1
|
lib/libafnix-std.so.2
|
||||||
lib/libafnix-sys.a
|
lib/libafnix-sys.a
|
||||||
lib/libafnix-sys.so
|
lib/libafnix-sys.so
|
||||||
lib/libafnix-sys.so.1
|
lib/libafnix-sys.so.2
|
||||||
lib/libafnix-txt.a
|
lib/libafnix-txt.a
|
||||||
lib/libafnix-txt.so
|
lib/libafnix-txt.so
|
||||||
lib/libafnix-txt.so.1
|
lib/libafnix-txt.so.2
|
||||||
lib/libafnix-wax.a
|
lib/libafnix-wax.a
|
||||||
lib/libafnix-wax.so
|
lib/libafnix-wax.so
|
||||||
lib/libafnix-wax.so.1
|
lib/libafnix-wax.so.2
|
||||||
lib/libafnix-xml.a
|
lib/libafnix-xml.a
|
||||||
lib/libafnix-xml.so
|
lib/libafnix-xml.so
|
||||||
lib/libafnix-xml.so.1
|
lib/libafnix-xml.so.2
|
||||||
lib/libafnix-xpe.a
|
lib/libafnix-xpe.a
|
||||||
lib/libafnix-xpe.so
|
lib/libafnix-xpe.so
|
||||||
lib/libafnix-xpe.so.1
|
lib/libafnix-xpe.so.2
|
||||||
@dirrm etc/afnix
|
@dirrm etc/afnix
|
||||||
@dirrm include/afnix/eng
|
@dirrm include/afnix/eng
|
||||||
@dirrm include/afnix/gfx
|
@dirrm include/afnix/gfx
|
||||||
|
@dirrm include/afnix/itu
|
||||||
@dirrm include/afnix/mth
|
@dirrm include/afnix/mth
|
||||||
@dirrm include/afnix/net
|
@dirrm include/afnix/net
|
||||||
@dirrm include/afnix/nwg
|
@dirrm include/afnix/nwg
|
||||||
|
|
Loading…
Add table
Reference in a new issue