Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
From 58d05b2a57802345f43e628bc0807dbf0116cdcc Mon Sep 17 00:00:00 2001
|
||||
From: Max Filippov <jcmvbkbc@gmail.com>
|
||||
Date: Fri, 20 Mar 2015 16:37:51 +0300
|
||||
Subject: [PATCH] Compare linker/compiler output with their default output
|
||||
|
||||
linker and compiler may have noisy output by default, making
|
||||
acx_pthread.m4 believe that pthread options that it tries are ignored
|
||||
as invalid.
|
||||
|
||||
Record default compiler and linker output and see if adding pthread
|
||||
option changes that, instead of assuming that linker and compiler are
|
||||
silent by default.
|
||||
|
||||
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
|
||||
---
|
||||
config/acx_pthread.m4 | 18 +++++++++++++++++-
|
||||
1 file changed, 17 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/config/acx_pthread.m4 b/config/acx_pthread.m4
|
||||
index 581164b..d254612 100644
|
||||
--- a/config/acx_pthread.m4
|
||||
+++ b/config/acx_pthread.m4
|
||||
@@ -80,6 +80,22 @@
|
||||
esac
|
||||
|
||||
if test x"$acx_pthread_ok" = xno; then
|
||||
+
|
||||
+cat >conftest.$ac_ext <<_ACEOF
|
||||
+int
|
||||
+main (int argc, char **argv)
|
||||
+{
|
||||
+ (void) argc;
|
||||
+ (void) argv;
|
||||
+ return 0;
|
||||
+}
|
||||
+_ACEOF
|
||||
+rm -f conftest.$ac_objext conftest$ac_exeext
|
||||
+
|
||||
+# Record the default linker and compiler output
|
||||
+ld_default_output="`(eval $ac_link 2>&1 1>&5)`"
|
||||
+cc_default_output="`(eval $ac_compile 2>&1 1>&5)`"
|
||||
+
|
||||
for flag in $acx_pthread_flags; do
|
||||
|
||||
tryPTHREAD_CFLAGS=""
|
||||
@@ -143,7 +159,7 @@
|
||||
_ACEOF
|
||||
rm -f conftest.$ac_objext conftest$ac_exeext
|
||||
# Check both linking and compiling, because they might tolerate different options.
|
||||
- if test "`(eval $ac_link 2>&1 1>&5)`" = "" && test "`(eval $ac_compile 2>&1 1>&5)`" = ""; then
|
||||
+ if test "`(eval $ac_link 2>&1 1>&5)`" = "$ld_default_output" && test "`(eval $ac_compile 2>&1 1>&5)`" = "$cc_default_output"; then
|
||||
# we continue with more flags because Linux needs -lpthread
|
||||
# for libpq builds on PostgreSQL. The test above only
|
||||
# tests for building binaries, not shared libraries.
|
||||
--
|
||||
1.8.1.4
|
||||
22
deprecated/firmware/buildroot/package/postgresql/Config.in
Normal file
22
deprecated/firmware/buildroot/package/postgresql/Config.in
Normal file
@@ -0,0 +1,22 @@
|
||||
config BR2_PACKAGE_POSTGRESQL
|
||||
bool "postgresql"
|
||||
depends on BR2_USE_MMU # fork()
|
||||
# fails to build in a pure static linking scenario, and
|
||||
# postgresql is unlikely to be used in a pure statically
|
||||
# linked environment.
|
||||
depends on !BR2_STATIC_LIBS
|
||||
help
|
||||
PostgreSQL is a powerful, open source object-relational
|
||||
database system.
|
||||
|
||||
Enable the readline package to gain readline support in
|
||||
pgsql (the command line interpreter), which offers
|
||||
command history and edit functions.
|
||||
|
||||
Enable the zlib package to gain builtin compression for
|
||||
archives with pg_dump and pg_restore.
|
||||
|
||||
http://www.postgresql.org
|
||||
|
||||
comment "postgresql needs a toolchain w/ dynamic library"
|
||||
depends on BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,44 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# start postgresql
|
||||
#
|
||||
|
||||
umask 077
|
||||
|
||||
if [ ! -f /var/lib/pgsql/PG_VERSION ]; then
|
||||
echo "Initializing postgresql data base..."
|
||||
su - postgres -c '/usr/bin/pg_ctl initdb -D /var/lib/pgsql'
|
||||
echo "done"
|
||||
fi
|
||||
|
||||
start() {
|
||||
printf "Starting postgresql: "
|
||||
su - postgres -c '/usr/bin/pg_ctl start -w -D /var/lib/pgsql -l logfile'
|
||||
echo "OK"
|
||||
}
|
||||
stop() {
|
||||
printf "Stopping postgresql: "
|
||||
su - postgres -c '/usr/bin/pg_ctl stop -D /var/lib/pgsql -m fast'
|
||||
echo "OK"
|
||||
}
|
||||
restart() {
|
||||
stop
|
||||
start
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
start
|
||||
;;
|
||||
stop)
|
||||
stop
|
||||
;;
|
||||
restart|reload)
|
||||
restart
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
||||
19
deprecated/firmware/buildroot/package/postgresql/pg_config
Normal file
19
deprecated/firmware/buildroot/package/postgresql/pg_config
Normal file
@@ -0,0 +1,19 @@
|
||||
#!/bin/sh
|
||||
|
||||
#
|
||||
# Minimal pg_config implementation as replacement for the native pg_config application
|
||||
# Only implements --includedir and --libdir
|
||||
#
|
||||
|
||||
prefix=/usr
|
||||
|
||||
case "$1" in
|
||||
--includedir)
|
||||
echo "$prefix/include"
|
||||
;;
|
||||
--libdir)
|
||||
echo "$prefix/lib"
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {--includedir|--libdir}"
|
||||
esac
|
||||
@@ -0,0 +1,2 @@
|
||||
# From https://ftp.postgresql.org/pub/source/v9.4.6/postgresql-9.4.6.tar.bz2.sha256
|
||||
sha256 cbce1f4d01a6142c5d8bebe125623c5198ec04f363da7dd3d3b3a4100b4140a6 postgresql-9.4.6.tar.bz2
|
||||
@@ -0,0 +1,92 @@
|
||||
################################################################################
|
||||
#
|
||||
# postgresql
|
||||
#
|
||||
################################################################################
|
||||
|
||||
POSTGRESQL_VERSION = 9.4.6
|
||||
POSTGRESQL_SOURCE = postgresql-$(POSTGRESQL_VERSION).tar.bz2
|
||||
POSTGRESQL_SITE = http://ftp.postgresql.org/pub/source/v$(POSTGRESQL_VERSION)
|
||||
POSTGRESQL_LICENSE = PostgreSQL
|
||||
POSTGRESQL_LICENSE_FILES = COPYRIGHT
|
||||
POSTGRESQL_INSTALL_STAGING = YES
|
||||
POSTGRESQL_CONFIG_SCRIPTS = pg_config
|
||||
POSTGRESQL_CONF_ENV = ac_cv_type_struct_sockaddr_in6=yes \
|
||||
pgac_cv_snprintf_long_long_int_format="%lld" \
|
||||
pgac_cv_snprintf_size_t_support=yes
|
||||
POSTGRESQL_AUTORECONF = YES
|
||||
POSTGRESQL_CONF_OPTS = --disable-rpath
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
||||
# PostgreSQL does not build against uClibc with locales
|
||||
# enabled, due to an uClibc bug, see
|
||||
# http://lists.uclibc.org/pipermail/uclibc/2014-April/048326.html
|
||||
# so overwrite automatic detection and disable locale support
|
||||
POSTGRESQL_CONF_ENV += pgac_cv_type_locale_t=no
|
||||
endif
|
||||
|
||||
ifneq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
||||
POSTGRESQL_CONF_OPTS += --disable-thread-safety
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_arcle)$(BR2_arceb)$(BR2_microblazeel)$(BR2_microblazebe)$(BR2_nios2)$(BR2_xtensa),y)
|
||||
POSTGRESQL_CONF_OPTS += --disable-spinlocks
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_READLINE),y)
|
||||
POSTGRESQL_DEPENDENCIES += readline
|
||||
else
|
||||
POSTGRESQL_CONF_OPTS += --without-readline
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
POSTGRESQL_DEPENDENCIES += zlib
|
||||
else
|
||||
POSTGRESQL_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_TZDATA),y)
|
||||
POSTGRESQL_DEPENDENCIES += tzdata
|
||||
POSTGRESQL_CONF_OPTS += --with-system-tzdata=/usr/share/zoneinfo
|
||||
else
|
||||
POSTGRESQL_DEPENDENCIES += host-zic
|
||||
POSTGRESQL_CONF_ENV += ZIC="$(ZIC)"
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
POSTGRESQL_DEPENDENCIES += openssl
|
||||
POSTGRESQL_CONF_OPTS += --with-openssl
|
||||
endif
|
||||
|
||||
define POSTGRESQL_USERS
|
||||
postgres -1 postgres -1 * /var/lib/pgsql /bin/sh - PostgreSQL Server
|
||||
endef
|
||||
|
||||
define POSTGRESQL_INSTALL_TARGET_FIXUP
|
||||
$(INSTALL) -dm 0700 $(TARGET_DIR)/var/lib/pgsql
|
||||
$(RM) -rf $(TARGET_DIR)/usr/lib/postgresql/pgxs
|
||||
endef
|
||||
|
||||
POSTGRESQL_POST_INSTALL_TARGET_HOOKS += POSTGRESQL_INSTALL_TARGET_FIXUP
|
||||
|
||||
define POSTGRESQL_INSTALL_CUSTOM_PG_CONFIG
|
||||
$(INSTALL) -m 0755 -D package/postgresql/pg_config \
|
||||
$(STAGING_DIR)/usr/bin/pg_config
|
||||
endef
|
||||
|
||||
POSTGRESQL_POST_INSTALL_STAGING_HOOKS += POSTGRESQL_INSTALL_CUSTOM_PG_CONFIG
|
||||
|
||||
define POSTGRESQL_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -m 0755 -D package/postgresql/S50postgresql \
|
||||
$(TARGET_DIR)/etc/init.d/S50postgresql
|
||||
endef
|
||||
|
||||
define POSTGRESQL_INSTALL_INIT_SYSTEMD
|
||||
$(INSTALL) -D -m 644 package/postgresql/postgresql.service \
|
||||
$(TARGET_DIR)/usr/lib/systemd/system/postgresql.service
|
||||
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
||||
ln -fs ../../../../usr/lib/systemd/system/postgresql.service \
|
||||
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/postgresql.service
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
@@ -0,0 +1,24 @@
|
||||
[Unit]
|
||||
Description=PostgreSQL database server
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
|
||||
# start timeout disabled because initdb may run a little
|
||||
# longer (eg. 5 minutes on RaspberryPi)
|
||||
TimeoutStartSec=0
|
||||
|
||||
User=postgres
|
||||
Group=postgres
|
||||
|
||||
SyslogIdentifier=postgres
|
||||
PIDFile=/var/lib/pgsql/postmaster.pid
|
||||
|
||||
ExecStartPre=/bin/sh -c "if [ ! -f /var/lib/pgsql/PG_VERSION ]; then /usr/bin/pg_ctl initdb -D /var/lib/pgsql; fi"
|
||||
ExecStart=/usr/bin/pg_ctl start -D /var/lib/pgsql -w -l /var/lib/pgsql/logfile
|
||||
ExecReload=/usr/bin/pg_ctl reload -D /var/lib/pgsql
|
||||
ExecStop=/usr/bin/pg_ctl stop -D /var/lib/pgsql -m fast
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Reference in New Issue
Block a user