[Home]

Summary:ASTERISK-06529: Makefile in asterisk/codecs/gsm make complains about missing a endif
Reporter:hwstar (hwstar)Labels:
Date Opened:2006-03-12 14:58:19.000-0600Date Closed:2006-03-12 23:38:25.000-0600
Priority:TrivialRegression?No
Status:Closed/CompleteComponents:Resources/res_adsi
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description:Cannot compile asterisk. Make is complaining about a missing endif.
Changes to support parisc seem to be incomplete. There is no matching endif
for the "ifneq ($(shell uname -m), parisc)" lines added in revision 12610.
See diff below for changes recently checked in.



****** ADDITIONAL INFORMATION ******

--- trunk/codecs/gsm/Makefile 2006/02/22 22:53:49 10805
+++ trunk/codecs/gsm/Makefile 2006/03/12 18:07:23 12610
@@ -239,6 +239,7 @@
ifneq ($(shell uname -m),sparc64)
ifneq (${PROC},arm)
ifneq (${PROC},ia64)
+ifneq ($(shell uname -m), parisc)
GSM_SOURCES+= $(SRC)/k6opt.s
endif
endif
@@ -302,6 +303,7 @@
ifneq ($(shell uname -m), sparc64)
ifneq ($(shell uname -m), armv4l)
ifneq (${PROC},ia64)
+ifneq ($(shell uname -m), parisc)
GSM_OBJECTS+= $(SRC)/k6opt.o
endif
endif
Comments:By: hwstar (hwstar) 2006-03-12 14:59:47.000-0600

Accidentally Mis-categorized should be core asterisk, codecs

By: Tilghman Lesher (tilghman) 2006-03-12 23:38:25.000-0600

Fixed with bug ASTERISK-6531