45f42681f4
Embedded firebird is now version 3.0. Supports MSVC 14.0. Instead of fbembed, there are now two libraries: fbclient and Engine12. fbclient is linked as fbembed before, Engine12 is loaded at runtime from fbclient. fb now needs system libtommath, which is supplied as a new ExternalProject of LO. Change-Id: I132939bdee745795b22f675e4265e9590079c45f Reviewed-on: https://gerrit.libreoffice.org/27642 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu>
12 lines
279 B
Diff
12 lines
279 B
Diff
--- makefile.msvc 2016-02-05 23:25:32.000000000 +0100
|
|
+++ makefile.msvc 2016-07-21 11:34:20.618390100 +0200
|
|
@@ -38,3 +38,9 @@
|
|
|
|
library: $(OBJECTS)
|
|
lib /out:tommath.lib $(OBJECTS)
|
|
+
|
|
+.cc.obj:
|
|
+ $(CC) /nologo $(CFLAGS) /c $<
|
|
+
|
|
+.c.obj:
|
|
+ $(CC) /nologo $(CFLAGS) /c $<
|