Skip to content

Commit 8626fc1

Browse files
committed
Lots of changes for version 1.1
1 parent ab87d5f commit 8626fc1

31 files changed

+1596
-1130
lines changed

ChangeLog

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11

22
version 1.0 (24/09/2008)
3-
* first release
3+
* first release
4+
5+
version 1.1
6+
* added support for strings containing null (\x00) chars
7+
* added syntactic construct "x of them"
8+
* regular expressions syntax changed
9+
* now regular expressions can begin with any character
10+

Makefile

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ DIST_ARCHIVES = $(distdir).tar.gz
8686
GZIP_ENV = --best
8787
distuninstallcheck_listfiles = find . -type f -print
8888
distcleancheck_listfiles = find . -type f -print
89-
ACLOCAL = ${SHELL} /Users/plusvic/Projects/yara/missing --run aclocal-1.10
90-
AMTAR = ${SHELL} /Users/plusvic/Projects/yara/missing --run tar
91-
AUTOCONF = ${SHELL} /Users/plusvic/Projects/yara/missing --run autoconf
92-
AUTOHEADER = ${SHELL} /Users/plusvic/Projects/yara/missing --run autoheader
93-
AUTOMAKE = ${SHELL} /Users/plusvic/Projects/yara/missing --run automake-1.10
89+
ACLOCAL = ${SHELL} /Users/plusvic/Projects/yara/trunk/missing --run aclocal-1.10
90+
AMTAR = ${SHELL} /Users/plusvic/Projects/yara/trunk/missing --run tar
91+
AUTOCONF = ${SHELL} /Users/plusvic/Projects/yara/trunk/missing --run autoconf
92+
AUTOHEADER = ${SHELL} /Users/plusvic/Projects/yara/trunk/missing --run autoheader
93+
AUTOMAKE = ${SHELL} /Users/plusvic/Projects/yara/trunk/missing --run automake-1.10
9494
AWK = awk
9595
CC = gcc
9696
CCDEPMODE = depmode=gcc3
@@ -112,24 +112,24 @@ LDFLAGS =
112112
LIBOBJS =
113113
LIBS = -lpcre -lpcre -lpcre -lpcre
114114
LTLIBOBJS =
115-
MAKEINFO = ${SHELL} /Users/plusvic/Projects/yara/missing --run makeinfo
115+
MAKEINFO = ${SHELL} /Users/plusvic/Projects/yara/trunk/missing --run makeinfo
116116
MKDIR_P = ./install-sh -c -d
117117
OBJEXT = o
118118
PACKAGE = yara
119119
PACKAGE_BUGREPORT = vmalvarez@hispasec.com
120120
PACKAGE_NAME = yara
121-
PACKAGE_STRING = yara 1.0
121+
PACKAGE_STRING = yara 1.1
122122
PACKAGE_TARNAME = yara
123-
PACKAGE_VERSION = 1.0
123+
PACKAGE_VERSION = 1.1
124124
PATH_SEPARATOR = :
125125
SET_MAKE =
126126
SHELL = /bin/sh
127127
STRIP =
128-
VERSION = 1.0
129-
abs_builddir = /Users/plusvic/Projects/yara
130-
abs_srcdir = /Users/plusvic/Projects/yara
131-
abs_top_builddir = /Users/plusvic/Projects/yara
132-
abs_top_srcdir = /Users/plusvic/Projects/yara
128+
VERSION = 1.1
129+
abs_builddir = /Users/plusvic/Projects/yara/trunk
130+
abs_srcdir = /Users/plusvic/Projects/yara/trunk
131+
abs_top_builddir = /Users/plusvic/Projects/yara/trunk
132+
abs_top_srcdir = /Users/plusvic/Projects/yara/trunk
133133
ac_ct_CC = gcc
134134
am__include = include
135135
am__leading_dot = .
@@ -148,7 +148,7 @@ host_alias =
148148
htmldir = ${docdir}
149149
includedir = ${prefix}/include
150150
infodir = ${datarootdir}/info
151-
install_sh = $(SHELL) /Users/plusvic/Projects/yara/install-sh
151+
install_sh = $(SHELL) /Users/plusvic/Projects/yara/trunk/install-sh
152152
libdir = ${exec_prefix}/lib
153153
libexecdir = ${exec_prefix}/libexec
154154
localedir = ${datarootdir}/locale

config.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
#define PACKAGE_NAME "yara"
1515

1616
/* Define to the full name and version of this package. */
17-
#define PACKAGE_STRING "yara 1.0"
17+
#define PACKAGE_STRING "yara 1.1"
1818

1919
/* Define to the one symbol short name of this package. */
2020
#define PACKAGE_TARNAME "yara"
2121

2222
/* Define to the version of this package. */
23-
#define PACKAGE_VERSION "1.0"
23+
#define PACKAGE_VERSION "1.1"
2424

2525
/* Version number of package */
26-
#define VERSION "1.0"
26+
#define VERSION "1.1"

configure

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.61 for yara 1.0.
3+
# Generated by GNU Autoconf 2.61 for yara 1.1.
44
#
55
# Report bugs to <vmalvarez@hispasec.com>.
66
#
@@ -574,8 +574,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
574574
# Identity of this package.
575575
PACKAGE_NAME='yara'
576576
PACKAGE_TARNAME='yara'
577-
PACKAGE_VERSION='1.0'
578-
PACKAGE_STRING='yara 1.0'
577+
PACKAGE_VERSION='1.1'
578+
PACKAGE_STRING='yara 1.1'
579579
PACKAGE_BUGREPORT='vmalvarez@hispasec.com'
580580

581581
ac_subst_vars='SHELL
@@ -1167,7 +1167,7 @@ if test "$ac_init_help" = "long"; then
11671167
# Omit some internal or obsolete options to make the list less imposing.
11681168
# This message is too long to be a string in the A/UX 3.1 sh.
11691169
cat <<_ACEOF
1170-
\`configure' configures yara 1.0 to adapt to many kinds of systems.
1170+
\`configure' configures yara 1.1 to adapt to many kinds of systems.
11711171
11721172
Usage: $0 [OPTION]... [VAR=VALUE]...
11731173
@@ -1233,7 +1233,7 @@ fi
12331233

12341234
if test -n "$ac_init_help"; then
12351235
case $ac_init_help in
1236-
short | recursive ) echo "Configuration of yara 1.0:";;
1236+
short | recursive ) echo "Configuration of yara 1.1:";;
12371237
esac
12381238
cat <<\_ACEOF
12391239
@@ -1316,7 +1316,7 @@ fi
13161316
test -n "$ac_init_help" && exit $ac_status
13171317
if $ac_init_version; then
13181318
cat <<\_ACEOF
1319-
yara configure 1.0
1319+
yara configure 1.1
13201320
generated by GNU Autoconf 2.61
13211321
13221322
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1330,7 +1330,7 @@ cat >config.log <<_ACEOF
13301330
This file contains any messages produced by compilers while
13311331
running configure, to aid debugging if configure makes a mistake.
13321332
1333-
It was created by yara $as_me 1.0, which was
1333+
It was created by yara $as_me 1.1, which was
13341334
generated by GNU Autoconf 2.61. Invocation command line was
13351335
13361336
$ $0 $@
@@ -2020,7 +2020,7 @@ fi
20202020
20212021
# Define the identity of the package.
20222022
PACKAGE='yara'
2023-
VERSION='1.0'
2023+
VERSION='1.1'
20242024
20252025
20262026
cat >>confdefs.h <<_ACEOF
@@ -3973,7 +3973,7 @@ exec 6>&1
39733973
# report actual input values of CONFIG_FILES etc. instead of their
39743974
# values after options handling.
39753975
ac_log="
3976-
This file was extended by yara $as_me 1.0, which was
3976+
This file was extended by yara $as_me 1.1, which was
39773977
generated by GNU Autoconf 2.61. Invocation command line was
39783978
39793979
CONFIG_FILES = $CONFIG_FILES
@@ -4026,7 +4026,7 @@ Report bugs to <bug-autoconf@gnu.org>."
40264026
_ACEOF
40274027
cat >>$CONFIG_STATUS <<_ACEOF
40284028
ac_cs_version="\\
4029-
yara config.status 1.0
4029+
yara config.status 1.1
40304030
configured by $0, generated by GNU Autoconf 2.61,
40314031
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
40324032

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([yara], [1.0], [vmalvarez@hispasec.com])
1+
AC_INIT([yara], [1.1], [vmalvarez@hispasec.com])
22
AM_INIT_AUTOMAKE([-Wall -Werror])
33
AC_PROG_CC
44
#AC_CHECK_LIB(yara,compile_rules,,AC_MSG_ERROR(yara not found))

doc/YARA User's Manual.pdf

1.8 KB
Binary file not shown.

extra/TextMate-bundle.zip

4.31 KB
Binary file not shown.

extra/YARA.tmbundle/Preferences/Typing Pairs.tmPreferences

Lines changed: 0 additions & 35 deletions
This file was deleted.

extra/YARA.tmbundle/Snippets/rule.tmSnippet

Lines changed: 0 additions & 21 deletions
This file was deleted.

extra/YARA.tmbundle/Syntaxes/MDL.tmLanguage

Lines changed: 0 additions & 132 deletions
This file was deleted.

0 commit comments

Comments
 (0)