Commit de6cbe53 authored by Roger Dingledine's avatar Roger Dingledine
Browse files

some early bugfixes

our log() conflicts with log(3)
distribute only the correct files from doc/ and src/config/
sometimes laptops go back in time. i guess that's ok for now.
and bump the version number because we're live.


svn:r544
parent e826873a
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -11,10 +11,6 @@ than OpenSSL. If you modify this file, you may extend this exception
to your version of the file, but you are not obligated to do so.  If you
do not wish to do so, delete this exception statement from your version.

3) Onion routing is patented (in the US only) by NRL, and you don't
have a license. You should consult your lawyer to decide whether you
need a license for this software.




+3 −3
Original line number Diff line number Diff line

SUBDIRS = src
SUBDIRS = src doc

DIST_SUBDIRS = src
DIST_SUBDIRS = src doc

EXTRA_DIST = LICENSE doc
EXTRA_DIST = LICENSE
+2 −2
Original line number Diff line number Diff line

AC_INIT
AM_INIT_AUTOMAKE(tor, 0.0.2pre8)
AM_INIT_AUTOMAKE(tor, 0.0.2pre9)
AM_CONFIG_HEADER(orconfig.h)

CFLAGS="-Wall -O2 -I/usr/kerberos/include"
@@ -159,5 +159,5 @@ AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(long long)
AC_CHECK_SIZEOF(__int64)

AC_OUTPUT(Makefile src/Makefile src/common/Makefile src/or/Makefile)
AC_OUTPUT(Makefile src/Makefile doc/Makefile src/config/Makefile src/common/Makefile src/or/Makefile)

doc/Makefile.am

0 → 100644
+3 −0
Original line number Diff line number Diff line

EXTRA_DIST = tor-spec.txt CLIENTS FAQ HACKING rendezvous.txt tor-design.tex
+2 −3
Original line number Diff line number Diff line

# leave in dependency order, since common must be built first

SUBDIRS =      common or
DIST_SUBDIRS = common or
EXTRA_DIST = config
SUBDIRS =      common or config
DIST_SUBDIRS = common or config
Loading