Makefile error
IBPP is a C++ client class library for FirebirdSQL
Status: Inactive
Brought to you by:
epocman
The makefile for the test application has in it the causes linking to file when compiling with mingw.
Line 228 currently reads:
$(CXX) $(CXXFLAGS) -o $@ $(OBJ_SRCS) $(CORE_OBJS)
This excludes the file tests.o from being linked generating an undefined reference to WinMain@16.
Replacing line 228 with the following corrects the situation.
$(CXX) $(CXXFLAGS) -o $@ $(APP_OBJS) $(CORE_OBJS)
It should be noted that this is for the current 2.5 release.