]> granicus.if.org Git - postgresql/blob - src/Makefile.global.in
Change initdb and CREATE DATABASE to actively reject attempts to create
[postgresql] / src / Makefile.global.in
1 # -*-makefile-*-
2 # $PostgreSQL: pgsql/src/Makefile.global.in,v 1.239 2007/09/28 22:25:49 tgl Exp $
3
4 #------------------------------------------------------------------------------
5 # All PostgreSQL makefiles include this file and use the variables it sets,
6 # which in turn are put here by the configure script. There is no need for
7 # users to edit this file -- if it turns out to be necessary then that's a
8 # bug.
9 #
10 # A makefile that includes this file needs to set the variable `subdir' to
11 # the relative path from the top to itself and `top_builddir' to the relative
12 # path from itself to the top before including this file. (The "top" is the
13 # parent directory of the directory this file is in.)
14 #------------------------------------------------------------------------------
15
16
17 ##########################################################################
18 #
19 # Meta configuration
20
21 .PHONY: all install install-strip installdirs uninstall clean distclean maintainer-clean distprep check installcheck maintainer-check
22 .SILENT: installdirs
23
24 # make `all' the default target
25 all:
26
27 # Delete target files if the command fails after it has
28 # started to update the file.
29 .DELETE_ON_ERROR:
30
31 # PostgreSQL version number
32 VERSION = @PACKAGE_VERSION@
33
34 # Support for VPATH builds
35 vpath_build = @vpath_build@
36 abs_top_srcdir = @abs_top_srcdir@
37
38 ifneq ($(vpath_build),yes)
39 top_srcdir = $(top_builddir)
40 srcdir = .
41 else # vpath_build = yes
42 top_srcdir = $(abs_top_srcdir)
43 srcdir = $(top_srcdir)/$(subdir)
44 VPATH = $(srcdir)
45 endif
46
47 # Saved arguments from configure
48 configure_args = @configure_args@
49
50
51 ##########################################################################
52 #
53 # Installation directories
54 #
55 # These are set by the equivalent --xxxdir configure options.  We
56 # append "postgresql" to some of them, if the string does not already
57 # contain "pgsql" or "postgres", in order to avoid directory clutter.
58 #
59 # In a PGXS build, we cannot use the values inserted into Makefile.global
60 # by configure, since the installation tree may have been relocated.
61 # Instead get the path values from pg_config.
62
63 ifndef PGXS
64
65 # Note that prefix and exec_prefix aren't defined in a PGXS build;
66 # makefiles may only use the derived variables such as bindir.
67
68 prefix := @prefix@
69 exec_prefix := @exec_prefix@
70
71 bindir := @bindir@
72
73 datadir := @datadir@
74 ifeq "$(findstring pgsql, $(datadir))" ""
75 ifeq "$(findstring postgres, $(datadir))" ""
76 override datadir := $(datadir)/postgresql
77 endif
78 endif
79
80 sysconfdir := @sysconfdir@
81 ifeq "$(findstring pgsql, $(sysconfdir))" ""
82 ifeq "$(findstring postgres, $(sysconfdir))" ""
83 override sysconfdir := $(sysconfdir)/postgresql
84 endif
85 endif
86
87 libdir := @libdir@
88
89 pkglibdir = $(libdir)
90 ifeq "$(findstring pgsql, $(pkglibdir))" ""
91 ifeq "$(findstring postgres, $(pkglibdir))" ""
92 override pkglibdir := $(pkglibdir)/postgresql
93 endif
94 endif
95
96 includedir := @includedir@
97
98 pkgincludedir = $(includedir)
99 ifeq "$(findstring pgsql, $(pkgincludedir))" ""
100 ifeq "$(findstring postgres, $(pkgincludedir))" ""
101 override pkgincludedir := $(pkgincludedir)/postgresql
102 endif
103 endif
104
105 mandir := @mandir@
106
107 docdir := @docdir@
108 # docdir can be an empty string to signify --without-docdir
109 ifneq (,$(docdir))
110 ifeq "$(findstring pgsql, $(docdir))" ""
111 ifeq "$(findstring postgres, $(docdir))" ""
112 override docdir := $(docdir)/postgresql
113 endif
114 endif
115 endif
116
117 localedir := @localedir@
118
119 else # PGXS case
120
121 # Extension makefiles should set PG_CONFIG, but older ones might not
122 ifndef PG_CONFIG
123 PG_CONFIG = pg_config
124 endif
125
126 bindir := $(shell $(PG_CONFIG) --bindir)
127 datadir := $(shell $(PG_CONFIG) --sharedir)
128 sysconfdir := $(shell $(PG_CONFIG) --sysconfdir)
129 libdir := $(shell $(PG_CONFIG) --libdir)
130 pkglibdir := $(shell $(PG_CONFIG) --pkglibdir)
131 includedir := $(shell $(PG_CONFIG) --includedir)
132 pkgincludedir := $(shell $(PG_CONFIG) --pkgincludedir)
133 mandir := $(shell $(PG_CONFIG) --mandir)
134 docdir := $(shell $(PG_CONFIG) --docdir)
135 localedir := $(shell $(PG_CONFIG) --localedir)
136
137 endif # PGXS
138
139 # These derived path variables aren't separately configurable.
140
141 includedir_server = $(pkgincludedir)/server
142 includedir_internal = $(pkgincludedir)/internal
143 pgxsdir = $(pkglibdir)/pgxs
144
145 sqlmansect_dummy = l
146
147
148 ##########################################################################
149 #
150 # Features
151 #
152 # Records the choice of the various --enable-xxx and --with-xxx options.
153
154 with_perl       = @with_perl@
155 with_python     = @with_python@
156 with_tcl        = @with_tcl@
157 with_openssl    = @with_openssl@
158 with_ossp_uuid  = @with_ossp_uuid@
159 with_libxml     = @with_libxml@
160 with_libxslt    = @with_libxslt@
161 with_system_tzdata = @with_system_tzdata@
162 with_zlib       = @with_zlib@
163 enable_shared   = @enable_shared@
164 enable_rpath    = @enable_rpath@
165 enable_nls      = @enable_nls@
166 enable_debug    = @enable_debug@
167 enable_dtrace   = @enable_dtrace@
168 enable_thread_safety    = @enable_thread_safety@
169
170 python_includespec      = @python_includespec@
171 python_libdir           = @python_libdir@
172 python_libspec          = @python_libspec@
173 python_additional_libs  = @python_additional_libs@
174 python_configdir        = @python_configdir@
175 python_version          = @python_version@
176
177 krb_srvtab = @krb_srvtab@
178
179 TCLSH                   = @TCLSH@
180 TCL_LIB_FILE            = @TCL_LIB_FILE@
181 TCL_LIBS                = @TCL_LIBS@
182 TCL_LIB_SPEC            = @TCL_LIB_SPEC@
183 TCL_INCLUDE_SPEC        = @TCL_INCLUDE_SPEC@
184 TCL_SHARED_BUILD        = @TCL_SHARED_BUILD@
185 TCL_SHLIB_LD_LIBS       = @TCL_SHLIB_LD_LIBS@
186
187 PTHREAD_CFLAGS          = @PTHREAD_CFLAGS@
188 PTHREAD_LIBS            = @PTHREAD_LIBS@
189
190 have_docbook    = @have_docbook@
191 DOCBOOKSTYLE    = @DOCBOOKSTYLE@
192 COLLATEINDEX    = @COLLATEINDEX@
193
194
195 ##########################################################################
196 #
197 # Programs and flags
198
199 # Compilers
200
201 CPP = @CPP@
202 CPPFLAGS = @CPPFLAGS@
203
204 ifdef PGXS
205 override CPPFLAGS := -I$(includedir_server) -I$(includedir_internal) $(CPPFLAGS)
206 else # not PGXS
207 override CPPFLAGS := -I$(top_srcdir)/src/include $(CPPFLAGS)
208 ifdef VPATH
209 override CPPFLAGS := -I$(top_builddir)/src/include $(CPPFLAGS)
210 endif
211 endif # not PGXS
212
213 CC = @CC@
214 GCC = @GCC@
215 CFLAGS = @CFLAGS@
216
217 # Kind-of compilers
218
219 YACC = @YACC@
220 YFLAGS = @YFLAGS@
221 FLEX = @FLEX@
222 FLEXFLAGS = @FLEXFLAGS@ $(LFLAGS)
223 DTRACE = @DTRACE@
224 DTRACEFLAGS = @DTRACEFLAGS@
225
226 # Linking
227
228 LIBS = @LIBS@
229 LDAP_LIBS_FE = @LDAP_LIBS_FE@
230 LDAP_LIBS_BE = @LDAP_LIBS_BE@
231 LD = @LD@
232 with_gnu_ld = @with_gnu_ld@
233 ld_R_works = @ld_R_works@
234 LDFLAGS = @LDFLAGS@
235 LDFLAGS_SL = @LDFLAGS_SL@
236 LDREL = -r
237 LDOUT = -o
238 RANLIB = @RANLIB@
239 X = @EXEEXT@
240
241 # Perl 
242
243 # quoted for pathname with spaces
244 PERL                    = "@PERL@"
245 perl_archlibexp         = @perl_archlibexp@
246 perl_privlibexp         = @perl_privlibexp@
247 perl_useshrplib         = @perl_useshrplib@
248 perl_embed_ldflags      = @perl_embed_ldflags@
249
250 # Miscellaneous
251
252 AWK     = @AWK@
253 LN_S    = @LN_S@
254 MSGFMT  = @MSGFMT@
255 MSGMERGE = @MSGMERGE@
256 PYTHON  = @PYTHON@
257 TAR     = @TAR@
258 XGETTEXT = @XGETTEXT@
259
260 GZIP    = gzip
261 BZIP2   = bzip2
262
263 PL_TESTDB = pl_regression
264 CONTRIB_TESTDB = contrib_regression
265
266 # Installation.
267
268 INSTALL = $(SHELL) $(top_srcdir)/config/install-sh -c
269
270 INSTALL_SCRIPT_MODE     = 755
271 INSTALL_DATA_MODE       = 644
272 INSTALL_PROGRAM = $(INSTALL_PROGRAM_ENV) $(INSTALL) $(INSTALL_STRIP_FLAG)
273 INSTALL_SCRIPT  = $(INSTALL) -m $(INSTALL_SCRIPT_MODE)
274 INSTALL_DATA    = $(INSTALL) -m $(INSTALL_DATA_MODE)
275 INSTALL_STLIB   = $(INSTALL_STLIB_ENV) $(INSTALL_DATA) $(INSTALL_STRIP_FLAG)
276 INSTALL_SHLIB   = $(INSTALL_SHLIB_ENV) $(INSTALL) $(INSTALL_SHLIB_OPTS) $(INSTALL_STRIP_FLAG)
277 # Override in Makefile.port if necessary
278 INSTALL_SHLIB_OPTS = -m 755
279
280 mkinstalldirs   = $(SHELL) $(top_srcdir)/config/mkinstalldirs
281 missing         = $(SHELL) $(top_srcdir)/config/missing
282
283 STRIP           = @STRIP@
284 STRIP_STATIC_LIB = @STRIP_STATIC_LIB@
285 STRIP_SHARED_LIB = @STRIP_SHARED_LIB@
286
287 # Documentation
288
289 JADE    = @JADE@
290 NSGMLS  = @NSGMLS@
291 SGMLSPL = @SGMLSPL@
292
293 # Feature settings
294
295 DEF_PGPORT = @default_port@
296 WANTED_LANGUAGES = @WANTED_LANGUAGES@
297
298
299 ##########################################################################
300 #
301 # Additional platform-specific settings
302 #
303
304 # Name of the "template"
305 PORTNAME= @PORTNAME@
306
307 host_tuple = @host@
308 host_os = @host_os@
309 host_cpu = @host_cpu@
310
311 # Make HAVE_IPV6 available for initdb script creation
312 HAVE_IPV6= @HAVE_IPV6@
313
314 # The HP-UX port makefile, for one, needs access to this symbol
315 HAVE_POSIX_SIGNALS= @HAVE_POSIX_SIGNALS@
316
317 # This is mainly for use on FreeBSD, where we have both a.out and elf
318 # systems now.  May be applicable to other systems to?
319 ELF_SYSTEM= @ELF_SYS@
320
321 # Backend stack size limit has to be hard-wired on Windows (it's in bytes)
322 WIN32_STACK_RLIMIT=4194304
323
324 # Pull in platform-specific magic
325 include $(top_builddir)/src/Makefile.port
326
327 # Set up rpath if enabled.  By default it will point to our libdir,
328 # but individual Makefiles can force other rpath paths if needed.
329 rpathdir = $(libdir)
330
331 ifeq ($(enable_rpath), yes)
332 LDFLAGS += $(rpath)
333 endif
334
335
336 ##########################################################################
337 #
338 # Some variables needed to find some client interfaces
339
340 ifdef PGXS
341 # some contribs assumes headers and libs are in the source tree...
342 libpq_srcdir = $(includedir)
343 libpq_builddir = $(libdir)
344 else
345 libpq_srcdir = $(top_srcdir)/src/interfaces/libpq
346 libpq_builddir = $(top_builddir)/src/interfaces/libpq
347 endif
348
349 # This macro is for use by libraries linking to libpq.  (Because libpgport
350 # isn't created with the same link flags as libpq, it can't be used.)
351 libpq = -L$(libpq_builddir) -lpq
352   
353 # If doing static linking, shared library dependency info isn't available,
354 # so add in the libraries that libpq depends on.
355 ifeq ($(enable_shared), no)
356 libpq += $(filter -lintl -lssl -lcrypto -lkrb5 -lcrypt, $(LIBS)) \
357         $(LDAP_LIBS_FE) $(PTHREAD_LIBS)
358 endif
359
360 # This macro is for use by client executables (not libraries) that use libpq.
361 # We force clients to pull symbols from the non-shared library libpgport 
362 # rather than pulling some libpgport symbols from libpq just because 
363 # libpq uses those functions too.  This makes applications less 
364 # dependent on changes in libpq's usage of pgport.  To do this we link to
365 # pgport before libpq.  This does cause duplicate -lpgport's to appear
366 # on client link lines.
367 ifdef PGXS
368 libpq_pgport = -L$(libdir) -lpgport $(libpq)
369 else
370 libpq_pgport = -L$(top_builddir)/src/port -lpgport $(libpq)
371 endif
372
373
374 submake-libpq:
375         $(MAKE) -C $(libpq_builddir) all
376
377 submake-libpgport:
378         $(MAKE) -C $(top_builddir)/src/port all
379
380 .PHONY: submake-libpq submake-libpgport
381
382
383 ##########################################################################
384 #
385 # Customization
386 #
387 # This includes your local customizations if Makefile.custom exists
388 # in the source directory.  This file doesn't exist in the original
389 # distribution so that it doesn't get overwritten when you upgrade.
390 #
391 # NOTE:  Makefile.custom is from the pre-Autoconf days of PostgreSQL.
392 # You are liable to shoot yourself in the foot if you use it without
393 # knowing exactly what you're doing.  The preferred (and more
394 # reliable) method is to communicate what you want to do to the
395 # configure script, and leave the makefiles alone.
396
397 -include $(top_srcdir)/src/Makefile.custom
398
399 ifneq ($(CUSTOM_INSTALL),)
400 INSTALL= $(CUSTOM_INSTALL)
401 endif
402
403 ifneq ($(CUSTOM_CC),)
404   CC= $(CUSTOM_CC)
405 endif
406
407 ifneq ($(CUSTOM_COPT),)
408   COPT= $(CUSTOM_COPT)
409 endif
410
411 ifdef COPT
412    CFLAGS += $(COPT)
413    LDFLAGS += $(COPT)
414 endif
415
416 ifdef PROFILE
417    CFLAGS += $(PROFILE)
418    LDFLAGS += $(PROFILE)
419 endif
420
421
422 ##########################################################################
423 #
424 # substitute implementations of C library routines (see src/port/)
425
426 LIBOBJS = @LIBOBJS@
427
428 LIBS := -lpgport $(LIBS)
429 # add location of libpgport.a to LDFLAGS
430 ifdef PGXS
431 override LDFLAGS := -L$(libdir) $(LDFLAGS)
432 else
433 override LDFLAGS := -L$(top_builddir)/src/port $(LDFLAGS)
434 endif
435
436 # to make ws2_32.lib the last library, and always link with shfolder,
437 # so SHGetFolderName isn't picked up from shell32.dll
438 ifeq ($(PORTNAME),win32)
439 LIBS += -lws2_32 -lshfolder
440 endif
441
442 # Not really standard libc functions, used by the backend.
443 TAS         = @TAS@
444
445
446 ##########################################################################
447 #
448 # Global targets and rules
449
450 %.gz: %
451         $(GZIP) -f --best $<
452
453 %.bz2: %
454         $(BZIP2) -f $<
455
456 ifeq ($(PORTNAME),win32)
457 # Build rules to add versioninfo resources to win32 binaries
458 WIN32RES += win32ver.o
459 ifeq ($(PGFILESHLIB),1)
460 PGFTYPE=VFT_DLL
461 else
462 PGFTYPE=VFT_APP
463 endif
464 ifneq (,$(PGAPPICON))
465 PGICOSTR=$(subst /,\/,IDI_ICON ICON \"$(top_builddir)/src/port/$(PGAPPICON).ico\")
466 endif
467 win32ver.rc: $(top_builddir)/src/port/win32ver.rc
468         sed -e 's;FILEDESC;$(PGFILEDESC);' -e 's;VFT_APP;$(PGFTYPE);' -e 's;_ICO_;$(PGICOSTR);' -e 's;\(VERSION.*\),0 *$$;\1,'`date '+%y%j' | sed 's/^0*//'`';' $(top_builddir)/src/port/win32ver.rc > win32ver.rc
469 win32ver.o: $(top_builddir)/src/port/win32ver.rc
470         sed -e 's;FILEDESC;$(PGFILEDESC);' -e 's;VFT_APP;$(PGFTYPE);' -e 's;_ICO_;$(PGICOSTR);' -e 's;\(VERSION.*\),0 *$$;\1,'`date '+%y%j' | sed 's/^0*//'`';' $(top_builddir)/src/port/win32ver.rc > win32ver.rc
471         windres -i win32ver.rc -o win32ver.o --include-dir=$(top_builddir)/src/include
472         rm -f win32ver.rc
473 endif
474
475 ifndef PGXS
476
477 # Remake Makefile.global from Makefile.global.in if the latter
478 # changed. In order to trigger this rule, the including file must
479 # write `include $(top_builddir)/src/Makefile.global', not some
480 # shortcut thereof.
481 $(top_builddir)/src/Makefile.global: $(top_srcdir)/src/Makefile.global.in $(top_builddir)/config.status
482         cd $(top_builddir) && ./config.status src/Makefile.global
483
484 # Remake pg_config.h from pg_config.h.in if the latter changed.
485 # config.status will not change the timestamp on pg_config.h if it
486 # doesn't change, so as to avoid recompiling the entire tree
487 # unnecessarily. Therefore we make config.status update a timestamp file
488 # stamp-h everytime it runs, so that we don't trigger this rule everytime.
489 # (We do trigger the null rule for stamp-h to pg_config.h everytime; so it's
490 # important for that rule to be null!)
491 #
492 # Of course you need to turn on dependency tracking to get any
493 # dependencies on pg_config.h.
494 $(top_builddir)/src/include/pg_config.h: $(top_builddir)/src/include/stamp-h
495
496 $(top_builddir)/src/include/stamp-h: $(top_srcdir)/src/include/pg_config.h.in $(top_builddir)/config.status
497         cd $(top_builddir) && ./config.status src/include/pg_config.h
498
499 # Also remake ecpg_config.h from ecpg_config.h.in if the latter changed. Values in it can
500 # only change if pg_config.h has changed, so include this file to its dependencies.
501 $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h: $(top_builddir)/src/include/pg_config.h $(top_builddir)/src/interfaces/ecpg/include/ecpg_config.h.in $(top_builddir)/config.status
502         cd $(top_builddir) && ./config.status src/interfaces/ecpg/include/ecpg_config.h
503
504 # When configure changes, rerun configure with the same options as
505 # last time. To change configure, you need to run autoconf manually.
506 $(top_builddir)/config.status: $(top_srcdir)/configure
507         cd $(top_builddir) && ./config.status --recheck
508
509 endif # not PGXS
510
511
512 install-strip:
513         @$(MAKE) INSTALL_PROGRAM_ENV="STRIPPROG='$(STRIP)'" \
514             INSTALL_STLIB_ENV="STRIPPROG='$(STRIP_STATIC_LIB)'" \
515             INSTALL_SHLIB_ENV="STRIPPROG='$(STRIP_SHARED_LIB)'" \
516             INSTALL_STRIP_FLAG=-s \
517             install
518
519
520 ##########################################################################
521 #
522 # Automatic dependency generation
523 # -------------------------------
524 # When we configure with --enable-depend then we override the default
525 # compilation rule with the magic below. While or after creating the
526 # actual output file we also create a dependency list for the .c file.
527 # Next time we invoke make we will have top-notch information about
528 # whether this file needs to be updated. The dependency files are kept
529 # in the .deps subdirectory of each directory.
530
531 autodepend = @autodepend@
532
533 ifeq ($(autodepend), yes)
534
535 ifndef COMPILE.c
536 COMPILE.c = $(CC) $(CFLAGS) $(CPPFLAGS) -c
537 endif
538
539 DEPDIR = .deps
540
541 ifeq ($(GCC), yes)
542
543 # GCC allows us to create object and dependency file in one invocation.
544 %.o : %.c
545         @if test ! -d $(DEPDIR); then mkdir -p $(DEPDIR); fi
546         $(COMPILE.c) -o $@ $< -MMD -MP -MF $(DEPDIR)/$(*F).Po
547
548 endif # GCC
549
550 # Include all the dependency files generated for the current
551 # directory. List /dev/null as dummy because if the wildcard expands
552 # to nothing then make would complain.
553 -include $(wildcard $(DEPDIR)/*.Po) /dev/null
554
555 # hook for clean-up
556 clean distclean maintainer-clean: clean-deps
557
558 .PHONY: clean-deps
559 clean-deps:
560         @rm -rf $(DEPDIR)
561
562 endif # autodepend
563
564
565 ##########################################################################
566 #
567 # Native language support
568
569 ifeq ($(enable_nls), yes)
570 ifneq (,$(wildcard $(srcdir)/nls.mk))
571
572 include $(top_srcdir)/src/nls-global.mk
573
574 endif # nls.mk
575 endif # enable_nls