mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
pjproject_bundled: Fix missing inclusion of symbols
Added back in a -g3, and an -O3 when DONT_OPTIMIZE is not set, to the CFLAGS. Not sure how they went missing. Also fixed an uninstall problem where we weren't removing the symlink from libasteriskpj.so.2 to libasteriskpj.so. While I was there, I fixed it for libasteriskssl as well. Change-Id: I9e00873b1e9082d05b5549d974534b48a2142556
This commit is contained in:
@@ -363,10 +363,14 @@ binuninstall:
|
||||
rm -f "$(DESTDIR)$(ASTSBINDIR)/$(MAIN_TGT)"
|
||||
rm -f "$(DESTDIR)$(ASTSBINDIR)/rasterisk"
|
||||
ifneq ($(ASTSSL_LIB).$(ASTSSL_SO_VERSION),.)
|
||||
rm -f "$(DESTDIR)$(ASTLIBDIR)/$(ASTSSL_LIB).$(ASTSSL_SO_VERSION)"
|
||||
# ASTSSL_SO_VERSION may not exist on Darwin
|
||||
rm -f "$(DESTDIR)$(ASTLIBDIR)/$(ASTSSL_LIB).$(ASTSSL_SO_VERSION)" || :
|
||||
rm -f "$(DESTDIR)$(ASTLIBDIR)/$(ASTSSL_LIB)"
|
||||
endif
|
||||
ifneq ($(ASTPJ_LIB).$(ASTPJ_SO_VERSION),.)
|
||||
rm -f "$(DESTDIR)$(ASTLIBDIR)/$(ASTPJ_LIB).$(ASTPJ_SO_VERSION)"
|
||||
# ASTSSL_SO_VERSION may not exist on Darwin
|
||||
rm -f "$(DESTDIR)$(ASTLIBDIR)/$(ASTPJ_LIB).$(ASTPJ_SO_VERSION)" || :
|
||||
rm -f "$(DESTDIR)$(ASTLIBDIR)/$(ASTPJ_LIB)"
|
||||
endif
|
||||
ifneq ($(LDCONFIG),)
|
||||
$(LDCONFIG) $(LDCONFIG_FLAGS) "$(DESTDIR)$(ASTLIBDIR)/"
|
||||
|
Reference in New Issue
Block a user