[asterisk-commits] kmoore: branch 11 r378582 - in /branches/11/res/pjproject: ./ build/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jan 4 16:18:25 CST 2013


Author: kmoore
Date: Fri Jan  4 16:18:21 2013
New Revision: 378582

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=378582
Log:
Fix pjproject compilation in certain circumstances

On a fresh checkout of Asterisk 11, running make before ./configure
could cause the pjproject subdirectory to get in an odd state that
would prevent compilation. This patch by Tilghman prevents that from
occurring.

(closes issue ASTERISK-20681)
Patch-by: Tilghman Lesher

Modified:
    branches/11/res/pjproject/aconfigure
    branches/11/res/pjproject/aconfigure.ac
    branches/11/res/pjproject/build/common.mak

Modified: branches/11/res/pjproject/aconfigure
URL: http://svnview.digium.com/svn/asterisk/branches/11/res/pjproject/aconfigure?view=diff&rev=378582&r1=378581&r2=378582
==============================================================================
--- branches/11/res/pjproject/aconfigure (original)
+++ branches/11/res/pjproject/aconfigure Fri Jan  4 16:18:21 2013
@@ -2401,7 +2401,7 @@
   program_prefix=${target_alias}-
 ac_config_headers="$ac_config_headers pjlib/include/pj/compat/os_auto.h pjlib/include/pj/compat/m_auto.h pjmedia/include/pjmedia/config_auto.h pjmedia/include/pjmedia-codec/config_auto.h pjsip/include/pjsip/sip_autoconf.h"
 
-ac_config_files="$ac_config_files build.mak build/os-auto.mak build/cc-auto.mak pjlib/build/os-auto.mak pjlib-util/build/os-auto.mak pjmedia/build/os-auto.mak pjsip/build/os-auto.mak third_party/build/os-auto.mak third_party/build/portaudio/os-auto.mak"
+ac_config_files="$ac_config_files build.mak build/os-auto.mak pjlib/build/os-auto.mak pjlib-util/build/os-auto.mak pjmedia/build/os-auto.mak pjsip/build/os-auto.mak third_party/build/os-auto.mak third_party/build/portaudio/os-auto.mak"
 
 
 
@@ -7799,7 +7799,6 @@
     "pjsip/include/pjsip/sip_autoconf.h") CONFIG_HEADERS="$CONFIG_HEADERS pjsip/include/pjsip/sip_autoconf.h" ;;
     "build.mak") CONFIG_FILES="$CONFIG_FILES build.mak" ;;
     "build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES build/os-auto.mak" ;;
-    "build/cc-auto.mak") CONFIG_FILES="$CONFIG_FILES build/cc-auto.mak" ;;
     "pjlib/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES pjlib/build/os-auto.mak" ;;
     "pjlib-util/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES pjlib-util/build/os-auto.mak" ;;
     "pjmedia/build/os-auto.mak") CONFIG_FILES="$CONFIG_FILES pjmedia/build/os-auto.mak" ;;

Modified: branches/11/res/pjproject/aconfigure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/11/res/pjproject/aconfigure.ac?view=diff&rev=378582&r1=378581&r2=378582
==============================================================================
--- branches/11/res/pjproject/aconfigure.ac (original)
+++ branches/11/res/pjproject/aconfigure.ac Fri Jan  4 16:18:21 2013
@@ -13,7 +13,6 @@
 		 ])
 AC_CONFIG_FILES([build.mak 
 		 build/os-auto.mak 
-		 build/cc-auto.mak
 		 pjlib/build/os-auto.mak 
 		 pjlib-util/build/os-auto.mak 
 		 pjmedia/build/os-auto.mak

Modified: branches/11/res/pjproject/build/common.mak
URL: http://svnview.digium.com/svn/asterisk/branches/11/res/pjproject/build/common.mak?view=diff&rev=378582&r1=378581&r2=378582
==============================================================================
--- branches/11/res/pjproject/build/common.mak (original)
+++ branches/11/res/pjproject/build/common.mak Fri Jan  4 16:18:21 2013
@@ -15,15 +15,6 @@
 # located in this directory.
 #
 -include cc-$(CC_NAME).mak
-
-#
-# Include auto configured compiler specification.
-# This will override the compiler settings above.
-# Currently this is made OPTIONAL, to prevent people
-# from getting errors because they don't re-run ./configure
-# after downloading new PJSIP.
-#
--include $(PJDIR)/build/cc-auto.mak
 
 #
 # Include global machine specific definitions




More information about the asterisk-commits mailing list