forked from Lainports/freebsd-ports
- the password will be stored in the file .hk_classes/SERVER/driver.conf, the RW-flags are set to the user only - hk_presentation: presentation local datasources can be defined in the datasource dialog - Python script handles uninstall now - (many other minor API changes and bugfixes: see ChangeLog) Also, the port consolidates several patches into patching one Makefile.in. PR: ports/65166 Submitted by: Sergey Matveychuk <sem@ciam.ru> (maintainer)
35 lines
1.4 KiB
Text
35 lines
1.4 KiB
Text
--- utilities/Makefile.in.orig Sun Mar 14 20:49:52 2004
|
|
+++ utilities/Makefile.in Sun Apr 4 01:58:38 2004
|
|
@@ -150,25 +150,25 @@
|
|
hk_importcsv hk_report
|
|
|
|
|
|
-hk_report_LDFLAGS = -lhk_classes -ldl -L../hk_classes
|
|
+hk_report_LDFLAGS = -lhk_classes -L../hk_classes
|
|
hk_report_SOURCES = hk_reportutility.cpp
|
|
|
|
|
|
-#hk_webform_LDFLAGS = -lhk_classes -ldl -L../hk_classes
|
|
+#hk_webform_LDFLAGS = -lhk_classes -L../hk_classes
|
|
#hk_webform_SOURCES = hk_webformutility.cpp
|
|
-hk_actionquery_LDFLAGS = -lhk_classes -ldl -L../hk_classes
|
|
+hk_actionquery_LDFLAGS = -lhk_classes -L../hk_classes
|
|
hk_actionquery_SOURCES = hk_actionqueryutility.cpp
|
|
|
|
-hk_exportxml_LDFLAGS = -lhk_classes -ldl -L../hk_classes
|
|
+hk_exportxml_LDFLAGS = -lhk_classes -L../hk_classes
|
|
hk_exportxml_SOURCES = hk_exportxmlutility.cpp
|
|
|
|
-hk_exportcsv_LDFLAGS = -lhk_classes -ldl -L../hk_classes
|
|
+hk_exportcsv_LDFLAGS = -lhk_classes -L../hk_classes
|
|
hk_exportcsv_SOURCES = hk_exportcsvutility.cpp
|
|
|
|
-hk_exporthtml_LDFLAGS = -lhk_classes -ldl -L../hk_classes
|
|
+hk_exporthtml_LDFLAGS = -lhk_classes -L../hk_classes
|
|
hk_exporthtml_SOURCES = hk_exporthtmlutility.cpp
|
|
|
|
-hk_importcsv_LDFLAGS = -lhk_classes -ldl -L../hk_classes
|
|
+hk_importcsv_LDFLAGS = -lhk_classes -L../hk_classes
|
|
hk_importcsv_SOURCES = hk_importcsvutility.cpp
|
|
|
|
man_MANS = hk_report.1man hk_actionquery.1man hk_exportxml.1man hk_exporthtml.1man hk_exportcsv.1man hk_importcsv.1man
|