mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 22:43:03 +01:00
775e23b43b
2. Cleaned up most of platform-specific additions - most opf them are not needed any more, still causing troubles when porting. It will be better to re-add that which are really needed. 3. Do not build gds_drop utility on platforms where not needed.
19 lines
532 B
Plaintext
19 lines
532 B
Plaintext
#_____________________________________________________________________________
|
|
|
|
# Changing options based on module
|
|
|
|
# Something that Solaris was doing for intl libraries.
|
|
if $(eq $(ModuleName), "intl")
|
|
LIB_LINK_OPTIONS := -assert pure-text -assert nosymbolic
|
|
endif
|
|
|
|
# Firebird needs no RTTI
|
|
CXXFLAGS:= $(CXXFLAGS) -fno-rtti
|
|
|
|
OS_ServerFiles=inet_server.cpp
|
|
|
|
EMBED_UTIL_TARGETS=gstat gsec fbguard nbackup fb_lock_print
|
|
CLIENT_UTIL_TARGETS=gstat gsec fbguard nbackup fbmgr_bin fb_lock_print
|
|
|
|
Physical_IO_Module=os/posix/unix.cpp
|