Changeset 4488 for pjproject/trunk
- Timestamp:
- Apr 23, 2013 5:39:13 AM (12 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/bb10-config.mak
r4468 r4488 10 10 11 11 # Generate library list (the "-lxxx" options) from list of linked libraries. 12 PJ_BB_LIBS = $( subst PJLIB,pjlib,$(subst .a,,$(subst lib,-l,$(subst pjlib,PJLIB,$(notdir $(APP_LIB_FILES))))))12 PJ_BB_LIBS = $(filter-out -lm -lsocket, $(APP_LDLIBS)) 13 13 14 14 # This used to generate the library path list (the "-Lxxx" options) 15 # We replace the path with "$$PJ_DIR" 15 16 PJ_BB_LDFLAGS = $(subst $(PJDIR),\$$\$$PJ_DIR,$(APP_LDFLAGS)) 16 17 … … 27 28 @echo 28 29 @for token in $(PJ_BB_LDFLAGS); do \ 29 if echo $$token | grep -- '-L \$$' >> /dev/null; then \30 if echo $$token | grep -- '-L' >> /dev/null; then \ 30 31 echo "PJ_LIBPATH += \$$\$$quote($$token)"; \ 31 32 fi; \ … … 39 40 @echo 'LIBS += $$$$PJ_LIBPATH' 40 41 @echo 'LIBS += $$$$PJ_LIBS' 41 @echo 'LIBS += -lOpenAL -lalut -laudio_manager -lsocket -lasound -lbbsystem '42 @echo 'LIBS += -lOpenAL -lalut -laudio_manager -lsocket -lasound -lbbsystem -lm' 42 43 43 44 -
pjproject/trunk/configure-bb10
r4468 r4488 45 45 echo "# Auto-generated by 'configure-bb10 $*'" >> pjsip.pri 46 46 make -f bb10-config.mak >> pjsip.pri 47 48 echo PJSIP config file for BB10 has been written to \'pjsip.pri\'. You can include this file from your application\'s .pro file. 49 echo 47 50 fi 48 51
Note: See TracChangeset
for help on using the changeset viewer.