forked from Lainports/freebsd-ports
- change OPTION for SSL from default "off" to "on" - move hard coded UID/GID from (de)install scripts to SUB_LIST - change default Database from SQLite to PostgreSQL - remove patch files/bacula-sd.conf.in which was never applied Starting with version 5.0.3 bacula builds per default with SSL support. This update includes fixes for PR 148715 and 148967 PR: 150263 Submitted by: ohauer Approved by: Dan Langille (maintainer), glarkin (mentor, implicit)
11 lines
616 B
Text
11 lines
616 B
Text
--- src/cats/Makefile.in.orig 2010-05-19 17:13:07.000000000 +0300
|
|
+++ src/cats/Makefile.in 2010-05-19 17:15:47.000000000 +0300
|
|
@@ -69,7 +69,7 @@
|
|
|
|
libbacsql.la: Makefile $(LIBBACSQL_LOBJS)
|
|
@echo "Making $@ ..."
|
|
- $(LIBTOOL_LINK) $(CXX) $(DEFS) $(DEBUG) $(LDFLAGS) -o $@ $(LIBBACSQL_LOBJS) -export-dynamic -rpath $(libdir) -release $(LIBBACSQL_LT_RELEASE) $(DB_LIBS)
|
|
+ $(LIBTOOL_LINK) $(CXX) $(DEFS) $(DEBUG) $(LDFLAGS) -o $@ $(LIBBACSQL_LOBJS) -export-dynamic -rpath $(libdir) -version-info $(LIBBACSQL_LT_RELEASE:S/./:/g) $(DB_LIBS)
|
|
|
|
Makefile: $(srcdir)/Makefile.in $(topdir)/config.status
|
|
cd $(topdir) \
|