mirror of https://github.com/asterisk/asterisk
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							151 lines
						
					
					
						
							4.6 KiB
						
					
					
				
			
		
		
	
	
							151 lines
						
					
					
						
							4.6 KiB
						
					
					
				| export PJDIR := @ac_pjdir@
 | |
| include $(PJDIR)/version.mak
 | |
| export PJ_DIR := $(PJDIR)
 | |
| 
 | |
| # @configure_input@
 | |
| export MACHINE_NAME := auto
 | |
| export OS_NAME := auto
 | |
| export HOST_NAME := unix
 | |
| export CC_NAME := gcc
 | |
| export TARGET_NAME := @target@
 | |
| export CROSS_COMPILE := @ac_cross_compile@
 | |
| export LINUX_POLL := @ac_linux_poll@ 
 | |
| export SHLIB_SUFFIX := @ac_shlib_suffix@
 | |
| 
 | |
| export ac_prefix := @prefix@
 | |
| 
 | |
| LIB_SUFFIX = $(TARGET_NAME).a
 | |
| 
 | |
| # Determine which party libraries to use
 | |
| export APP_THIRD_PARTY_LIBS := -lmilenage-$(TARGET_NAME) -lsrtp-$(TARGET_NAME)
 | |
| export APP_THIRD_PARTY_EXT :=
 | |
| export APP_THIRD_PARTY_LIB_FILES := $(PJ_DIR)/third_party/lib/libmilenage-$(LIB_SUFFIX) $(PJ_DIR)/third_party/lib/libsrtp-$(LIB_SUFFIX)
 | |
| 
 | |
| ifeq (@ac_resample_dll@,1)
 | |
| export PJ_RESAMPLE_DLL := 1
 | |
| export APP_THIRD_PARTY_LIBS := -lresample $(APP_THIRD_PARTY_LIBS)
 | |
| export APP_THIRD_PARTY_LIB_FILES := $(PJ_DIR)/third_party/lib/libresample.$(SHLIB_SUFFIX).$(PJ_VERSION_MAJOR) $(PJ_DIR)/third_party/lib/libresample.$(SHLIB_SUFFIX) $(APP_THIRD_PARTY_LIB_FILES)
 | |
| else
 | |
| export APP_THIRD_PARTY_LIBS := -lresample-$(TARGET_NAME) $(APP_THIRD_PARTY_LIBS)
 | |
| export APP_THIRD_PARTY_LIB_FILES := $(PJ_DIR)/third_party/lib/libresample-$(LIB_SUFFIX) $(APP_THIRD_PARTY_LIB_FILES)
 | |
| endif
 | |
| 
 | |
| ifneq (@ac_no_gsm_codec@,1)
 | |
| ifeq (@ac_external_gsm@,1)
 | |
| # External GSM library
 | |
| APP_THIRD_PARTY_EXT += -lgsm
 | |
| else
 | |
| APP_THIRD_PARTY_LIBS += -lgsmcodec-$(TARGET_NAME)
 | |
| APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/third_party/lib/libgsmcodec-$(LIB_SUFFIX)
 | |
| endif
 | |
| endif
 | |
| 
 | |
| ifneq (@ac_no_speex_codec@,1)
 | |
| ifeq (@ac_external_speex@,1)
 | |
| APP_THIRD_PARTY_EXT += -lspeex -lspeexdsp
 | |
| else
 | |
| APP_THIRD_PARTY_LIBS += -lspeex-$(TARGET_NAME)
 | |
| APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/third_party/lib/libspeex-$(LIB_SUFFIX)
 | |
| endif
 | |
| endif
 | |
| 
 | |
| ifneq (@ac_no_ilbc_codec@,1)
 | |
| APP_THIRD_PARTY_LIBS += -lilbccodec-$(TARGET_NAME)
 | |
| APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/third_party/lib/libilbccodec-$(LIB_SUFFIX)
 | |
| endif
 | |
| 
 | |
| ifneq (@ac_no_g7221_codec@,1)
 | |
| APP_THIRD_PARTY_LIBS += -lg7221codec-$(TARGET_NAME)
 | |
| APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/third_party/lib/libg7221codec-$(LIB_SUFFIX)
 | |
| endif
 | |
| 
 | |
| ifneq ($(findstring pa,@ac_pjmedia_snd@),)
 | |
| ifeq (@ac_external_pa@,1)
 | |
| # External PA
 | |
| APP_THIRD_PARTY_EXT += -lportaudio
 | |
| else
 | |
| APP_THIRD_PARTY_LIBS += -lportaudio-$(TARGET_NAME)
 | |
| APP_THIRD_PARTY_LIB_FILES += $(PJ_DIR)/third_party/lib/libportaudio-$(LIB_SUFFIX)
 | |
| endif
 | |
| endif
 | |
| 
 | |
| # Additional flags
 | |
| @ac_build_mak_vars@
 | |
| 
 | |
| #
 | |
| # Video
 | |
| # Note: there are duplicated macros in pjmedia/os-auto.mak.in (and that's not
 | |
| #       good!
 | |
| 
 | |
| # SDL flags
 | |
| SDL_CFLAGS = @ac_sdl_cflags@
 | |
| SDL_LDFLAGS = @ac_sdl_ldflags@
 | |
| 
 | |
| # FFMPEG dlags
 | |
| FFMPEG_CFLAGS = @ac_ffmpeg_cflags@ 
 | |
| FFMPEG_LDFLAGS =  @ac_ffmpeg_ldflags@
 | |
| 
 | |
| # Video4Linux2
 | |
| V4L2_CFLAGS = @ac_v4l2_cflags@
 | |
| V4L2_LDFLAGS = @ac_v4l2_ldflags@
 | |
| 
 | |
| # QT
 | |
| AC_PJMEDIA_VIDEO_HAS_QT = @ac_pjmedia_video_has_qt@
 | |
| QT_CFLAGS = @ac_qt_cflags@
 | |
| 
 | |
| # iOS
 | |
| IOS_CFLAGS = @ac_ios_cflags@
 | |
| 
 | |
| # PJMEDIA features exclusion
 | |
| PJ_VIDEO_CFLAGS += $(SDL_CFLAGS) $(FFMPEG_CFLAGS) $(V4L2_CFLAGS) $(QT_CFLAGS) \
 | |
| 		   $(IOS_CFLAGS)
 | |
| PJ_VIDEO_LDFLAGS += $(SDL_LDFLAGS) $(FFMPEG_LDFLAGS) $(V4L2_LDFLAGS)
 | |
| 
 | |
| 
 | |
| # CFLAGS, LDFLAGS, and LIBS to be used by applications
 | |
| export APP_CC := @CC@
 | |
| export APP_CXX := @CXX@
 | |
| export APP_CFLAGS := -DPJ_AUTOCONF=1\
 | |
| 	@CFLAGS@\
 | |
| 	$(PJ_VIDEO_CFLAGS) \
 | |
| 	-I$(PJDIR)/pjlib/include\
 | |
| 	-I$(PJDIR)/pjlib-util/include\
 | |
| 	-I$(PJDIR)/pjnath/include\
 | |
| 	-I$(PJDIR)/pjmedia/include\
 | |
| 	-I$(PJDIR)/pjsip/include
 | |
| export APP_CXXFLAGS := $(APP_CFLAGS)
 | |
| export APP_LDFLAGS := -L$(PJDIR)/pjlib/lib\
 | |
| 	-L$(PJDIR)/pjlib-util/lib\
 | |
| 	-L$(PJDIR)/pjnath/lib\
 | |
| 	-L$(PJDIR)/pjmedia/lib\
 | |
| 	-L$(PJDIR)/pjsip/lib\
 | |
| 	-L$(PJDIR)/third_party/lib\
 | |
| 	$(PJ_VIDEO_LDFLAGS) \
 | |
| 	@LDFLAGS@
 | |
| export APP_LDLIBS := -lpjnath-$(TARGET_NAME)\
 | |
| 	-lpjlib-util-$(TARGET_NAME)\
 | |
| 	-lpj-$(TARGET_NAME)\
 | |
| 	@LIBS@
 | |
| export APP_LIB_FILES = $(PJ_DIR)/pjnath/lib/libpjnath-$(LIB_SUFFIX) \
 | |
| 	$(PJ_DIR)/pjlib-util/lib/libpjlib-util-$(LIB_SUFFIX) \
 | |
| 	$(PJ_DIR)/pjlib/lib/libpj-$(LIB_SUFFIX)
 | |
| 
 | |
| # Here are the variabels to use if application is using the library
 | |
| # from within the source distribution
 | |
| export PJ_CC := $(APP_CC)
 | |
| export PJ_CXX := $(APP_CXX)
 | |
| export PJ_CFLAGS := $(APP_CFLAGS)
 | |
| export PJ_CXXFLAGS := $(APP_CXXFLAGS)
 | |
| export PJ_LDFLAGS := $(APP_LDFLAGS)
 | |
| export PJ_LDLIBS := $(APP_LDLIBS)
 | |
| export PJ_LIB_FILES := $(APP_LIB_FILES)
 | |
| 
 | |
| # And here are the variables to use if application is using the
 | |
| # library from the install location (i.e. --prefix)
 | |
| export PJ_INSTALL_DIR := @prefix@
 | |
| export PJ_INSTALL_INC_DIR := $(PJ_INSTALL_DIR)/include
 | |
| export PJ_INSTALL_LIB_DIR := $(PJ_INSTALL_DIR)/lib
 | |
| export PJ_INSTALL_CFLAGS := -I$(PJ_INSTALL_INC_DIR) -DPJ_AUTOCONF=1	@CFLAGS@
 | |
| export PJ_INSTALL_CXXFLAGS := $(PJ_INSTALL_CFLAGS)
 | |
| export PJ_INSTALL_LDFLAGS := -L$(PJ_INSTALL_LIB_DIR) $(APP_LDLIBS)
 |