summaryrefslogtreecommitdiff
path: root/howto.txt
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-01-24 01:52:42 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:51:25 -0500
commitf2e760dd96acf1e1ceb572177e8a0eaf45c7cd1a (patch)
treee7ff4827744960f466658a0705baee1c3587cc16 /howto.txt
parent409c00bf563f921e9427b01e580b0adc6ed399ae (diff)
downloadsamba-f2e760dd96acf1e1ceb572177e8a0eaf45c7cd1a.tar.gz
samba-f2e760dd96acf1e1ceb572177e8a0eaf45c7cd1a.tar.bz2
samba-f2e760dd96acf1e1ceb572177e8a0eaf45c7cd1a.zip
r13101: autogen.sh doesn't have to be run when compiling from a released tarball
(running it anyway might give problems for people who don't have autoconf installed properly or at all) Fix typo (This used to be commit 6a2a38056121e704768e88c4074629603a6f12cd)
Diffstat (limited to 'howto.txt')
-rw-r--r--howto.txt12
1 files changed, 8 insertions, 4 deletions
diff --git a/howto.txt b/howto.txt
index 4c0797e463..21cd7b7e98 100644
--- a/howto.txt
+++ b/howto.txt
@@ -22,6 +22,12 @@ There are 2 methods of doing this:
both methods will create a directory called "samba4" in the current
directory. If you don't have rsync or svn then install one of them.
+Since only released versions of Samba contain a pregenerated configure script,
+you will have to generate it by hand:
+
+ $ cd samba4/source
+ $ ./autogen.sh
+
Note that the above rsync command will give you a checked out svn
repository. So if you also have svn you can update it to the latest
version at some future date using:
@@ -35,14 +41,12 @@ Step 2: compile Samba4
Run this:
$ cd samba4/source
- $ ./autogen.sh
- $ ./configure.developer
+ $ ./configure
$ make proto all
-If you have gcc 3.4 or newer, then substitue "pch" for "proto" to
+If you have gcc 3.4 or newer, then substitute "pch" for "proto" to
greatly speed up the compile process (about 5x faster).
-
Step 3: install Samba4
----------------------