This fixes the regression test .so builds on sysv5 systems:
I believe this will fix peter_e's problen with gcc. Larry Rosenman
This commit is contained in:
parent
e30b283f30
commit
56b102a96e
@ -16,8 +16,13 @@ CXXFLAGS_SL = -fpic
|
|||||||
else
|
else
|
||||||
CXXFLAGS_SL = -K PIC
|
CXXFLAGS_SL = -K PIC
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(GCC), yes)
|
||||||
|
SO_FLAGS = -shared
|
||||||
|
else
|
||||||
|
SO_FLAGS = -G
|
||||||
|
endif
|
||||||
|
|
||||||
%.so: %.o
|
%.so: %.o
|
||||||
$(LD) -G -Bdynamic -o $@ $<
|
$(CC) $(SO_FLAGS) -Bdynamic -o $@ $<
|
||||||
|
|
||||||
sqlmansect = 5sql
|
sqlmansect = 5sql
|
||||||
|
Loading…
x
Reference in New Issue
Block a user