[asterisk-commits] trunk r25893 - in /trunk: Makefile
build_tools/Makefile
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Tue May 9 00:51:20 MST 2006
Author: kpfleming
Date: Tue May 9 02:51:20 2006
New Revision: 25893
URL: http://svn.digium.com/view/asterisk?rev=25893&view=rev
Log:
don't build strcompat for menuselect except on Solaris
Modified:
trunk/Makefile
trunk/build_tools/Makefile
Modified: trunk/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/Makefile?rev=25893&r1=25892&r2=25893&view=diff
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Tue May 9 02:51:20 2006
@@ -405,6 +405,7 @@
ifeq ($(OSARCH),SunOS)
LIBS+=-lpthread -ldl -lnsl -lsocket -lresolv -L$(CROSS_COMPILE_TARGET)/usr/local/ssl/lib
OBJS+=strcompat.o
+ MENUSELECT_OBJS+=strcompat.o
ASTLINK=
SOLINK=-shared -fpic -L$(CROSS_COMPILE_TARGET)/usr/local/ssl/lib
endif
@@ -999,7 +1000,7 @@
menuselect: build_tools/menuselect makeopts.xml
- at build_tools/menuselect ${GLOBAL_MAKEOPTS} ${USER_MAKEOPTS} menuselect.makeopts && echo "menuselect changes saved!" || echo "menuselect changes NOT saved!"
-build_tools/menuselect: build_tools/menuselect.c build_tools/menuselect_curses.c build_tools/menuselect.h include/autoconfig.h strcompat.o mxml/libmxml.a
+build_tools/menuselect: build_tools/menuselect.c build_tools/menuselect_curses.c build_tools/menuselect.h include/autoconfig.h mxml/libmxml.a $(MENUSELECT_OBJS)
$(MAKE) -C build_tools menuselect
mxml/libmxml.a:
Modified: trunk/build_tools/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/build_tools/Makefile?rev=25893&r1=25892&r2=25893&view=diff
==============================================================================
--- trunk/build_tools/Makefile (original)
+++ trunk/build_tools/Makefile Tue May 9 02:51:20 2006
@@ -1,6 +1,10 @@
MENUSELECT_OBJS=menuselect.o menuselect_curses.o
MENUSELECT_CFLAGS=-g -c -D_GNU_SOURCE -I../ -I../include/
MENUSELECT_LIBS=../mxml/libmxml.a
+
+ifeq ($(OSARCH),SunOS)
+ MENUSELECT_OBJS+=../strcompat.o
+endif
ifneq ($(NCURSES_LIB),)
MENUSELECT_LIBS+=$(NCURSES_LIB)
@@ -11,7 +15,7 @@
endif
menuselect: $(MENUSELECT_OBJS)
- $(CC) -g -o $@ ../strcompat.o $(MENUSELECT_OBJS) $(MENUSELECT_LIBS)
+ $(CC) -g -o $@ $(MENUSELECT_OBJS) $(MENUSELECT_LIBS)
menuselect.o: menuselect.c menuselect.h
$(CC) -o $@ $(MENUSELECT_CFLAGS) $<
More information about the asterisk-commits
mailing list