Skip to content
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.

Fix MakeFile #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ ifdef LIBHDBPP_INC
endif

CXXFLAGS += -std=gnu++0x -Wall -DRELEASE='"$HeadURL$ "' $(DBIMPL_INC) $(INC_DIR)
LDFLAGS += $(LIB_DIR)
LDFLAGS += $(LIB_DIR) -ltango -lomnithread -lomniORB4

##############################################
# support for shared libray versioning
#
LFLAGS_SONAME = $(DBIMPL_LIB) $(LDFLAGS) -Wl,-soname,
LFLAGS_SONAME = $(DBIMPL_LIB) $(LDFLAGS) -Wl,-z,defs,-soname,
SHLDFLAGS = -shared
BASELIBNAME = libhdb++mysql
SHLIB_SUFFIX = so
Expand Down