X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fautoconf%2FMake.common.in;h=f5583695f7455f6d20d491a4b4bf239ba4842eb6;hb=1bd60f7e76cdb417e9b4e36700eb4695e2fefa74;hp=659401dc42610e8cca1d35e6a2363e7c562e0527;hpb=a90531d92c8e79edb632ca53bf6ac4e5eeb3a59b;p=bacula%2Fbacula diff --git a/bacula/autoconf/Make.common.in b/bacula/autoconf/Make.common.in index 659401dc42..f5583695f7 100644 --- a/bacula/autoconf/Make.common.in +++ b/bacula/autoconf/Make.common.in @@ -1,5 +1,8 @@ -# autoconf/Make.common.in -*- Makefile -*- -# release date (man), LSM date, version number/name, current maintainer +# +# This file is pulled in by all the Unix Bacula Makefiles +# so it has all the "common" definitions +# + DATE="@DATE@" LSMDATE=@LSMDATE@ VERSION=@VERSION@ @@ -20,19 +23,27 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ binprefix = manprefix = +datarootdir = @datarootdir@ +docdir = @docdir@ sbindir = @sbindir@ +libdir = @libdir@ +includedir = @includedir@ sysconfdir = @sysconfdir@ +plugindir = @plugindir@ scriptdir = @scriptdir@ -mandir = @mandir@/man1 -manext = 1 +archivedir = @archivedir@ +mandir = @mandir@ +manext = 8 + +NO_ECHO = @ # Tools & program stuff CC = @CC@ CPP = @CPP@ CXX = @CXX@ MV = @MV@ -RM = @RM@ -RMF = @RM@ -f +RM = @REMOVE@ +RMF = $(RM) -f CP = @CP@ SED = @SED@ AWK = @AWK@ @@ -40,24 +51,48 @@ ECHO = @ECHO@ CMP = @CMP@ TBL = @TBL@ AR = @AR@ +GMAKE = @GMAKE@ RANLIB = @RANLIB@ +MKDIR = @BUILD_DIR@/autoconf/mkinstalldirs INSTALL = @INSTALL@ # add the -s to the following in PRODUCTION mode -INSTALL_PROGRAM = @INSTALL@ -m 754 -INSTALL_DATA = @INSTALL@ -m 644 -INSTALL_SCRIPT = @INSTALL@ -m 754 -INSTALL_CONFIG = @INSTALL@ -m 640 +INSTALL_PROGRAM = $(INSTALL) -m @SBINPERM@ +INSTALL_DATA = $(INSTALL) -m 644 +INSTALL_SCRIPT = $(INSTALL) -m @SBINPERM@ +INSTALL_CONFIG = $(INSTALL) -m 640 + +# +# Libtool specific settings +# +DEFAULT_OBJECT_TYPE = @DEFAULT_OBJECT_TYPE@ +DEFAULT_ARCHIVE_TYPE = @DEFAULT_ARCHIVE_TYPE@ +DEFAULT_SHARED_OBJECT_TYPE = @DEFAULT_SHARED_OBJECT_TYPE@ +LIBTOOL = @BUILD_DIR@/libtool +LIBTOOL_COMPILE = @LIBTOOL@ --silent --tag=CXX --mode=compile +LIBTOOL_LINK = @LIBTOOL@ --silent --tag=CXX --mode=link +LIBTOOL_INSTALL = @LIBTOOL@ --silent --tag=CXX --mode=install +LIBTOOL_INSTALL_FINISH = @LIBTOOL@ --silent --tag=CXX --finish --mode=install +LIBTOOL_UNINSTALL = @LIBTOOL@ --silent --tag=CXX --mode=uninstall +LIBTOOL_CLEAN = @LIBTOOL@ --silent --tag=CXX --mode=clean # Flags & libs -CFLAGS = @CFLAGS@ -CPPFLAGS = @CPPFLAGS@ +CFLAGS = @CFLAGS@ @OPENSSL_INC@ + +CPPFLAGS = @CPPFLAGS@ @OPENSSL_INC@ LDFLAGS = @LDFLAGS@ TTOOL_LDFLAGS = @TTOOL_LDFLAGS@ -#DEFS = @DEFS@ +#DEFS = @DEFS@ @LOCAL_DEFS@ LIBS = @LIBS@ +WRAPLIBS = @WRAPLIBS@ DINCLUDE = @DINCLUDE@ DLIB = @DLIB@ DB_LIBS = @DB_LIBS@ +PYTHON_LIBS = @PYTHON_LIBS@ +PYTHON_INC = @PYTHON_INCDIR@ +OPENSSL_LIBS = @OPENSSL_LIBS@ +BDB_CPPFLAGS = @BDB_CPPFLAGS@ +BDB_LIBS = @BDB_LIBS@ + # Windows (cygwin) flags WCFLAGS = @WCFLAGS@