Changeset 82
- Timestamp:
- 12/17/02 11:39:53 (10 years ago)
- Location:
- trunk/pdns
- Files:
-
- 3 added
- 1 removed
- 7 modified
-
Makefile.am (modified) (1 diff)
-
build-scripts (added)
-
build-scripts/rpm-build-instruction (added)
-
build-scripts/tar-gz-build-instruction (added)
-
configure.in (modified) (2 diffs)
-
debian/rules (modified) (1 diff)
-
modules/gpgsqlbackend/Makefile.am (modified) (1 diff)
-
modules/gpgsqlbackend/spgsql.cc (modified) (1 diff)
-
modules/xdbbackend/Makefile.in (modified) (3 diffs)
-
pdns/Makefile.am (modified) (1 diff)
-
rpm-build-instruction (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/Makefile.am
r72 r82 1 SUBDIRS=modules pdns1 SUBDIRS=modules @programdescend@ 2 2 EXTRA_DIST=TODO WARNING README HACKING INSTALL ChangeLog debian pdns.spec 3 3 -
trunk/pdns/configure.in
r80 r82 189 189 AC_SUBST(modulelibs) 190 190 191 AC_MSG_CHECKING(whether we will be building the server) 192 AC_ARG_ENABLE(pdns-server, 193 [ --enable-pdns_server If we should build the server], 194 enable_pdns_server=$enableval, 195 enable_pdns_server=yes) 196 197 AC_MSG_RESULT($enable_pdns_server) 198 199 if test x"$enable_pdns_server" = "xyes" 200 then 201 programdescend=pdns 202 fi 203 204 AC_SUBST(programdescend) 205 191 206 for a in $modules $dynmodules 192 207 do … … 330 345 fi 331 346 332 rm -f $srcdir/modules/pgmysqlbackend/OBJECTFILES $srcdir/modules/pgmysqlbackend/OBJECTLIBS333 347 334 348 for a in $modules 335 349 do 336 350 moduledirs="$moduledirs ${a}backend" 337 338 case "$a" in339 pgmysql)340 341 echo -n "gmysqlbackend.o " > $srcdir/modules/pgmysqlbackend/OBJECTFILES342 if test x"$domysql" = xyes343 then344 echo -n "smysql.o " >> $srcdir/modules/pgmysqlbackend/OBJECTFILES345 echo -n "-lmysqlclient " >> $srcdir/modules/pgmysqlbackend/OBJECTLIBS346 fi347 348 if test x"$dopgsql" = xyes349 then350 echo -n "spgsql.o " >> $srcdir/modules/pgmysqlbackend/OBJECTFILES351 echo -n "-lpq++ -lpq -lssl -lcrypt -lcrypto " >> $srcdir/modules/pgmysqlbackend/OBJECTLIBS352 fi353 ;;354 esac355 356 351 357 352 for b in `cat $srcdir/modules/${a}backend/OBJECTFILES` -
trunk/pdns/debian/rules
r77 r82 2 2 3 3 tmpdir := $(shell pwd)/debian/tmp 4 backends := mysql pipe xdb pgmysql4 backends := mysql pipe xdb gmysql gpgsql 5 5 6 6 configure: -
trunk/pdns/modules/gpgsqlbackend/Makefile.am
r78 r82 1 1 lib_LTLIBRARIES = libgpgsqlbackend.la 2 2 3 EXTRA_DIST=OBJECTFILES OBJECTLIBS 3 4 INCLUDES=-I@PGSQL_incdir@ 4 5 -
trunk/pdns/modules/gpgsqlbackend/spgsql.cc
r78 r82 1 1 /* Copyright 200w Netherlabs BV, bert.hubert@netherlabs.nl. See LICENSE 2 2 for more information. 3 $Id: spgsql.cc,v 1.1 2002/12/16 18:02:09 ahu Exp $ */ 3 $Id: spgsql.cc,v 1.2 2002/12/17 10:39:53 ahu Exp $ */ 4 #include <string> 4 5 #include "spgsql.hh" 5 #include <string> 6 6 7 #include <iostream> 7 8 #include "pdns/logger.hh" -
trunk/pdns/modules/xdbbackend/Makefile.in
r80 r82 13 13 14 14 @SET_MAKE@ 15 16 #if !ALLSTATIC17 #install-exec-local:18 # install .lib/libpipebackend.so.0.0.0 @libdir@19 #endif20 15 21 16 SHELL = @SHELL@ … … 95 90 modulelibs = @modulelibs@ 96 91 moduleobjects = @moduleobjects@ 92 programdescend = @programdescend@ 97 93 socketdir = @socketdir@ 98 94 … … 102 98 lib_LTLIBRARIES = libxdbbackend.la 103 99 104 libxdbbackend_la_SOURCES = xdbbackend.cc x dbbackend.hh xtdb.cc xtdb.hh100 libxdbbackend_la_SOURCES = xdbbackend.cc xtdb.cc xtdb.hh xdb.hh xgdbm.hh 105 101 libxdbbackend_la_LDFLAGS = -module -ltdb 106 102 -
trunk/pdns/pdns/Makefile.am
r80 r82 30 30 backends/bind/bindparser.cc backends/bind/bindlexer.c \ 31 31 backends/bind/huffman.cc backends/gsql/gsqlbackend.cc \ 32 backends/gsql/gsqlbackend.hh 32 backends/gsql/gsqlbackend.hh backends/gsql/ssql.hh 33 33 34 34 #