All Projects → postgres → Pgagent

postgres / Pgagent

Licence: other
Mirror of the pgagent project

Labels

Projects that are alternatives of or similar to Pgagent

Openconnect Gui
Mirror - Graphical OpenConnect client (beta phase)
Stars: ✭ 993 (+1809.62%)
Mutual labels:  cmake
Orne navigation
This repository provides mobile robot navigation system with i-Cart mini for Tsukuba Challenge under Project ORNE.
Stars: ✭ 43 (-17.31%)
Mutual labels:  cmake
Cpp starter project
A template CMake project to get you started with C++ and tooling
Stars: ✭ 1,025 (+1871.15%)
Mutual labels:  cmake
Iterative Closest Point
Stars: ✭ 40 (-23.08%)
Mutual labels:  cmake
Picmake
你还在学CMake的过程中毫无头绪吗?你还在为复杂程序库依赖发愁吗?你是否觉得原生CMake的编写冗余而低效?那就快来学习和使用PICMake吧!只需要一行,无论是可执行,动态库还是静态库,轻松搞定!同时高效支持多目标,复杂库的编译安装,从此告别大量冗余CMake代码,专注开发核心应用程序,编译不再愁! 例如下面是使用PICMake编译一个依赖OpenGL的可执行文件,只需要一行!
Stars: ✭ 43 (-17.31%)
Mutual labels:  cmake
Libcsptr
Smart pointers for the (GNU) C programming language
Stars: ✭ 1,023 (+1867.31%)
Mutual labels:  cmake
Ibus Table Chinese
Chinese tables for IBus-Table
Stars: ✭ 36 (-30.77%)
Mutual labels:  cmake
Run Vcpkg
GitHub Action to automatically cache and run vcpkg to build C++ dependencies for your C++ based applications. Available as Azure DevOps tasks also: https://marketplace.visualstudio.com/items?itemName=lucappa.cmake-ninja-vcpkg-tasks
Stars: ✭ 49 (-5.77%)
Mutual labels:  cmake
Pcl For Android
Cross-compilation of PCL (point cloud library) for Android
Stars: ✭ 43 (-17.31%)
Mutual labels:  cmake
Regrader
VST delay plugin where the repeats degrade in resolution
Stars: ✭ 44 (-15.38%)
Mutual labels:  cmake
Cmake csharp example
CMake C#/.NET WPF and WinForms Examples
Stars: ✭ 41 (-21.15%)
Mutual labels:  cmake
Skeleton
Skeleton for quick new C++ project setup
Stars: ✭ 42 (-19.23%)
Mutual labels:  cmake
Ffmpeg Example
FFMPEG 0.11-4.4/LibAV 0.8-11 example application with byte exact reading
Stars: ✭ 44 (-15.38%)
Mutual labels:  cmake
Librevault
Librevault - Peer-to-peer, decentralized and open source file sync.
Stars: ✭ 1,001 (+1825%)
Mutual labels:  cmake
Nonstd Lite
Parent of *-lite repositories, a migration path to post-C++11 features for pre-C++11 environments
Stars: ✭ 46 (-11.54%)
Mutual labels:  cmake
Arduino Rgb Tools
A arduino library with tools for controlling an RGB-LED
Stars: ✭ 37 (-28.85%)
Mutual labels:  cmake
Programming learning resource
学习计算机科学的一些pdf资源
Stars: ✭ 1,019 (+1859.62%)
Mutual labels:  cmake
Antara Gaming Sdk
Komodo Gaming Software Development Kit
Stars: ✭ 51 (-1.92%)
Mutual labels:  cmake
Bcm
Boost cmake modules
Stars: ✭ 48 (-7.69%)
Mutual labels:  cmake
Genepi
Automatic generation of N-API wrapper from a C++ library
Stars: ✭ 45 (-13.46%)
Mutual labels:  cmake

pgAgent

This document describes the compilation of pgAgent, a job scheduler for PostgreSQL.

pgAgent is managed using pgAdmin (http://www.pgadmin.org). The pgAdmin documentation contains details of the setup and use of pgAgent with your PostgreSQL system. The latest build of the documentation can be found at http://www.pgadmin.org/docs/dev/pgagent.html.

Building pgAgent

You will need:

  • A C/C++ compiler, such as GCC or Microsoft Visual C++ on Windows.
  • CMake 3.3 (from www.cmake.org)
  • A Boost library 1.41 or higher installation
  • A PostgreSQL 8.3 or higher installation
  1. Unpack the pgAgent source code
  2. Create a build directory in which the code will be built.
  3. Run ccmake from the build directory (on Windows, use the CMake graphical interface). By default, ccmake will generate Unix Makefiles - consult the documentation if you wish to generate other types of output:

$ ccmake /path/to/pgagent

  1. If required, press 'c' to generate a default configuration:

CMAKE_BUILD_TYPE Release CMAKE_INSTALL_PREFIX /usr/local CMAKE_OSX_ARCHITECTURES x86_64 CMAKE_OSX_SYSROOT /Developer/SDKs/MacOSX10.10.sdk PostgreSQL_CONFIG_EXECUTABLE /usr/local/pgsql/bin/pg_config Boost_FIND_REQUIRED ON Boost_FIND_QUIETLY OFF Boost_DEBUG OFF Boost_USE_MULTITHREADED ON Boost_USE_STATIC_LIBS OFF

  1. Use the ccmake interface to adjust any settings as required. When configured as required, press 'c' to re-configure (if required) and 'g' to generate the build files and exit.

  2. Run 'make' to build pgAgent on Mac or Unix, or open the generated project files in VC++ on Windows and build the solution in the desired configuration.

Running Regression Tests

To run the regression tests, use a command such as:

make USE_PGXS=1 -f test/Makefile installcheck

You will need to ensure that the appropriate pg_config executable is in the path and that variables such as PGPORT and PGUSER are set if required.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].