From: Bert Hubert Date: Mon, 9 Dec 2002 18:39:35 +0000 (+0000) Subject: windows files, readme X-Git-Tag: pdns-2.9.1~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5e9d0b44b60bca15f7c101c5042185fc4412cc8;p=thirdparty%2Fpdns.git windows files, readme git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@63 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- diff --git a/README b/README index 959fb0f87d..59a866e552 100644 --- 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 index 0000000000..0e8c7e4eea 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 index 0000000000..eaedfe5392 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 index 0000000000..36f9106f68 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 index 0000000000..a9b7a254ce --- /dev/null +++ b/rpm-build-instruction @@ -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 +