pgsql: Move copydir.c from src/port to src/backend/storage/file The

Поиск
Список
Период
Сортировка
От rhaas@postgresql.org (Robert Haas)
Тема pgsql: Move copydir.c from src/port to src/backend/storage/file The
Дата
Msg-id 20100702170338.5F2277541D4@cvs.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
Move copydir.c from src/port to src/backend/storage/file

The previous commit to make copydir() interruptible prevented
postgres.exe from linking on MinGW and Cygwin, because on those
platforms libpgport_srv.a can't freely reference symbols defined
by the backend.  Since that code is already backend-specific anyway,
just move the whole file into the backend rather than adding further
kludges to deal with the symbols needed by CHECK_FOR_INTERRUPTS().

This probably needs some further cleanup, but this commit just moves
the file as-is, which should hopefully be enough to turn the
buildfarm green again.

Tags:
----
REL8_4_STABLE

Modified Files:
--------------
    pgsql/src/backend/storage/file:
        Makefile (r1.13 -> r1.13.2.1)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/file/Makefile?r1=1.13&r2=1.13.2.1)
    pgsql/src/port:
        Makefile (r1.37 -> r1.37.2.1)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/port/Makefile?r1=1.37&r2=1.37.2.1)

Added Files:
-----------
    pgsql/src/backend/storage/file:
        copydir.c (r1.1.2.1)

(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/file/copydir.c?rev=1.1.2.1&content-type=text/x-cvsweb-markup)

Removed Files:
-------------
    pgsql/src/port:
        copydir.c
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/port/copydir.c)

В списке pgsql-committers по дате отправления:

Предыдущее
От: rhaas@postgresql.org (Robert Haas)
Дата:
Сообщение: pgsql: Move copydir.c from src/port to src/backend/storage/file The
Следующее
От: rhaas@postgresql.org (Robert Haas)
Дата:
Сообщение: pgsql: Remove hstore % text[] operator; use slice() function instead.