File tree Expand file tree Collapse file tree 11 files changed +14
-15
lines changed Expand file tree Collapse file tree 11 files changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ endif
510510
511511LIBOBJS = @LIBOBJS@
512512
513- LIBS := -lpgport -lpgcommon $(LIBS )
513+ LIBS := -lpgcommon -lpgport $(LIBS )
514514
515515# to make ws2_32.lib the last library, and always link with shfolder,
516516# so SHGetFolderName isn't picked up from shell32.dll
Original file line number Diff line number Diff line change 11# src/bin/initdb/nls.mk
22CATALOG_NAME = initdb
33AVAIL_LANGUAGES = cs de es fr it ja pl pt_BR ru zh_CN
4- GETTEXT_FILES = findtimezone.c initdb.c ../../common/fe_memutils .c ../../port/dirmod .c ../../port/exec .c ../../port/wait_error .c
4+ GETTEXT_FILES = findtimezone.c initdb.c ../../common/exec .c ../../common/fe_memutils .c ../../common/wait_error .c ../../port/dirmod .c
55GETTEXT_TRIGGERS = simple_prompt
Original file line number Diff line number Diff line change 11# src/bin/pg_config/nls.mk
22CATALOG_NAME = pg_config
33AVAIL_LANGUAGES = cs de es fr it ja ko nb pl pt_BR ro ru sv ta tr zh_CN zh_TW
4- GETTEXT_FILES = pg_config.c ../../port /exec.c
4+ GETTEXT_FILES = pg_config.c ../../common /exec.c
Original file line number Diff line number Diff line change 11# src/bin/pg_ctl/nls.mk
22CATALOG_NAME = pg_ctl
33AVAIL_LANGUAGES = cs de es fr it ja pl pt_BR ru sv zh_CN zh_TW
4- GETTEXT_FILES = pg_ctl.c ../../common/fe_memutils .c ../../port/exec .c ../../port /wait_error.c
4+ GETTEXT_FILES = pg_ctl.c ../../common/exec .c ../../common/fe_memutils .c ../../common /wait_error.c
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ GETTEXT_FILES = pg_backup_archiver.c pg_backup_db.c pg_backup_custom.c \
77 pg_dump.c common.c pg_dump_sort.c \
88 pg_restore.c pg_dumpall.c \
99 parallel.c parallel.h pg_backup_utils.c pg_backup_utils.h \
10- ../../common/fe_memutils .c ../../port/exec .c
10+ ../../common/exec .c ../../common/fe_memutils .c
1111GETTEXT_TRIGGERS = write_msg:2 exit_horribly:2 simple_prompt \
1212 ExecuteSqlCommand:3 ahlog:3 warn_or_exit_horribly:3
1313GETTEXT_FLAGS = \
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ AVAIL_LANGUAGES = cs de es fr it ja pl pt_BR ru zh_CN zh_TW
44GETTEXT_FILES = command.c common.c copy.c help.c input.c large_obj.c \
55 mainloop.c print.c psqlscan.c startup.c describe.c sql_help.h sql_help.c \
66 tab-complete.c variables.c \
7- ../../common/fe_memutils .c ../../port/exec .c ../../port /wait_error.c
7+ ../../common/exec .c ../../common/fe_memutils .c ../../common /wait_error.c
88GETTEXT_TRIGGERS = N_ psql_error simple_prompt
99GETTEXT_FLAGS = psql_error:1:c-format
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ include $(top_builddir)/src/Makefile.global
2323override CPPFLAGS := -DFRONTEND $(CPPFLAGS )
2424LIBS += $(PTHREAD_LIBS )
2525
26- OBJS_COMMON = relpath.o
26+ OBJS_COMMON = exec.o relpath.o wait_error .o
2727
2828OBJS_FRONTEND = $(OBJS_COMMON ) fe_memutils.o
2929
Original file line number Diff line number Diff line change 99 *
1010 *
1111 * IDENTIFICATION
12- * src/port /exec.c
12+ * src/common /exec.c
1313 *
1414 *-------------------------------------------------------------------------
1515 */
Original file line number Diff line number Diff line change 99 *
1010 *
1111 * IDENTIFICATION
12- * src/port /wait_error.c
12+ * src/common /wait_error.c
1313 *
1414 *-------------------------------------------------------------------------
1515 */
Original file line number Diff line number Diff line change @@ -30,11 +30,10 @@ include $(top_builddir)/src/Makefile.global
3030override CPPFLAGS := -I$(top_builddir ) /src/port -DFRONTEND $(CPPFLAGS )
3131LIBS += $(PTHREAD_LIBS )
3232
33- OBJS = $(LIBOBJS ) chklocale.o dirmod.o erand48.o exec.o fls.o inet_net_ntop.o \
33+ OBJS = $(LIBOBJS ) chklocale.o dirmod.o erand48.o fls.o inet_net_ntop.o \
3434 noblock.o path.o pgcheckdir.o pg_crc.o pgmkdirp.o pgsleep.o \
3535 pgstrcasecmp.o pqsignal.o \
36- qsort.o qsort_arg.o quotes.o sprompt.o tar.o thread.o \
37- wait_error.o
36+ qsort.o qsort_arg.o quotes.o sprompt.o tar.o thread.o
3837
3938# foo_srv.o and foo.o are both built from foo.c, but only foo.o has -DFRONTEND
4039OBJS_SRV = $(OBJS:%.o=%_srv.o )
You can’t perform that action at this time.
0 commit comments