a54ac523ea
libguess employs discrete-finite automata to deduce the character set of the input buffer. The advantage of this is that all character sets can be checked in parallel, and quickly. Right now, libguess passes a byte to each DFA on the same pass, meaning that the winning character set can be deduced as efficiently as possible. ok jasper@
13 lines
352 B
Plaintext
13 lines
352 B
Plaintext
$OpenBSD: patch-src_libguess_Makefile,v 1.1.1.1 2010/12/11 11:03:22 shadchin Exp $
|
|
--- src/libguess/Makefile.orig Sat Dec 4 18:20:35 2010
|
|
+++ src/libguess/Makefile Sat Dec 4 18:20:45 2010
|
|
@@ -1,6 +1,6 @@
|
|
LIB = ${LIB_PREFIX}guess${LIB_SUFFIX}
|
|
-LIB_MAJOR = 1
|
|
-LIB_MINOR = 0
|
|
+LIB_MAJOR ?= 1
|
|
+LIB_MINOR ?= 0
|
|
DISTCLEAN = autoconf.h
|
|
|
|
SRCS = guess.c \
|