# HG changeset patch # User Volker Grabsch # Date 1266198009 -3600 # Node ID 6f9e59f9765cbdda5f4ab1c9474a9bc4d2692891 # Parent 9f46c7b491c98c0365ff98a5e5afe1c7d18c8f9d improved native build of pg_config in package postgresql diff -r 9f46c7b491c9 -r 6f9e59f9765c src/postgresql.mk --- a/src/postgresql.mk Sun Feb 14 22:06:05 2010 +0100 +++ b/src/postgresql.mk Mon Feb 15 02:40:09 2010 +0100 @@ -57,16 +57,28 @@ $(INSTALL) -m664 '$(1)/src/include/pg_config.h' '$(PREFIX)/$(TARGET)/include/' $(INSTALL) -m664 '$(1)/src/include/postgres_ext.h' '$(PREFIX)/$(TARGET)/include/' # Build a native pg_config. - echo '/* empty */' >'$(1)'/src/include/pg_config_os.h - gcc \ - -I'$(1)'/src/include \ - -DFRONTEND \ - '$(1)'/src/port/snprintf.c \ - '$(1)'/src/port/path.c \ - '$(1)'/src/port/strlcat.c \ - '$(1)'/src/port/strlcpy.c \ - '$(1)'/src/port/thread.c \ - '$(1)'/src/port/exec.c \ - '$(1)'/src/bin/pg_config/pg_config.c \ - -o '$(PREFIX)/$(TARGET)'/bin/pg_config + cd '$(1)' && $(call UNPACK_PKG_ARCHIVE,postgresql) + mv '$(1)/$(postgresql_SUBDIR)' '$(1).native' + $(SED) 's,-DVAL_,-D_DISABLED_VAL_,g' -i '$(1).native'/src/bin/pg_config/Makefile + cd '$(1).native' && ./configure \ + --prefix='$(PREFIX)/$(TARGET)' \ + --disable-shared \ + --disable-rpath \ + --without-tcl \ + --without-perl \ + --without-python \ + --without-gssapi \ + --without-krb5 \ + --without-pam \ + --without-ldap \ + --without-bonjour \ + --without-openssl \ + --without-readline \ + --without-ossp-uuid \ + --without-libxml \ + --without-libxslt \ + --without-zlib \ + --with-system-tzdata=/dev/null + $(MAKE) -C '$(1).native'/src/port -j '$(JOBS)' + $(MAKE) -C '$(1).native'/src/bin/pg_config -j '$(JOBS)' install endef