diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-04-11 03:24:39 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-04-11 03:24:39 +0800 |
commit | 58794b38b1a24b93c9a8c3321694e3883bae4cd0 (patch) | |
tree | 3d921b9d8836f0a4c0ba361d4581a70d202545ad /databases/glom/files | |
parent | f33c5fb61cfe4c8856817db7f2c84041a862250b (diff) | |
download | marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.gz marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.bz2 marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.lz marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.xz marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.zst marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.zip |
Remove these ports now that they have been merged into FreeBSD ports.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12240 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'databases/glom/files')
-rw-r--r-- | databases/glom/files/patch-glom_libglom_connectionpool.cc | 14 | ||||
-rw-r--r-- | databases/glom/files/patch-glom_main.cc | 32 |
2 files changed, 0 insertions, 46 deletions
diff --git a/databases/glom/files/patch-glom_libglom_connectionpool.cc b/databases/glom/files/patch-glom_libglom_connectionpool.cc deleted file mode 100644 index b1f9b2c50..000000000 --- a/databases/glom/files/patch-glom_libglom_connectionpool.cc +++ /dev/null @@ -1,14 +0,0 @@ ---- glom/libglom/connectionpool.cc.orig 2008-04-29 18:10:54.000000000 +0200 -+++ glom/libglom/connectionpool.cc 2008-08-08 02:39:55.000000000 +0200 -@@ -789,7 +789,11 @@ bool ConnectionPool::directory_exists_ur - // TODO: This is probably mingw specific - static __p_sig_fn_t previous_sig_handler = SIG_DFL; - #else -+# ifdef __FreeBSD__ -+static __sighandler_t *previous_sig_handler = SIG_DFL; /* Arbitrary default */ -+# else - static sighandler_t previous_sig_handler = SIG_DFL; /* Arbitrary default */ -+# endif - #endif - - /* This is a Linux/Unix signal handler, diff --git a/databases/glom/files/patch-glom_main.cc b/databases/glom/files/patch-glom_main.cc deleted file mode 100644 index c9143bb8b..000000000 --- a/databases/glom/files/patch-glom_main.cc +++ /dev/null @@ -1,32 +0,0 @@ ---- glom/main.cc.orig 2009-03-16 14:53:55.000000000 +0100 -+++ glom/main.cc 2009-03-17 16:22:01.000000000 +0100 -@@ -100,18 +100,19 @@ OptionGroup::OptionGroup() - - } //namespace Glom - --#ifndef G_OS_WIN32 -+#ifdef __linux - extern "C" void __libc_freeres(void); - #endif - - int - main(int argc, char* argv[]) - { --#ifndef G_OS_WIN32 -+#ifdef __linux - //Force some cleanup at exit, - //to help valgrind to detect memory leaks: - atexit(__libc_freeres); - #else -+# ifdef G_OS_WIN32 - WSADATA data; - int errcode = WSAStartup(MAKEWORD(2, 0), &data); - if(errcode != 0) -@@ -123,6 +124,7 @@ main(int argc, char* argv[]) - gchar* installation_dir_c = g_win32_get_package_installation_directory_of_module(NULL); - const std::string installation_dir(installation_dir_c); - g_free(installation_dir_c); -+# endif - #endif - - // TODO: I am not sure why, but this does not work. PYTHONPATH is set |