diff options
author | Masatomo Nakano <nakano@gentoo.org> | 2005-07-22 23:22:25 +0000 |
---|---|---|
committer | Masatomo Nakano <nakano@gentoo.org> | 2005-07-22 23:22:25 +0000 |
commit | d1a93edddcc4e032c69748351a2e63c3de8f7065 (patch) | |
tree | 09a0f0b2baf4134a66a0a437b82b56dd8d72c2a0 /dev-db/dbbalancer/files | |
parent | Add dlloader USE flag, which installs a DSO linuxwacom Xorg driver. Furthermo... (diff) | |
download | historical-d1a93edddcc4e032c69748351a2e63c3de8f7065.tar.gz historical-d1a93edddcc4e032c69748351a2e63c3de8f7065.tar.bz2 historical-d1a93edddcc4e032c69748351a2e63c3de8f7065.zip |
Fxied compile failed bug. (#93316)
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'dev-db/dbbalancer/files')
-rw-r--r-- | dev-db/dbbalancer/files/dbbalancer-0.4.4-gentoo.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-db/dbbalancer/files/dbbalancer-0.4.4-gentoo.patch b/dev-db/dbbalancer/files/dbbalancer-0.4.4-gentoo.patch new file mode 100644 index 000000000000..c004c423284a --- /dev/null +++ b/dev-db/dbbalancer/files/dbbalancer-0.4.4-gentoo.patch @@ -0,0 +1,39 @@ +diff -Naru DBBalancer.org/src/config/DBBalancerConfig.hh DBBalancer/src/config/DBBalancerConfig.hh +--- DBBalancer.org/src/config/DBBalancerConfig.hh 2002-07-20 21:03:37.000000000 +0100 ++++ DBBalancer/src/config/DBBalancerConfig.hh 2005-07-23 00:07:00.000000000 +0100 +@@ -1,5 +1,12 @@ + #include <string> + #include <vector> ++#include<sys/types.h> ++#include<sys/socket.h> ++#include <netinet/in.h> ++#include <arpa/inet.h> ++#include <netdb.h> ++#include <sys/un.h> ++#include <iostream.h> + + // Interface for the configuration management. Every configuration reader and holder should implement this. + +diff -Naru DBBalancer.org/src/DBBalancerDaemon.hh DBBalancer/src/DBBalancerDaemon.hh +--- DBBalancer.org/src/DBBalancerDaemon.hh 2002-07-21 19:01:41.000000000 +0100 ++++ DBBalancer/src/DBBalancerDaemon.hh 2005-07-23 00:07:19.000000000 +0100 +@@ -1,5 +1,6 @@ + #include <string> + #include <iostream> ++#include <sys/un.h> + + using std::string; + +diff -Naru DBBalancer.org/src/tests/postgres_cc/pgtest.cc DBBalancer/src/tests/postgres_cc/pgtest.cc +--- DBBalancer.org/src/tests/postgres_cc/pgtest.cc 2001-08-27 20:27:42.000000000 +0100 ++++ DBBalancer/src/tests/postgres_cc/pgtest.cc 2005-07-23 00:07:49.000000000 +0100 +@@ -1,7 +1,9 @@ + #include <sys/time.h> + #include <iostream> ++#include <string> + #include <libpq++.h> + ++using namespace std; + + int main(int argc, char* argv[]) { + |