]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
windows files, readme
authorBert Hubert <bert.hubert@netherlabs.nl>
Mon, 9 Dec 2002 18:39:35 +0000 (18:39 +0000)
committerBert Hubert <bert.hubert@netherlabs.nl>
Mon, 9 Dec 2002 18:39:35 +0000 (18:39 +0000)
git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@63 d19b8d6e-7fed-0310-83ef-9ca221ded41b

README
pdns/release-scripts/disabled.bmp [new file with mode: 0644]
pdns/release-scripts/enabled.bmp [new file with mode: 0644]
pdns/release-scripts/pdns.ico [new file with mode: 0644]
rpm-build-instruction [new file with mode: 0755]

diff --git a/README b/README
index 959fb0f87de214c6c2417ddf0eabc4b4a929a9f2..59a866e552929367cfa5ea64c6eab03c67747ee7 100644 (file)
--- a/README
+++ b/README
@@ -12,10 +12,11 @@ is built by default.
 
 To add multiple modules, try:
 
-$ ./configure --with-modules="mysql mypgsql"
+$ ./configure --with-modules="mysql mypgsql" --enable-mysql --enable-pgsql
 
 See http://rtfm.powerdns.com/compiling-powerdns.html for more details.
 
+
 SOLARIS NOTES
 -------------
 You need gcc 3.x, preferably 3.2!
@@ -28,11 +29,17 @@ FREEBSD NOTES
 gcc 2.95.x works. You need to compile using gmake - regular make only appears to
 work, but doesn't in fact.
 
-
 LINUX NOTES
 -----------
 None really.
 
+WIN32 NOTES
+-----------
+For the brave! See
+http://rtfm.powerdns.com/compiling-powerdns.html#ON-WINDOWS 
+
+Needs Visual C++
+
 ---
 
 After compiling, you may find the file 'pdns/pdns' helpful, we suggest you
diff --git a/pdns/release-scripts/disabled.bmp b/pdns/release-scripts/disabled.bmp
new file mode 100644 (file)
index 0000000..0e8c7e4
Binary files /dev/null and b/pdns/release-scripts/disabled.bmp differ
diff --git a/pdns/release-scripts/enabled.bmp b/pdns/release-scripts/enabled.bmp
new file mode 100644 (file)
index 0000000..eaedfe5
Binary files /dev/null and b/pdns/release-scripts/enabled.bmp differ
diff --git a/pdns/release-scripts/pdns.ico b/pdns/release-scripts/pdns.ico
new file mode 100644 (file)
index 0000000..36f9106
Binary files /dev/null and b/pdns/release-scripts/pdns.ico differ
diff --git a/rpm-build-instruction b/rpm-build-instruction
new file mode 100755 (executable)
index 0000000..a9b7a25
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/sh
+./configure --with-modules="mysql pgmysql pdns pipe" \
+       --enable-static-binaries --enable-mysql --enable-pgsql \
+       --with-pgsql-lib=/opt/postgresql-with-3.2/lib/ --prefix=/usr \
+       --sysconfdir=/etc/powerdns \
+&& make && \
+sudo /bin/sh -c "rm -rf /tmp/pdns ; DESTDIR=/tmp/pdns make install-strip" &&
+sudo mkdir -p /tmp/pdns/etc/init.d &&
+sudo cp pdns/pdns /tmp/pdns/etc/init.d/pdns &&
+sudo mkdir -p /tmp/pdns/etc/powerdns &&
+sudo mv /tmp/pdns/etc/powerdns/pdns.conf-dist /tmp/pdns/etc/powerdns/pdns.conf &&
+sudo rpm -bb pdns.spec
+